From 695779e82f77d78b5b0c63b6597976eab9eeb4a2 Mon Sep 17 00:00:00 2001 From: touzeauv <58976673+touzeauv@users.noreply.github.com> Date: Fri, 31 May 2024 20:22:04 +0200 Subject: [PATCH] feat: support the `alignas` type qualifier Co-authored-by: Valentin Touzeau --- grammar.js | 10 +- src/grammar.json | 43 + src/node-types.json | 39 +- src/parser.c | 158358 ++++++++++++++++---------------- test/corpus/declarations.txt | 15 + 5 files changed, 80462 insertions(+), 78003 deletions(-) diff --git a/grammar.js b/grammar.js index 30b5dfa..f9afdff 100644 --- a/grammar.js +++ b/grammar.js @@ -555,7 +555,7 @@ module.exports = grammar({ '__thread', ), - type_qualifier: _ => choice( + type_qualifier: $ => choice( 'const', 'constexpr', 'volatile', @@ -565,6 +565,14 @@ module.exports = grammar({ '_Atomic', '_Noreturn', 'noreturn', + $.alignas_qualifier, + ), + + alignas_qualifier: $ => seq( + choice('alignas', '_Alignas'), + '(', + choice($._expression, $.type_descriptor), + ')', ), _type_specifier: $ => choice( diff --git a/src/grammar.json b/src/grammar.json index 2be4b76..428fe29 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4665,6 +4665,49 @@ { "type": "STRING", "value": "noreturn" + }, + { + "type": "SYMBOL", + "name": "alignas_qualifier" + } + ] + }, + "alignas_qualifier": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "alignas" + }, + { + "type": "STRING", + "value": "_Alignas" + } + ] + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "type_descriptor" + } + ] + }, + { + "type": "STRING", + "value": ")" } ] }, diff --git a/src/node-types.json b/src/node-types.json index c8ff22c..eb710e6 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -440,6 +440,25 @@ ] } }, + { + "type": "alignas_qualifier", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "type_descriptor", + "named": true + } + ] + } + }, { "type": "alignof_expression", "named": true, @@ -3751,7 +3770,17 @@ { "type": "type_qualifier", "named": true, - "fields": {} + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "alignas_qualifier", + "named": true + } + ] + } }, { "type": "unary_expression", @@ -4140,6 +4169,10 @@ "type": "^=", "named": false }, + { + "type": "_Alignas", + "named": false + }, { "type": "_Alignof", "named": false @@ -4256,6 +4289,10 @@ "type": "_unaligned", "named": false }, + { + "type": "alignas", + "named": false + }, { "type": "alignof", "named": false diff --git a/src/parser.c b/src/parser.c index a04ac1f..59bb985 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,11 +13,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2021 -#define LARGE_STATE_COUNT 496 -#define SYMBOL_COUNT 349 +#define STATE_COUNT 2031 +#define LARGE_STATE_COUNT 498 +#define SYMBOL_COUNT 352 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 155 +#define TOKEN_COUNT 157 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 39 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -112,269 +112,272 @@ enum ts_symbol_identifiers { anon_sym__Atomic = 86, anon_sym__Noreturn = 87, anon_sym_noreturn = 88, - sym_primitive_type = 89, - anon_sym_enum = 90, - anon_sym_COLON = 91, - anon_sym_struct = 92, - anon_sym_union = 93, - anon_sym_if = 94, - anon_sym_else = 95, - anon_sym_switch = 96, - anon_sym_case = 97, - anon_sym_default = 98, - anon_sym_while = 99, - anon_sym_do = 100, - anon_sym_for = 101, - anon_sym_return = 102, - anon_sym_break = 103, - anon_sym_continue = 104, - anon_sym_goto = 105, - anon_sym___try = 106, - anon_sym___except = 107, - anon_sym___finally = 108, - anon_sym___leave = 109, - anon_sym_QMARK = 110, - anon_sym_STAR_EQ = 111, - anon_sym_SLASH_EQ = 112, - anon_sym_PERCENT_EQ = 113, - anon_sym_PLUS_EQ = 114, - anon_sym_DASH_EQ = 115, - anon_sym_LT_LT_EQ = 116, - anon_sym_GT_GT_EQ = 117, - anon_sym_AMP_EQ = 118, - anon_sym_CARET_EQ = 119, - anon_sym_PIPE_EQ = 120, - anon_sym_DASH_DASH = 121, - anon_sym_PLUS_PLUS = 122, - anon_sym_sizeof = 123, - anon_sym___alignof__ = 124, - anon_sym___alignof = 125, - anon_sym__alignof = 126, - anon_sym_alignof = 127, - anon_sym__Alignof = 128, - anon_sym_offsetof = 129, - anon_sym__Generic = 130, - anon_sym_asm = 131, - anon_sym___asm__ = 132, - anon_sym_DOT = 133, - anon_sym_DASH_GT = 134, - sym_number_literal = 135, - anon_sym_L_SQUOTE = 136, - anon_sym_u_SQUOTE = 137, - anon_sym_U_SQUOTE = 138, - anon_sym_u8_SQUOTE = 139, - anon_sym_SQUOTE = 140, - aux_sym_char_literal_token1 = 141, - anon_sym_L_DQUOTE = 142, - anon_sym_u_DQUOTE = 143, - anon_sym_U_DQUOTE = 144, - anon_sym_u8_DQUOTE = 145, - anon_sym_DQUOTE = 146, - aux_sym_string_literal_token1 = 147, - sym_escape_sequence = 148, - sym_system_lib_string = 149, - sym_true = 150, - sym_false = 151, - anon_sym_NULL = 152, - anon_sym_nullptr = 153, - sym_comment = 154, - sym_translation_unit = 155, - sym_preproc_include = 156, - sym_preproc_def = 157, - sym_preproc_function_def = 158, - sym_preproc_params = 159, - sym_preproc_call = 160, - sym_preproc_if = 161, - sym_preproc_ifdef = 162, - sym_preproc_else = 163, - sym_preproc_elif = 164, - sym_preproc_elifdef = 165, - sym_preproc_if_in_field_declaration_list = 166, - sym_preproc_ifdef_in_field_declaration_list = 167, - sym_preproc_else_in_field_declaration_list = 168, - sym_preproc_elif_in_field_declaration_list = 169, - sym_preproc_elifdef_in_field_declaration_list = 170, - sym_preproc_if_in_enumerator_list = 171, - sym_preproc_ifdef_in_enumerator_list = 172, - sym_preproc_else_in_enumerator_list = 173, - sym_preproc_elif_in_enumerator_list = 174, - sym_preproc_elifdef_in_enumerator_list = 175, - sym_preproc_if_in_enumerator_list_no_comma = 176, - sym_preproc_ifdef_in_enumerator_list_no_comma = 177, - sym_preproc_else_in_enumerator_list_no_comma = 178, - sym_preproc_elif_in_enumerator_list_no_comma = 179, - sym_preproc_elifdef_in_enumerator_list_no_comma = 180, - sym__preproc_expression = 181, - sym_preproc_parenthesized_expression = 182, - sym_preproc_defined = 183, - sym_preproc_unary_expression = 184, - sym_preproc_call_expression = 185, - sym_preproc_argument_list = 186, - sym_preproc_binary_expression = 187, - sym_function_definition = 188, - sym__old_style_function_definition = 189, - sym_declaration = 190, - sym_type_definition = 191, - sym__type_definition_type = 192, - sym__type_definition_declarators = 193, - sym__declaration_modifiers = 194, - sym__declaration_specifiers = 195, - sym_linkage_specification = 196, - sym_attribute_specifier = 197, - sym_attribute = 198, - sym_attribute_declaration = 199, - sym_ms_declspec_modifier = 200, - sym_ms_based_modifier = 201, - sym_ms_call_modifier = 202, - sym_ms_unaligned_ptr_modifier = 203, - sym_ms_pointer_modifier = 204, - sym_declaration_list = 205, - sym__declarator = 206, - sym__declaration_declarator = 207, - sym__field_declarator = 208, - sym__type_declarator = 209, - sym__abstract_declarator = 210, - sym_parenthesized_declarator = 211, - sym_parenthesized_field_declarator = 212, - sym_parenthesized_type_declarator = 213, - sym_abstract_parenthesized_declarator = 214, - sym_attributed_declarator = 215, - sym_attributed_field_declarator = 216, - sym_attributed_type_declarator = 217, - sym_pointer_declarator = 218, - sym_pointer_field_declarator = 219, - sym_pointer_type_declarator = 220, - sym_abstract_pointer_declarator = 221, - sym_function_declarator = 222, - sym__function_declaration_declarator = 223, - sym_function_field_declarator = 224, - sym_function_type_declarator = 225, - sym_abstract_function_declarator = 226, - sym__old_style_function_declarator = 227, - sym_array_declarator = 228, - sym_array_field_declarator = 229, - sym_array_type_declarator = 230, - sym_abstract_array_declarator = 231, - sym_init_declarator = 232, - sym_compound_statement = 233, - sym_storage_class_specifier = 234, - sym_type_qualifier = 235, - sym__type_specifier = 236, - sym_sized_type_specifier = 237, - sym_enum_specifier = 238, - sym_enumerator_list = 239, - sym_struct_specifier = 240, - sym_union_specifier = 241, - sym_field_declaration_list = 242, - sym__field_declaration_list_item = 243, - sym_field_declaration = 244, - sym__field_declaration_declarator = 245, - sym_bitfield_clause = 246, - sym_enumerator = 247, - sym_variadic_parameter = 248, - sym_parameter_list = 249, - sym__old_style_parameter_list = 250, - sym_parameter_declaration = 251, - sym_attributed_statement = 252, - sym_labeled_statement = 253, - sym__top_level_expression_statement = 254, - sym_expression_statement = 255, - sym_if_statement = 256, - sym_else_clause = 257, - sym_switch_statement = 258, - sym_case_statement = 259, - sym_while_statement = 260, - sym_do_statement = 261, - sym_for_statement = 262, - sym__for_statement_body = 263, - sym_return_statement = 264, - sym_break_statement = 265, - sym_continue_statement = 266, - sym_goto_statement = 267, - sym_seh_try_statement = 268, - sym_seh_except_clause = 269, - sym_seh_finally_clause = 270, - sym_seh_leave_statement = 271, - sym__expression = 272, - sym__expression_not_binary = 273, - sym__string = 274, - sym_comma_expression = 275, - sym_conditional_expression = 276, - sym_assignment_expression = 277, - sym_pointer_expression = 278, - sym_unary_expression = 279, - sym_binary_expression = 280, - sym_update_expression = 281, - sym_cast_expression = 282, - sym_type_descriptor = 283, - sym_sizeof_expression = 284, - sym_alignof_expression = 285, - sym_offsetof_expression = 286, - sym_generic_expression = 287, - sym_subscript_expression = 288, - sym_call_expression = 289, - sym_gnu_asm_expression = 290, - sym_gnu_asm_qualifier = 291, - sym_gnu_asm_output_operand_list = 292, - sym_gnu_asm_output_operand = 293, - sym_gnu_asm_input_operand_list = 294, - sym_gnu_asm_input_operand = 295, - sym_gnu_asm_clobber_list = 296, - sym_gnu_asm_goto_list = 297, - sym_argument_list = 298, - sym_field_expression = 299, - sym_compound_literal_expression = 300, - sym_parenthesized_expression = 301, - sym_initializer_list = 302, - sym_initializer_pair = 303, - sym_subscript_designator = 304, - sym_subscript_range_designator = 305, - sym_field_designator = 306, - sym_char_literal = 307, - sym_concatenated_string = 308, - sym_string_literal = 309, - sym_null = 310, - sym__empty_declaration = 311, - sym_macro_type_specifier = 312, - aux_sym_translation_unit_repeat1 = 313, - aux_sym_preproc_params_repeat1 = 314, - aux_sym_preproc_if_repeat1 = 315, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 316, - aux_sym_preproc_if_in_enumerator_list_repeat1 = 317, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 318, - aux_sym_preproc_argument_list_repeat1 = 319, - aux_sym__old_style_function_definition_repeat1 = 320, - aux_sym_declaration_repeat1 = 321, - aux_sym_type_definition_repeat1 = 322, - aux_sym__type_definition_type_repeat1 = 323, - aux_sym__type_definition_declarators_repeat1 = 324, - aux_sym__declaration_specifiers_repeat1 = 325, - aux_sym_attribute_declaration_repeat1 = 326, - aux_sym_attributed_declarator_repeat1 = 327, - aux_sym_pointer_declarator_repeat1 = 328, - aux_sym_function_declarator_repeat1 = 329, - aux_sym_array_declarator_repeat1 = 330, - aux_sym_sized_type_specifier_repeat1 = 331, - aux_sym_enumerator_list_repeat1 = 332, - aux_sym__field_declaration_declarator_repeat1 = 333, - aux_sym_parameter_list_repeat1 = 334, - aux_sym__old_style_parameter_list_repeat1 = 335, - aux_sym_case_statement_repeat1 = 336, - aux_sym_generic_expression_repeat1 = 337, - aux_sym_gnu_asm_expression_repeat1 = 338, - aux_sym_gnu_asm_output_operand_list_repeat1 = 339, - aux_sym_gnu_asm_input_operand_list_repeat1 = 340, - aux_sym_gnu_asm_clobber_list_repeat1 = 341, - aux_sym_gnu_asm_goto_list_repeat1 = 342, - aux_sym_argument_list_repeat1 = 343, - aux_sym_initializer_list_repeat1 = 344, - aux_sym_initializer_pair_repeat1 = 345, - aux_sym_char_literal_repeat1 = 346, - aux_sym_concatenated_string_repeat1 = 347, - aux_sym_string_literal_repeat1 = 348, - alias_sym_field_identifier = 349, - alias_sym_statement_identifier = 350, - alias_sym_type_identifier = 351, + anon_sym_alignas = 89, + anon_sym__Alignas = 90, + sym_primitive_type = 91, + anon_sym_enum = 92, + anon_sym_COLON = 93, + anon_sym_struct = 94, + anon_sym_union = 95, + anon_sym_if = 96, + anon_sym_else = 97, + anon_sym_switch = 98, + anon_sym_case = 99, + anon_sym_default = 100, + anon_sym_while = 101, + anon_sym_do = 102, + anon_sym_for = 103, + anon_sym_return = 104, + anon_sym_break = 105, + anon_sym_continue = 106, + anon_sym_goto = 107, + anon_sym___try = 108, + anon_sym___except = 109, + anon_sym___finally = 110, + anon_sym___leave = 111, + anon_sym_QMARK = 112, + anon_sym_STAR_EQ = 113, + anon_sym_SLASH_EQ = 114, + anon_sym_PERCENT_EQ = 115, + anon_sym_PLUS_EQ = 116, + anon_sym_DASH_EQ = 117, + anon_sym_LT_LT_EQ = 118, + anon_sym_GT_GT_EQ = 119, + anon_sym_AMP_EQ = 120, + anon_sym_CARET_EQ = 121, + anon_sym_PIPE_EQ = 122, + anon_sym_DASH_DASH = 123, + anon_sym_PLUS_PLUS = 124, + anon_sym_sizeof = 125, + anon_sym___alignof__ = 126, + anon_sym___alignof = 127, + anon_sym__alignof = 128, + anon_sym_alignof = 129, + anon_sym__Alignof = 130, + anon_sym_offsetof = 131, + anon_sym__Generic = 132, + anon_sym_asm = 133, + anon_sym___asm__ = 134, + anon_sym_DOT = 135, + anon_sym_DASH_GT = 136, + sym_number_literal = 137, + anon_sym_L_SQUOTE = 138, + anon_sym_u_SQUOTE = 139, + anon_sym_U_SQUOTE = 140, + anon_sym_u8_SQUOTE = 141, + anon_sym_SQUOTE = 142, + aux_sym_char_literal_token1 = 143, + anon_sym_L_DQUOTE = 144, + anon_sym_u_DQUOTE = 145, + anon_sym_U_DQUOTE = 146, + anon_sym_u8_DQUOTE = 147, + anon_sym_DQUOTE = 148, + aux_sym_string_literal_token1 = 149, + sym_escape_sequence = 150, + sym_system_lib_string = 151, + sym_true = 152, + sym_false = 153, + anon_sym_NULL = 154, + anon_sym_nullptr = 155, + sym_comment = 156, + sym_translation_unit = 157, + sym_preproc_include = 158, + sym_preproc_def = 159, + sym_preproc_function_def = 160, + sym_preproc_params = 161, + sym_preproc_call = 162, + sym_preproc_if = 163, + sym_preproc_ifdef = 164, + sym_preproc_else = 165, + sym_preproc_elif = 166, + sym_preproc_elifdef = 167, + sym_preproc_if_in_field_declaration_list = 168, + sym_preproc_ifdef_in_field_declaration_list = 169, + sym_preproc_else_in_field_declaration_list = 170, + sym_preproc_elif_in_field_declaration_list = 171, + sym_preproc_elifdef_in_field_declaration_list = 172, + sym_preproc_if_in_enumerator_list = 173, + sym_preproc_ifdef_in_enumerator_list = 174, + sym_preproc_else_in_enumerator_list = 175, + sym_preproc_elif_in_enumerator_list = 176, + sym_preproc_elifdef_in_enumerator_list = 177, + sym_preproc_if_in_enumerator_list_no_comma = 178, + sym_preproc_ifdef_in_enumerator_list_no_comma = 179, + sym_preproc_else_in_enumerator_list_no_comma = 180, + sym_preproc_elif_in_enumerator_list_no_comma = 181, + sym_preproc_elifdef_in_enumerator_list_no_comma = 182, + sym__preproc_expression = 183, + sym_preproc_parenthesized_expression = 184, + sym_preproc_defined = 185, + sym_preproc_unary_expression = 186, + sym_preproc_call_expression = 187, + sym_preproc_argument_list = 188, + sym_preproc_binary_expression = 189, + sym_function_definition = 190, + sym__old_style_function_definition = 191, + sym_declaration = 192, + sym_type_definition = 193, + sym__type_definition_type = 194, + sym__type_definition_declarators = 195, + sym__declaration_modifiers = 196, + sym__declaration_specifiers = 197, + sym_linkage_specification = 198, + sym_attribute_specifier = 199, + sym_attribute = 200, + sym_attribute_declaration = 201, + sym_ms_declspec_modifier = 202, + sym_ms_based_modifier = 203, + sym_ms_call_modifier = 204, + sym_ms_unaligned_ptr_modifier = 205, + sym_ms_pointer_modifier = 206, + sym_declaration_list = 207, + sym__declarator = 208, + sym__declaration_declarator = 209, + sym__field_declarator = 210, + sym__type_declarator = 211, + sym__abstract_declarator = 212, + sym_parenthesized_declarator = 213, + sym_parenthesized_field_declarator = 214, + sym_parenthesized_type_declarator = 215, + sym_abstract_parenthesized_declarator = 216, + sym_attributed_declarator = 217, + sym_attributed_field_declarator = 218, + sym_attributed_type_declarator = 219, + sym_pointer_declarator = 220, + sym_pointer_field_declarator = 221, + sym_pointer_type_declarator = 222, + sym_abstract_pointer_declarator = 223, + sym_function_declarator = 224, + sym__function_declaration_declarator = 225, + sym_function_field_declarator = 226, + sym_function_type_declarator = 227, + sym_abstract_function_declarator = 228, + sym__old_style_function_declarator = 229, + sym_array_declarator = 230, + sym_array_field_declarator = 231, + sym_array_type_declarator = 232, + sym_abstract_array_declarator = 233, + sym_init_declarator = 234, + sym_compound_statement = 235, + sym_storage_class_specifier = 236, + sym_type_qualifier = 237, + sym_alignas_qualifier = 238, + sym__type_specifier = 239, + sym_sized_type_specifier = 240, + sym_enum_specifier = 241, + sym_enumerator_list = 242, + sym_struct_specifier = 243, + sym_union_specifier = 244, + sym_field_declaration_list = 245, + sym__field_declaration_list_item = 246, + sym_field_declaration = 247, + sym__field_declaration_declarator = 248, + sym_bitfield_clause = 249, + sym_enumerator = 250, + sym_variadic_parameter = 251, + sym_parameter_list = 252, + sym__old_style_parameter_list = 253, + sym_parameter_declaration = 254, + sym_attributed_statement = 255, + sym_labeled_statement = 256, + sym__top_level_expression_statement = 257, + sym_expression_statement = 258, + sym_if_statement = 259, + sym_else_clause = 260, + sym_switch_statement = 261, + sym_case_statement = 262, + sym_while_statement = 263, + sym_do_statement = 264, + sym_for_statement = 265, + sym__for_statement_body = 266, + sym_return_statement = 267, + sym_break_statement = 268, + sym_continue_statement = 269, + sym_goto_statement = 270, + sym_seh_try_statement = 271, + sym_seh_except_clause = 272, + sym_seh_finally_clause = 273, + sym_seh_leave_statement = 274, + sym__expression = 275, + sym__expression_not_binary = 276, + sym__string = 277, + sym_comma_expression = 278, + sym_conditional_expression = 279, + sym_assignment_expression = 280, + sym_pointer_expression = 281, + sym_unary_expression = 282, + sym_binary_expression = 283, + sym_update_expression = 284, + sym_cast_expression = 285, + sym_type_descriptor = 286, + sym_sizeof_expression = 287, + sym_alignof_expression = 288, + sym_offsetof_expression = 289, + sym_generic_expression = 290, + sym_subscript_expression = 291, + sym_call_expression = 292, + sym_gnu_asm_expression = 293, + sym_gnu_asm_qualifier = 294, + sym_gnu_asm_output_operand_list = 295, + sym_gnu_asm_output_operand = 296, + sym_gnu_asm_input_operand_list = 297, + sym_gnu_asm_input_operand = 298, + sym_gnu_asm_clobber_list = 299, + sym_gnu_asm_goto_list = 300, + sym_argument_list = 301, + sym_field_expression = 302, + sym_compound_literal_expression = 303, + sym_parenthesized_expression = 304, + sym_initializer_list = 305, + sym_initializer_pair = 306, + sym_subscript_designator = 307, + sym_subscript_range_designator = 308, + sym_field_designator = 309, + sym_char_literal = 310, + sym_concatenated_string = 311, + sym_string_literal = 312, + sym_null = 313, + sym__empty_declaration = 314, + sym_macro_type_specifier = 315, + aux_sym_translation_unit_repeat1 = 316, + aux_sym_preproc_params_repeat1 = 317, + aux_sym_preproc_if_repeat1 = 318, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 319, + aux_sym_preproc_if_in_enumerator_list_repeat1 = 320, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 321, + aux_sym_preproc_argument_list_repeat1 = 322, + aux_sym__old_style_function_definition_repeat1 = 323, + aux_sym_declaration_repeat1 = 324, + aux_sym_type_definition_repeat1 = 325, + aux_sym__type_definition_type_repeat1 = 326, + aux_sym__type_definition_declarators_repeat1 = 327, + aux_sym__declaration_specifiers_repeat1 = 328, + aux_sym_attribute_declaration_repeat1 = 329, + aux_sym_attributed_declarator_repeat1 = 330, + aux_sym_pointer_declarator_repeat1 = 331, + aux_sym_function_declarator_repeat1 = 332, + aux_sym_array_declarator_repeat1 = 333, + aux_sym_sized_type_specifier_repeat1 = 334, + aux_sym_enumerator_list_repeat1 = 335, + aux_sym__field_declaration_declarator_repeat1 = 336, + aux_sym_parameter_list_repeat1 = 337, + aux_sym__old_style_parameter_list_repeat1 = 338, + aux_sym_case_statement_repeat1 = 339, + aux_sym_generic_expression_repeat1 = 340, + aux_sym_gnu_asm_expression_repeat1 = 341, + aux_sym_gnu_asm_output_operand_list_repeat1 = 342, + aux_sym_gnu_asm_input_operand_list_repeat1 = 343, + aux_sym_gnu_asm_clobber_list_repeat1 = 344, + aux_sym_gnu_asm_goto_list_repeat1 = 345, + aux_sym_argument_list_repeat1 = 346, + aux_sym_initializer_list_repeat1 = 347, + aux_sym_initializer_pair_repeat1 = 348, + aux_sym_char_literal_repeat1 = 349, + aux_sym_concatenated_string_repeat1 = 350, + aux_sym_string_literal_repeat1 = 351, + alias_sym_field_identifier = 352, + alias_sym_statement_identifier = 353, + alias_sym_type_identifier = 354, }; static const char * const ts_symbol_names[] = { @@ -467,6 +470,8 @@ static const char * const ts_symbol_names[] = { [anon_sym__Atomic] = "_Atomic", [anon_sym__Noreturn] = "_Noreturn", [anon_sym_noreturn] = "noreturn", + [anon_sym_alignas] = "alignas", + [anon_sym__Alignas] = "_Alignas", [sym_primitive_type] = "primitive_type", [anon_sym_enum] = "enum", [anon_sym_COLON] = ":", @@ -614,6 +619,7 @@ static const char * const ts_symbol_names[] = { [sym_compound_statement] = "compound_statement", [sym_storage_class_specifier] = "storage_class_specifier", [sym_type_qualifier] = "type_qualifier", + [sym_alignas_qualifier] = "alignas_qualifier", [sym__type_specifier] = "_type_specifier", [sym_sized_type_specifier] = "sized_type_specifier", [sym_enum_specifier] = "enum_specifier", @@ -822,6 +828,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym__Atomic] = anon_sym__Atomic, [anon_sym__Noreturn] = anon_sym__Noreturn, [anon_sym_noreturn] = anon_sym_noreturn, + [anon_sym_alignas] = anon_sym_alignas, + [anon_sym__Alignas] = anon_sym__Alignas, [sym_primitive_type] = sym_primitive_type, [anon_sym_enum] = anon_sym_enum, [anon_sym_COLON] = anon_sym_COLON, @@ -969,6 +977,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_compound_statement] = sym_compound_statement, [sym_storage_class_specifier] = sym_storage_class_specifier, [sym_type_qualifier] = sym_type_qualifier, + [sym_alignas_qualifier] = sym_alignas_qualifier, [sym__type_specifier] = sym__type_specifier, [sym_sized_type_specifier] = sym_sized_type_specifier, [sym_enum_specifier] = sym_enum_specifier, @@ -1444,6 +1453,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_alignas] = { + .visible = true, + .named = false, + }, + [anon_sym__Alignas] = { + .visible = true, + .named = false, + }, [sym_primitive_type] = { .visible = true, .named = true, @@ -2036,6 +2053,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_alignas_qualifier] = { + .visible = true, + .named = true, + }, [sym__type_specifier] = { .visible = false, .named = true, @@ -3180,42 +3201,42 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 4, [5] = 5, [6] = 5, - [7] = 7, - [8] = 5, + [7] = 4, + [8] = 8, [9] = 5, [10] = 10, - [11] = 3, - [12] = 10, + [11] = 2, + [12] = 2, [13] = 3, - [14] = 2, - [15] = 10, - [16] = 3, - [17] = 2, - [18] = 18, - [19] = 2, - [20] = 10, - [21] = 21, + [14] = 14, + [15] = 3, + [16] = 16, + [17] = 3, + [18] = 2, + [19] = 4, + [20] = 4, + [21] = 5, [22] = 22, [23] = 23, [24] = 24, - [25] = 22, - [26] = 23, + [25] = 23, + [26] = 26, [27] = 27, - [28] = 28, - [29] = 29, - [30] = 28, + [28] = 27, + [29] = 23, + [30] = 30, [31] = 23, - [32] = 28, - [33] = 33, - [34] = 28, - [35] = 29, - [36] = 29, - [37] = 23, - [38] = 33, - [39] = 22, - [40] = 33, - [41] = 33, - [42] = 29, + [32] = 24, + [33] = 24, + [34] = 24, + [35] = 22, + [36] = 30, + [37] = 30, + [38] = 22, + [39] = 39, + [40] = 27, + [41] = 27, + [42] = 30, [43] = 43, [44] = 44, [45] = 45, @@ -3224,23 +3245,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [48] = 48, [49] = 49, [50] = 48, - [51] = 47, - [52] = 46, - [53] = 48, - [54] = 47, - [55] = 45, + [51] = 49, + [52] = 47, + [53] = 46, + [54] = 45, + [55] = 46, [56] = 45, - [57] = 46, + [57] = 45, [58] = 48, - [59] = 49, - [60] = 47, - [61] = 45, - [62] = 46, - [63] = 49, - [64] = 49, - [65] = 48, + [59] = 47, + [60] = 49, + [61] = 49, + [62] = 48, + [63] = 46, + [64] = 47, + [65] = 47, [66] = 46, - [67] = 47, + [67] = 48, [68] = 45, [69] = 49, [70] = 70, @@ -3265,8 +3286,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [89] = 89, [90] = 90, [91] = 91, - [92] = 80, - [93] = 93, + [92] = 92, + [93] = 79, [94] = 94, [95] = 95, [96] = 96, @@ -3284,7 +3305,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [108] = 108, [109] = 109, [110] = 110, - [111] = 104, + [111] = 111, [112] = 112, [113] = 113, [114] = 114, @@ -3299,7 +3320,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [123] = 123, [124] = 124, [125] = 125, - [126] = 126, + [126] = 91, [127] = 127, [128] = 128, [129] = 129, @@ -3330,314 +3351,314 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [154] = 154, [155] = 155, [156] = 75, - [157] = 157, + [157] = 75, [158] = 75, - [159] = 157, - [160] = 75, - [161] = 78, - [162] = 108, - [163] = 126, - [164] = 127, - [165] = 125, - [166] = 124, - [167] = 123, - [168] = 122, - [169] = 121, - [170] = 76, - [171] = 76, - [172] = 114, - [173] = 114, - [174] = 113, - [175] = 106, - [176] = 118, - [177] = 102, - [178] = 113, - [179] = 112, - [180] = 100, - [181] = 121, - [182] = 122, - [183] = 123, - [184] = 124, - [185] = 125, - [186] = 127, - [187] = 126, - [188] = 119, - [189] = 93, - [190] = 87, - [191] = 86, - [192] = 120, - [193] = 84, - [194] = 95, - [195] = 119, - [196] = 118, - [197] = 117, - [198] = 116, - [199] = 110, - [200] = 96, - [201] = 97, - [202] = 98, - [203] = 99, - [204] = 117, - [205] = 109, - [206] = 108, - [207] = 116, - [208] = 101, - [209] = 110, - [210] = 104, - [211] = 109, - [212] = 107, - [213] = 77, - [214] = 105, - [215] = 103, - [216] = 115, - [217] = 94, - [218] = 93, - [219] = 91, - [220] = 87, - [221] = 112, - [222] = 90, - [223] = 88, - [224] = 83, - [225] = 82, - [226] = 81, - [227] = 108, - [228] = 80, - [229] = 79, - [230] = 107, - [231] = 77, + [159] = 86, + [160] = 124, + [161] = 77, + [162] = 79, + [163] = 78, + [164] = 96, + [165] = 114, + [166] = 112, + [167] = 101, + [168] = 100, + [169] = 109, + [170] = 116, + [171] = 82, + [172] = 89, + [173] = 81, + [174] = 83, + [175] = 121, + [176] = 84, + [177] = 91, + [178] = 92, + [179] = 117, + [180] = 85, + [181] = 92, + [182] = 89, + [183] = 90, + [184] = 95, + [185] = 97, + [186] = 98, + [187] = 121, + [188] = 91, + [189] = 102, + [190] = 117, + [191] = 107, + [192] = 111, + [193] = 96, + [194] = 115, + [195] = 109, + [196] = 82, + [197] = 83, + [198] = 88, + [199] = 87, + [200] = 84, + [201] = 80, + [202] = 76, + [203] = 127, + [204] = 125, + [205] = 124, + [206] = 120, + [207] = 123, + [208] = 119, + [209] = 122, + [210] = 109, + [211] = 118, + [212] = 108, + [213] = 81, + [214] = 77, + [215] = 114, + [216] = 112, + [217] = 106, + [218] = 101, + [219] = 104, + [220] = 116, + [221] = 100, + [222] = 82, + [223] = 105, + [224] = 88, + [225] = 83, + [226] = 84, + [227] = 85, + [228] = 81, + [229] = 110, + [230] = 87, + [231] = 86, [232] = 103, - [233] = 85, - [234] = 79, - [235] = 80, - [236] = 90, - [237] = 81, - [238] = 88, - [239] = 82, - [240] = 83, - [241] = 112, - [242] = 86, - [243] = 115, + [233] = 99, + [234] = 90, + [235] = 94, + [236] = 80, + [237] = 116, + [238] = 78, + [239] = 96, + [240] = 89, + [241] = 113, + [242] = 88, + [243] = 95, [244] = 105, - [245] = 104, - [246] = 101, - [247] = 89, - [248] = 115, - [249] = 105, - [250] = 99, - [251] = 95, - [252] = 100, - [253] = 102, - [254] = 106, - [255] = 94, - [256] = 84, - [257] = 91, - [258] = 85, - [259] = 98, - [260] = 97, - [261] = 83, - [262] = 82, - [263] = 96, - [264] = 89, - [265] = 81, - [266] = 78, - [267] = 84, - [268] = 86, - [269] = 87, - [270] = 95, - [271] = 100, - [272] = 102, - [273] = 106, - [274] = 113, - [275] = 114, - [276] = 76, - [277] = 121, + [245] = 97, + [246] = 87, + [247] = 105, + [248] = 85, + [249] = 86, + [250] = 117, + [251] = 121, + [252] = 90, + [253] = 98, + [254] = 95, + [255] = 80, + [256] = 97, + [257] = 98, + [258] = 110, + [259] = 102, + [260] = 102, + [261] = 122, + [262] = 92, + [263] = 125, + [264] = 79, + [265] = 127, + [266] = 125, + [267] = 124, + [268] = 107, + [269] = 127, + [270] = 111, + [271] = 115, + [272] = 76, + [273] = 110, + [274] = 107, + [275] = 78, + [276] = 113, + [277] = 111, [278] = 122, - [279] = 123, - [280] = 124, - [281] = 101, - [282] = 125, - [283] = 127, - [284] = 79, - [285] = 99, - [286] = 126, - [287] = 120, - [288] = 119, - [289] = 118, - [290] = 117, - [291] = 116, - [292] = 98, - [293] = 97, - [294] = 110, - [295] = 109, - [296] = 120, - [297] = 107, - [298] = 77, - [299] = 103, - [300] = 94, - [301] = 93, - [302] = 91, - [303] = 90, - [304] = 88, - [305] = 85, - [306] = 78, - [307] = 89, - [308] = 96, - [309] = 145, - [310] = 141, - [311] = 311, - [312] = 312, - [313] = 313, - [314] = 314, - [315] = 315, - [316] = 316, - [317] = 315, - [318] = 318, - [319] = 133, - [320] = 320, - [321] = 134, - [322] = 135, - [323] = 316, - [324] = 136, - [325] = 138, - [326] = 139, - [327] = 142, - [328] = 128, - [329] = 151, + [279] = 115, + [280] = 94, + [281] = 99, + [282] = 76, + [283] = 120, + [284] = 123, + [285] = 77, + [286] = 119, + [287] = 118, + [288] = 108, + [289] = 114, + [290] = 103, + [291] = 104, + [292] = 106, + [293] = 108, + [294] = 106, + [295] = 104, + [296] = 112, + [297] = 101, + [298] = 103, + [299] = 118, + [300] = 119, + [301] = 100, + [302] = 99, + [303] = 123, + [304] = 94, + [305] = 120, + [306] = 113, + [307] = 151, + [308] = 153, + [309] = 130, + [310] = 132, + [311] = 149, + [312] = 139, + [313] = 139, + [314] = 132, + [315] = 144, + [316] = 141, + [317] = 131, + [318] = 149, + [319] = 134, + [320] = 130, + [321] = 142, + [322] = 146, + [323] = 141, + [324] = 131, + [325] = 325, + [326] = 128, + [327] = 155, + [328] = 133, + [329] = 136, [330] = 152, - [331] = 153, - [332] = 155, - [333] = 140, - [334] = 152, - [335] = 314, - [336] = 149, - [337] = 150, - [338] = 315, - [339] = 314, - [340] = 137, - [341] = 132, - [342] = 151, - [343] = 153, - [344] = 318, - [345] = 148, - [346] = 147, - [347] = 145, - [348] = 130, - [349] = 316, - [350] = 313, - [351] = 312, - [352] = 311, - [353] = 146, - [354] = 320, - [355] = 318, - [356] = 129, - [357] = 320, - [358] = 314, - [359] = 131, - [360] = 148, - [361] = 311, - [362] = 312, - [363] = 318, - [364] = 142, - [365] = 144, - [366] = 313, - [367] = 150, - [368] = 129, - [369] = 131, - [370] = 143, - [371] = 316, - [372] = 146, - [373] = 316, - [374] = 133, - [375] = 144, - [376] = 130, - [377] = 134, - [378] = 135, - [379] = 136, - [380] = 137, - [381] = 138, - [382] = 139, - [383] = 147, - [384] = 313, - [385] = 132, - [386] = 313, - [387] = 320, - [388] = 141, - [389] = 312, - [390] = 155, - [391] = 311, - [392] = 128, - [393] = 154, - [394] = 320, - [395] = 143, - [396] = 312, - [397] = 311, - [398] = 140, - [399] = 318, - [400] = 314, - [401] = 149, - [402] = 154, - [403] = 315, - [404] = 131, - [405] = 142, - [406] = 157, - [407] = 148, - [408] = 155, - [409] = 134, - [410] = 410, - [411] = 135, - [412] = 132, - [413] = 138, - [414] = 139, - [415] = 136, - [416] = 416, - [417] = 141, - [418] = 137, - [419] = 149, + [331] = 325, + [332] = 138, + [333] = 154, + [334] = 135, + [335] = 144, + [336] = 145, + [337] = 142, + [338] = 148, + [339] = 128, + [340] = 129, + [341] = 134, + [342] = 150, + [343] = 146, + [344] = 147, + [345] = 155, + [346] = 140, + [347] = 133, + [348] = 143, + [349] = 136, + [350] = 138, + [351] = 129, + [352] = 148, + [353] = 135, + [354] = 140, + [355] = 150, + [356] = 137, + [357] = 154, + [358] = 145, + [359] = 147, + [360] = 151, + [361] = 137, + [362] = 153, + [363] = 143, + [364] = 152, + [365] = 140, + [366] = 154, + [367] = 367, + [368] = 368, + [369] = 369, + [370] = 370, + [371] = 367, + [372] = 372, + [373] = 373, + [374] = 374, + [375] = 368, + [376] = 372, + [377] = 370, + [378] = 367, + [379] = 370, + [380] = 372, + [381] = 381, + [382] = 369, + [383] = 367, + [384] = 373, + [385] = 374, + [386] = 368, + [387] = 369, + [388] = 372, + [389] = 374, + [390] = 368, + [391] = 373, + [392] = 372, + [393] = 381, + [394] = 370, + [395] = 370, + [396] = 367, + [397] = 374, + [398] = 373, + [399] = 369, + [400] = 368, + [401] = 374, + [402] = 373, + [403] = 381, + [404] = 381, + [405] = 381, + [406] = 406, + [407] = 131, + [408] = 150, + [409] = 152, + [410] = 142, + [411] = 155, + [412] = 141, + [413] = 134, + [414] = 145, + [415] = 149, + [416] = 153, + [417] = 139, + [418] = 128, + [419] = 144, [420] = 133, - [421] = 146, - [422] = 143, - [423] = 152, - [424] = 154, - [425] = 144, - [426] = 147, - [427] = 145, - [428] = 151, - [429] = 130, + [421] = 130, + [422] = 151, + [423] = 148, + [424] = 136, + [425] = 138, + [426] = 137, + [427] = 147, + [428] = 132, + [429] = 429, [430] = 129, - [431] = 140, - [432] = 153, - [433] = 128, + [431] = 146, + [432] = 143, + [433] = 325, [434] = 434, - [435] = 435, - [436] = 435, - [437] = 435, - [438] = 434, - [439] = 435, - [440] = 435, + [435] = 434, + [436] = 436, + [437] = 434, + [438] = 436, + [439] = 436, + [440] = 436, [441] = 434, - [442] = 434, + [442] = 436, [443] = 434, - [444] = 435, + [444] = 436, [445] = 434, [446] = 446, - [447] = 447, - [448] = 157, - [449] = 157, - [450] = 157, - [451] = 75, - [452] = 452, - [453] = 452, - [454] = 452, - [455] = 452, - [456] = 456, - [457] = 452, - [458] = 452, - [459] = 452, - [460] = 452, - [461] = 461, - [462] = 452, + [447] = 446, + [448] = 448, + [449] = 449, + [450] = 325, + [451] = 325, + [452] = 75, + [453] = 453, + [454] = 453, + [455] = 455, + [456] = 453, + [457] = 453, + [458] = 453, + [459] = 453, + [460] = 453, + [461] = 453, + [462] = 325, [463] = 463, - [464] = 464, + [464] = 453, [465] = 465, [466] = 466, [467] = 467, @@ -3652,60 +3673,60 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [476] = 476, [477] = 477, [478] = 478, - [479] = 478, + [479] = 479, [480] = 480, - [481] = 481, + [481] = 480, [482] = 482, - [483] = 483, + [483] = 478, [484] = 484, [485] = 485, - [486] = 484, - [487] = 478, - [488] = 488, - [489] = 485, - [490] = 484, - [491] = 485, - [492] = 488, - [493] = 488, + [486] = 485, + [487] = 484, + [488] = 485, + [489] = 484, + [490] = 480, + [491] = 478, + [492] = 492, + [493] = 493, [494] = 494, [495] = 495, [496] = 496, - [497] = 496, + [497] = 497, [498] = 498, [499] = 499, - [500] = 500, - [501] = 500, - [502] = 502, - [503] = 503, - [504] = 502, - [505] = 499, - [506] = 500, - [507] = 499, - [508] = 499, - [509] = 500, - [510] = 500, - [511] = 511, + [500] = 497, + [501] = 501, + [502] = 497, + [503] = 498, + [504] = 504, + [505] = 505, + [506] = 506, + [507] = 507, + [508] = 507, + [509] = 509, + [510] = 510, + [511] = 507, [512] = 512, - [513] = 502, - [514] = 514, - [515] = 499, + [513] = 513, + [514] = 513, + [515] = 515, [516] = 516, - [517] = 517, + [517] = 507, [518] = 518, [519] = 519, [520] = 520, - [521] = 502, - [522] = 499, - [523] = 523, + [521] = 520, + [522] = 507, + [523] = 520, [524] = 524, [525] = 525, - [526] = 500, - [527] = 527, + [526] = 520, + [527] = 513, [528] = 528, - [529] = 529, - [530] = 530, - [531] = 495, - [532] = 532, + [529] = 520, + [530] = 507, + [531] = 513, + [532] = 520, [533] = 533, [534] = 534, [535] = 535, @@ -3714,133 +3735,133 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [538] = 538, [539] = 539, [540] = 540, - [541] = 541, + [541] = 537, [542] = 542, - [543] = 495, - [544] = 544, - [545] = 532, + [543] = 543, + [544] = 543, + [545] = 463, [546] = 546, [547] = 547, - [548] = 548, + [548] = 543, [549] = 549, [550] = 550, [551] = 551, - [552] = 547, + [552] = 543, [553] = 553, [554] = 554, [555] = 555, [556] = 556, - [557] = 557, + [557] = 554, [558] = 558, - [559] = 559, + [559] = 555, [560] = 560, [561] = 561, [562] = 562, - [563] = 563, - [564] = 561, + [563] = 554, + [564] = 564, [565] = 565, - [566] = 566, - [567] = 563, + [566] = 564, + [567] = 560, [568] = 568, - [569] = 566, + [569] = 562, [570] = 570, [571] = 571, - [572] = 560, - [573] = 556, - [574] = 561, - [575] = 548, - [576] = 549, - [577] = 550, - [578] = 562, + [572] = 572, + [573] = 570, + [574] = 574, + [575] = 575, + [576] = 576, + [577] = 577, + [578] = 578, [579] = 565, - [580] = 551, - [581] = 566, - [582] = 563, - [583] = 547, - [584] = 553, - [585] = 548, - [586] = 549, - [587] = 587, - [588] = 550, - [589] = 589, - [590] = 587, - [591] = 551, - [592] = 553, - [593] = 554, - [594] = 555, - [595] = 557, - [596] = 558, - [597] = 587, - [598] = 554, - [599] = 555, - [600] = 600, - [601] = 557, - [602] = 558, - [603] = 562, - [604] = 565, - [605] = 605, - [606] = 563, - [607] = 561, - [608] = 560, - [609] = 558, - [610] = 557, - [611] = 555, - [612] = 554, + [580] = 558, + [581] = 553, + [582] = 582, + [583] = 583, + [584] = 578, + [585] = 576, + [586] = 558, + [587] = 571, + [588] = 588, + [589] = 558, + [590] = 577, + [591] = 591, + [592] = 562, + [593] = 593, + [594] = 583, + [595] = 576, + [596] = 572, + [597] = 571, + [598] = 576, + [599] = 560, + [600] = 572, + [601] = 564, + [602] = 575, + [603] = 554, + [604] = 578, + [605] = 570, + [606] = 556, + [607] = 577, + [608] = 556, + [609] = 572, + [610] = 578, + [611] = 562, + [612] = 571, [613] = 553, - [614] = 547, - [615] = 551, - [616] = 550, - [617] = 548, - [618] = 561, - [619] = 560, - [620] = 561, + [614] = 553, + [615] = 565, + [616] = 555, + [617] = 565, + [618] = 560, + [619] = 564, + [620] = 583, [621] = 621, [622] = 560, - [623] = 600, - [624] = 558, - [625] = 563, - [626] = 565, - [627] = 557, - [628] = 560, - [629] = 555, - [630] = 554, - [631] = 553, - [632] = 547, - [633] = 551, - [634] = 550, - [635] = 549, - [636] = 548, - [637] = 556, - [638] = 562, - [639] = 639, - [640] = 546, - [641] = 548, - [642] = 549, - [643] = 643, - [644] = 550, - [645] = 551, - [646] = 547, - [647] = 553, - [648] = 554, - [649] = 555, - [650] = 557, - [651] = 558, - [652] = 652, - [653] = 549, - [654] = 563, - [655] = 565, - [656] = 587, - [657] = 587, - [658] = 562, - [659] = 562, - [660] = 565, - [661] = 461, + [623] = 554, + [624] = 555, + [625] = 555, + [626] = 564, + [627] = 565, + [628] = 555, + [629] = 564, + [630] = 553, + [631] = 562, + [632] = 570, + [633] = 572, + [634] = 556, + [635] = 578, + [636] = 636, + [637] = 637, + [638] = 637, + [639] = 575, + [640] = 640, + [641] = 575, + [642] = 565, + [643] = 553, + [644] = 562, + [645] = 554, + [646] = 560, + [647] = 576, + [648] = 572, + [649] = 556, + [650] = 650, + [651] = 570, + [652] = 577, + [653] = 571, + [654] = 558, + [655] = 575, + [656] = 637, + [657] = 574, + [658] = 578, + [659] = 571, + [660] = 570, + [661] = 556, [662] = 662, - [663] = 663, - [664] = 664, - [665] = 663, - [666] = 663, - [667] = 663, + [663] = 636, + [664] = 577, + [665] = 575, + [666] = 558, + [667] = 576, [668] = 668, [669] = 669, [670] = 670, @@ -3856,46 +3877,46 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [680] = 680, [681] = 681, [682] = 682, - [683] = 682, - [684] = 447, + [683] = 683, + [684] = 684, [685] = 685, - [686] = 446, + [686] = 686, [687] = 687, - [688] = 688, + [688] = 687, [689] = 689, - [690] = 690, + [690] = 689, [691] = 691, - [692] = 692, - [693] = 693, - [694] = 688, - [695] = 693, + [692] = 685, + [693] = 691, + [694] = 687, + [695] = 689, [696] = 696, - [697] = 697, - [698] = 698, - [699] = 699, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 688, + [697] = 685, + [698] = 691, + [699] = 685, + [700] = 687, + [701] = 691, + [702] = 689, + [703] = 703, [704] = 704, - [705] = 693, + [705] = 705, [706] = 706, [707] = 707, - [708] = 708, - [709] = 693, - [710] = 700, - [711] = 699, - [712] = 712, + [708] = 449, + [709] = 709, + [710] = 710, + [711] = 448, + [712] = 710, [713] = 713, [714] = 714, [715] = 715, - [716] = 700, - [717] = 699, + [716] = 716, + [717] = 717, [718] = 718, - [719] = 699, - [720] = 688, - [721] = 700, - [722] = 669, + [719] = 719, + [720] = 720, + [721] = 721, + [722] = 722, [723] = 723, [724] = 724, [725] = 725, @@ -3905,77 +3926,77 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [729] = 729, [730] = 730, [731] = 731, - [732] = 732, - [733] = 733, + [732] = 707, + [733] = 730, [734] = 734, [735] = 735, - [736] = 687, + [736] = 735, [737] = 737, - [738] = 669, + [738] = 738, [739] = 739, [740] = 740, [741] = 741, - [742] = 740, - [743] = 740, - [744] = 741, - [745] = 740, - [746] = 746, - [747] = 741, - [748] = 741, - [749] = 749, + [742] = 742, + [743] = 730, + [744] = 735, + [745] = 730, + [746] = 671, + [747] = 747, + [748] = 735, + [749] = 671, [750] = 750, [751] = 751, - [752] = 751, - [753] = 751, - [754] = 754, + [752] = 752, + [753] = 753, + [754] = 751, [755] = 755, [756] = 756, - [757] = 751, + [757] = 757, [758] = 758, - [759] = 746, + [759] = 750, [760] = 760, - [761] = 751, - [762] = 762, + [761] = 449, + [762] = 448, [763] = 763, [764] = 764, [765] = 765, - [766] = 447, + [766] = 766, [767] = 767, [768] = 768, [769] = 769, [770] = 770, [771] = 771, - [772] = 446, - [773] = 773, - [774] = 669, + [772] = 772, + [773] = 771, + [774] = 774, [775] = 775, [776] = 776, [777] = 777, - [778] = 778, - [779] = 773, - [780] = 780, - [781] = 781, + [778] = 771, + [779] = 779, + [780] = 771, + [781] = 771, [782] = 782, [783] = 783, [784] = 784, [785] = 785, - [786] = 768, - [787] = 777, - [788] = 763, - [789] = 776, - [790] = 775, + [786] = 786, + [787] = 787, + [788] = 788, + [789] = 789, + [790] = 790, [791] = 791, [792] = 792, [793] = 793, - [794] = 771, + [794] = 794, [795] = 795, - [796] = 765, - [797] = 769, - [798] = 767, + [796] = 796, + [797] = 797, + [798] = 798, [799] = 799, - [800] = 770, + [800] = 800, [801] = 801, - [802] = 778, + [802] = 802, [803] = 803, [804] = 804, [805] = 805, @@ -3985,7 +4006,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [809] = 809, [810] = 810, [811] = 811, - [812] = 812, + [812] = 671, [813] = 813, [814] = 814, [815] = 815, @@ -4010,498 +4031,498 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [834] = 834, [835] = 835, [836] = 836, - [837] = 837, + [837] = 799, [838] = 838, - [839] = 839, - [840] = 840, - [841] = 841, - [842] = 842, - [843] = 843, - [844] = 801, - [845] = 142, - [846] = 131, - [847] = 847, - [848] = 848, - [849] = 849, - [850] = 137, - [851] = 154, - [852] = 144, - [853] = 853, - [854] = 854, - [855] = 855, - [856] = 856, - [857] = 143, + [839] = 831, + [840] = 786, + [841] = 811, + [842] = 789, + [843] = 148, + [844] = 844, + [845] = 151, + [846] = 798, + [847] = 794, + [848] = 802, + [849] = 809, + [850] = 140, + [851] = 145, + [852] = 836, + [853] = 806, + [854] = 154, + [855] = 836, + [856] = 134, + [857] = 804, [858] = 858, - [859] = 859, + [859] = 836, [860] = 860, [861] = 861, [862] = 862, - [863] = 863, - [864] = 863, - [865] = 863, + [863] = 813, + [864] = 864, + [865] = 865, [866] = 866, - [867] = 863, - [868] = 737, - [869] = 777, - [870] = 870, - [871] = 765, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 844, + [871] = 871, [872] = 872, - [873] = 768, - [874] = 769, - [875] = 770, - [876] = 771, - [877] = 773, - [878] = 775, - [879] = 776, - [880] = 763, - [881] = 733, - [882] = 778, - [883] = 728, - [884] = 767, - [885] = 885, - [886] = 732, - [887] = 725, - [888] = 724, - [889] = 889, - [890] = 890, - [891] = 670, - [892] = 730, - [893] = 727, - [894] = 801, - [895] = 729, - [896] = 671, - [897] = 726, - [898] = 860, - [899] = 853, - [900] = 861, - [901] = 862, - [902] = 137, - [903] = 848, - [904] = 847, - [905] = 855, - [906] = 906, - [907] = 858, - [908] = 859, - [909] = 860, - [910] = 853, - [911] = 849, - [912] = 854, - [913] = 862, - [914] = 854, - [915] = 154, - [916] = 859, - [917] = 849, - [918] = 144, - [919] = 919, - [920] = 858, - [921] = 142, - [922] = 847, - [923] = 861, - [924] = 924, - [925] = 848, - [926] = 926, - [927] = 143, - [928] = 919, - [929] = 919, - [930] = 856, - [931] = 855, - [932] = 919, - [933] = 142, - [934] = 144, - [935] = 154, - [936] = 137, - [937] = 143, - [938] = 856, - [939] = 131, - [940] = 131, - [941] = 93, - [942] = 106, - [943] = 102, - [944] = 100, - [945] = 78, - [946] = 85, - [947] = 91, - [948] = 95, - [949] = 94, - [950] = 89, - [951] = 951, - [952] = 952, - [953] = 953, - [954] = 954, - [955] = 955, - [956] = 956, - [957] = 957, - [958] = 958, - [959] = 763, - [960] = 778, - [961] = 765, - [962] = 768, - [963] = 769, - [964] = 770, - [965] = 771, - [966] = 773, - [967] = 775, - [968] = 776, - [969] = 969, - [970] = 767, - [971] = 777, - [972] = 763, - [973] = 769, + [873] = 873, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 672, + [878] = 673, + [879] = 794, + [880] = 747, + [881] = 868, + [882] = 789, + [883] = 798, + [884] = 867, + [885] = 802, + [886] = 858, + [887] = 835, + [888] = 860, + [889] = 866, + [890] = 869, + [891] = 891, + [892] = 858, + [893] = 140, + [894] = 894, + [895] = 861, + [896] = 868, + [897] = 862, + [898] = 835, + [899] = 860, + [900] = 739, + [901] = 740, + [902] = 862, + [903] = 134, + [904] = 145, + [905] = 905, + [906] = 148, + [907] = 831, + [908] = 865, + [909] = 905, + [910] = 151, + [911] = 729, + [912] = 813, + [913] = 864, + [914] = 140, + [915] = 865, + [916] = 145, + [917] = 154, + [918] = 151, + [919] = 148, + [920] = 811, + [921] = 799, + [922] = 905, + [923] = 804, + [924] = 866, + [925] = 734, + [926] = 869, + [927] = 786, + [928] = 928, + [929] = 134, + [930] = 731, + [931] = 867, + [932] = 154, + [933] = 806, + [934] = 838, + [935] = 809, + [936] = 905, + [937] = 838, + [938] = 864, + [939] = 861, + [940] = 940, + [941] = 844, + [942] = 738, + [943] = 943, + [944] = 944, + [945] = 945, + [946] = 741, + [947] = 742, + [948] = 737, + [949] = 949, + [950] = 950, + [951] = 109, + [952] = 82, + [953] = 83, + [954] = 81, + [955] = 84, + [956] = 116, + [957] = 124, + [958] = 122, + [959] = 959, + [960] = 127, + [961] = 961, + [962] = 125, + [963] = 963, + [964] = 964, + [965] = 965, + [966] = 966, + [967] = 127, + [968] = 84, + [969] = 964, + [970] = 116, + [971] = 125, + [972] = 124, + [973] = 122, [974] = 974, - [975] = 776, - [976] = 78, - [977] = 977, - [978] = 93, - [979] = 777, - [980] = 974, - [981] = 974, - [982] = 767, - [983] = 974, - [984] = 765, - [985] = 94, - [986] = 768, - [987] = 89, - [988] = 95, - [989] = 989, - [990] = 100, - [991] = 770, - [992] = 771, - [993] = 773, - [994] = 91, - [995] = 85, - [996] = 996, - [997] = 106, - [998] = 102, - [999] = 778, - [1000] = 775, + [975] = 81, + [976] = 976, + [977] = 83, + [978] = 964, + [979] = 82, + [980] = 109, + [981] = 981, + [982] = 982, + [983] = 964, + [984] = 984, + [985] = 985, + [986] = 802, + [987] = 987, + [988] = 813, + [989] = 794, + [990] = 990, + [991] = 798, + [992] = 992, + [993] = 789, + [994] = 831, + [995] = 799, + [996] = 804, + [997] = 806, + [998] = 809, + [999] = 786, + [1000] = 811, [1001] = 1001, [1002] = 1002, [1003] = 1003, [1004] = 1004, - [1005] = 1005, - [1006] = 1006, - [1007] = 1007, + [1005] = 794, + [1006] = 809, + [1007] = 786, [1008] = 1008, - [1009] = 1009, - [1010] = 1010, - [1011] = 1011, - [1012] = 1012, - [1013] = 1013, - [1014] = 1014, - [1015] = 1015, - [1016] = 1016, - [1017] = 1017, + [1009] = 813, + [1010] = 811, + [1011] = 806, + [1012] = 804, + [1013] = 799, + [1014] = 831, + [1015] = 789, + [1016] = 802, + [1017] = 798, [1018] = 1018, [1019] = 1019, - [1020] = 1020, - [1021] = 1021, - [1022] = 1019, + [1020] = 1018, + [1021] = 1019, + [1022] = 1018, [1023] = 1023, - [1024] = 1021, - [1025] = 1025, + [1024] = 1024, + [1025] = 1019, [1026] = 1026, - [1027] = 969, - [1028] = 1028, + [1027] = 1019, + [1028] = 1018, [1029] = 1029, - [1030] = 767, + [1030] = 1030, [1031] = 1031, [1032] = 1032, [1033] = 1033, [1034] = 1034, - [1035] = 771, + [1035] = 1035, [1036] = 1036, - [1037] = 775, + [1037] = 1037, [1038] = 1038, [1039] = 1039, - [1040] = 770, + [1040] = 1040, [1041] = 1041, - [1042] = 1032, + [1042] = 1034, [1043] = 1043, [1044] = 1044, - [1045] = 1041, + [1045] = 1044, [1046] = 1046, [1047] = 1047, - [1048] = 769, + [1048] = 1048, [1049] = 1049, - [1050] = 1033, - [1051] = 776, - [1052] = 1041, - [1053] = 1053, - [1054] = 1034, - [1055] = 765, - [1056] = 768, - [1057] = 1032, + [1050] = 1047, + [1051] = 1051, + [1052] = 1052, + [1053] = 874, + [1054] = 1054, + [1055] = 1055, + [1056] = 1056, + [1057] = 1057, [1058] = 1058, [1059] = 1059, - [1060] = 763, - [1061] = 1061, - [1062] = 777, - [1063] = 1063, + [1060] = 1057, + [1061] = 813, + [1062] = 1057, + [1063] = 802, [1064] = 1064, - [1065] = 1038, - [1066] = 778, - [1067] = 1041, - [1068] = 1068, - [1069] = 1034, - [1070] = 1070, - [1071] = 1071, - [1072] = 1033, - [1073] = 1034, - [1074] = 773, - [1075] = 1041, + [1065] = 1065, + [1066] = 794, + [1067] = 798, + [1068] = 789, + [1069] = 831, + [1070] = 799, + [1071] = 804, + [1072] = 806, + [1073] = 1073, + [1074] = 809, + [1075] = 1057, [1076] = 1076, - [1077] = 1032, - [1078] = 1041, - [1079] = 1033, - [1080] = 1080, - [1081] = 1071, + [1077] = 1077, + [1078] = 786, + [1079] = 1079, + [1080] = 1058, + [1081] = 872, [1082] = 1082, - [1083] = 1083, - [1084] = 1038, - [1085] = 1038, + [1083] = 1055, + [1084] = 1084, + [1085] = 1085, [1086] = 1086, [1087] = 1087, - [1088] = 1088, - [1089] = 1089, - [1090] = 1090, + [1088] = 1054, + [1089] = 1054, + [1090] = 1057, [1091] = 1091, - [1092] = 1092, + [1092] = 1055, [1093] = 1093, - [1094] = 1094, - [1095] = 1093, - [1096] = 1096, - [1097] = 1097, - [1098] = 1093, + [1094] = 1055, + [1095] = 1095, + [1096] = 811, + [1097] = 1054, + [1098] = 1057, [1099] = 1099, - [1100] = 1100, + [1100] = 987, [1101] = 1101, [1102] = 1102, - [1103] = 1102, - [1104] = 1093, + [1103] = 1103, + [1104] = 1104, [1105] = 1105, [1106] = 1106, [1107] = 1107, [1108] = 1108, - [1109] = 1109, - [1110] = 1093, + [1109] = 1101, + [1110] = 1101, [1111] = 1111, [1112] = 1112, [1113] = 1113, [1114] = 1114, [1115] = 1115, - [1116] = 866, - [1117] = 885, + [1116] = 1101, + [1117] = 1117, [1118] = 1118, - [1119] = 906, - [1120] = 924, - [1121] = 926, - [1122] = 1122, + [1119] = 1119, + [1120] = 1101, + [1121] = 1121, + [1122] = 1119, [1123] = 1123, - [1124] = 1124, - [1125] = 1125, + [1124] = 894, + [1125] = 928, [1126] = 1126, [1127] = 1127, [1128] = 1128, [1129] = 1129, [1130] = 1130, - [1131] = 1131, - [1132] = 1129, - [1133] = 835, - [1134] = 1129, - [1135] = 1129, + [1131] = 891, + [1132] = 1132, + [1133] = 1133, + [1134] = 1134, + [1135] = 1135, [1136] = 1136, [1137] = 1137, [1138] = 1138, - [1139] = 843, - [1140] = 1140, - [1141] = 1141, + [1139] = 1139, + [1140] = 832, + [1141] = 785, [1142] = 1142, [1143] = 1143, - [1144] = 1142, - [1145] = 1142, + [1144] = 1144, + [1145] = 1145, [1146] = 1146, - [1147] = 1142, + [1147] = 1147, [1148] = 1148, - [1149] = 1149, - [1150] = 1148, - [1151] = 1140, - [1152] = 1146, - [1153] = 1142, - [1154] = 1143, - [1155] = 1143, - [1156] = 1143, - [1157] = 1148, - [1158] = 1142, - [1159] = 1146, - [1160] = 1160, - [1161] = 1161, - [1162] = 1162, - [1163] = 1163, - [1164] = 1164, - [1165] = 1165, - [1166] = 1166, - [1167] = 1167, - [1168] = 1168, - [1169] = 1169, - [1170] = 1170, - [1171] = 1171, - [1172] = 1172, - [1173] = 1173, - [1174] = 1174, - [1175] = 1175, - [1176] = 1176, + [1149] = 1147, + [1150] = 1147, + [1151] = 1147, + [1152] = 1152, + [1153] = 829, + [1154] = 825, + [1155] = 1155, + [1156] = 1156, + [1157] = 795, + [1158] = 1158, + [1159] = 796, + [1160] = 1148, + [1161] = 797, + [1162] = 793, + [1163] = 1156, + [1164] = 1156, + [1165] = 1152, + [1166] = 1156, + [1167] = 818, + [1168] = 1156, + [1169] = 1155, + [1170] = 1158, + [1171] = 785, + [1172] = 1152, + [1173] = 1156, + [1174] = 832, + [1175] = 1155, + [1176] = 1158, [1177] = 1177, - [1178] = 1178, - [1179] = 1179, + [1178] = 1155, + [1179] = 787, [1180] = 1180, [1181] = 1181, [1182] = 1182, [1183] = 1183, [1184] = 1184, [1185] = 1185, - [1186] = 1186, - [1187] = 1187, + [1186] = 1183, + [1187] = 1185, [1188] = 1188, [1189] = 1189, - [1190] = 1173, + [1190] = 1190, [1191] = 1191, - [1192] = 1192, + [1192] = 1190, [1193] = 1193, - [1194] = 1179, + [1194] = 1194, [1195] = 1191, [1196] = 1196, - [1197] = 689, + [1197] = 1197, [1198] = 1198, [1199] = 1199, - [1200] = 1193, - [1201] = 1161, - [1202] = 1193, - [1203] = 1172, - [1204] = 1171, + [1200] = 1200, + [1201] = 1201, + [1202] = 1202, + [1203] = 1203, + [1204] = 1180, [1205] = 1205, - [1206] = 1161, - [1207] = 1207, - [1208] = 1186, - [1209] = 1185, - [1210] = 1183, - [1211] = 1211, - [1212] = 1182, - [1213] = 1181, - [1214] = 1178, + [1206] = 1206, + [1207] = 716, + [1208] = 1208, + [1209] = 1209, + [1210] = 1210, + [1211] = 1183, + [1212] = 1212, + [1213] = 1185, + [1214] = 1214, [1215] = 1215, [1216] = 1216, - [1217] = 1177, + [1217] = 1217, [1218] = 1218, - [1219] = 1193, - [1220] = 1211, - [1221] = 1168, - [1222] = 689, - [1223] = 843, - [1224] = 1011, - [1225] = 1225, - [1226] = 1226, - [1227] = 1175, - [1228] = 1226, - [1229] = 1226, - [1230] = 1230, + [1219] = 1219, + [1220] = 1220, + [1221] = 1221, + [1222] = 1202, + [1223] = 1201, + [1224] = 1200, + [1225] = 1199, + [1226] = 1198, + [1227] = 1196, + [1228] = 1194, + [1229] = 1221, + [1230] = 1181, [1231] = 1231, - [1232] = 1232, + [1232] = 1183, [1233] = 1233, - [1234] = 1225, - [1235] = 842, - [1236] = 1180, - [1237] = 1237, - [1238] = 1162, - [1239] = 831, - [1240] = 1232, - [1241] = 1017, - [1242] = 1242, + [1234] = 1234, + [1235] = 1235, + [1236] = 1236, + [1237] = 716, + [1238] = 1238, + [1239] = 1239, + [1240] = 1240, + [1241] = 1239, + [1242] = 1238, [1243] = 1243, - [1244] = 1163, - [1245] = 1226, - [1246] = 1207, - [1247] = 1164, - [1248] = 1170, - [1249] = 810, - [1250] = 1225, - [1251] = 1010, - [1252] = 1169, - [1253] = 811, - [1254] = 1237, - [1255] = 1232, - [1256] = 1256, - [1257] = 1166, - [1258] = 817, - [1259] = 1192, - [1260] = 833, - [1261] = 835, - [1262] = 1225, - [1263] = 815, - [1264] = 1165, - [1265] = 814, - [1266] = 1174, - [1267] = 1267, - [1268] = 1012, - [1269] = 1269, + [1244] = 1193, + [1245] = 1245, + [1246] = 1206, + [1247] = 1247, + [1248] = 1248, + [1249] = 1205, + [1250] = 1184, + [1251] = 1216, + [1252] = 1212, + [1253] = 1035, + [1254] = 1248, + [1255] = 1240, + [1256] = 872, + [1257] = 1238, + [1258] = 1041, + [1259] = 1231, + [1260] = 1036, + [1261] = 1248, + [1262] = 1203, + [1263] = 1263, + [1264] = 1264, + [1265] = 1219, + [1266] = 1210, + [1267] = 1238, + [1268] = 1217, + [1269] = 1240, [1270] = 1270, - [1271] = 1270, - [1272] = 1270, - [1273] = 1270, - [1274] = 1274, - [1275] = 1275, + [1271] = 1033, + [1272] = 1214, + [1273] = 1240, + [1274] = 1215, + [1275] = 1197, [1276] = 1276, [1277] = 1277, - [1278] = 1276, - [1279] = 1276, - [1280] = 1276, - [1281] = 866, - [1282] = 1277, - [1283] = 1277, - [1284] = 1277, + [1278] = 1277, + [1279] = 1279, + [1280] = 1277, + [1281] = 1277, + [1282] = 1282, + [1283] = 1283, + [1284] = 1283, [1285] = 1285, - [1286] = 1286, - [1287] = 1287, - [1288] = 1288, - [1289] = 1289, - [1290] = 1290, + [1286] = 1285, + [1287] = 1283, + [1288] = 1285, + [1289] = 1285, + [1290] = 1283, [1291] = 1291, [1292] = 1292, [1293] = 1293, [1294] = 1294, - [1295] = 1289, + [1295] = 1295, [1296] = 1296, [1297] = 1297, [1298] = 1298, - [1299] = 1289, + [1299] = 1299, [1300] = 1300, - [1301] = 1301, + [1301] = 1295, [1302] = 1302, [1303] = 1303, [1304] = 1304, - [1305] = 1304, - [1306] = 1306, + [1305] = 1305, + [1306] = 1295, [1307] = 1307, - [1308] = 1304, + [1308] = 1308, [1309] = 1309, [1310] = 1310, - [1311] = 1309, + [1311] = 1311, [1312] = 1312, - [1313] = 1304, - [1314] = 1304, - [1315] = 1309, + [1313] = 1313, + [1314] = 1308, + [1315] = 1308, [1316] = 1316, [1317] = 1317, - [1318] = 1318, - [1319] = 1309, - [1320] = 1304, - [1321] = 1321, - [1322] = 1322, + [1318] = 1308, + [1319] = 1319, + [1320] = 1309, + [1321] = 1309, + [1322] = 1309, [1323] = 1323, [1324] = 1324, [1325] = 1325, [1326] = 1326, - [1327] = 1327, - [1328] = 1328, + [1327] = 1309, + [1328] = 1309, [1329] = 1329, [1330] = 1330, [1331] = 1331, @@ -4515,27 +4536,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1339] = 1339, [1340] = 1340, [1341] = 1341, - [1342] = 1327, + [1342] = 1342, [1343] = 1343, [1344] = 1344, [1345] = 1345, [1346] = 1346, - [1347] = 1327, - [1348] = 1348, - [1349] = 1349, + [1347] = 1332, + [1348] = 1332, + [1349] = 1332, [1350] = 1350, [1351] = 1351, [1352] = 1352, - [1353] = 1327, + [1353] = 1353, [1354] = 1354, [1355] = 1355, [1356] = 1356, [1357] = 1357, [1358] = 1358, - [1359] = 1358, + [1359] = 1359, [1360] = 1360, [1361] = 1361, - [1362] = 1358, + [1362] = 1362, [1363] = 1363, [1364] = 1364, [1365] = 1365, @@ -4543,60 +4564,60 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1367] = 1367, [1368] = 1368, [1369] = 1369, - [1370] = 1358, + [1370] = 1370, [1371] = 1371, [1372] = 1372, - [1373] = 1373, - [1374] = 1374, + [1373] = 1368, + [1374] = 1368, [1375] = 1375, - [1376] = 1375, - [1377] = 1373, - [1378] = 1375, - [1379] = 1373, + [1376] = 1368, + [1377] = 1377, + [1378] = 1378, + [1379] = 1379, [1380] = 1380, - [1381] = 1373, + [1381] = 1380, [1382] = 1382, - [1383] = 1374, + [1383] = 1382, [1384] = 1384, [1385] = 1385, - [1386] = 1374, + [1386] = 1380, [1387] = 1387, - [1388] = 1374, - [1389] = 1375, - [1390] = 1390, - [1391] = 1391, - [1392] = 1392, + [1388] = 1388, + [1389] = 1385, + [1390] = 1382, + [1391] = 1385, + [1392] = 1380, [1393] = 1393, [1394] = 1394, - [1395] = 1395, - [1396] = 1396, + [1395] = 1382, + [1396] = 1385, [1397] = 1397, [1398] = 1398, [1399] = 1399, - [1400] = 1400, - [1401] = 1397, - [1402] = 1400, - [1403] = 1392, - [1404] = 1392, + [1400] = 1398, + [1401] = 1401, + [1402] = 1402, + [1403] = 1403, + [1404] = 1404, [1405] = 1405, - [1406] = 1392, - [1407] = 1407, - [1408] = 1397, - [1409] = 1409, + [1406] = 1406, + [1407] = 1406, + [1408] = 1408, + [1409] = 1398, [1410] = 1410, [1411] = 1411, - [1412] = 1400, - [1413] = 1397, - [1414] = 1400, + [1412] = 1404, + [1413] = 1404, + [1414] = 1414, [1415] = 1415, - [1416] = 1416, + [1416] = 1398, [1417] = 1417, - [1418] = 1418, + [1418] = 1406, [1419] = 1419, [1420] = 1420, [1421] = 1421, - [1422] = 1422, - [1423] = 1423, + [1422] = 1406, + [1423] = 1404, [1424] = 1424, [1425] = 1425, [1426] = 1426, @@ -4623,7 +4644,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1447] = 1447, [1448] = 1448, [1449] = 1449, - [1450] = 1444, + [1450] = 1450, [1451] = 1451, [1452] = 1452, [1453] = 1453, @@ -4634,31 +4655,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1458] = 1458, [1459] = 1459, [1460] = 1460, - [1461] = 1458, + [1461] = 1461, [1462] = 1462, - [1463] = 1444, + [1463] = 1463, [1464] = 1464, [1465] = 1465, - [1466] = 1458, + [1466] = 1466, [1467] = 1467, - [1468] = 1444, + [1468] = 1468, [1469] = 1469, - [1470] = 1444, - [1471] = 1471, - [1472] = 1458, + [1470] = 1470, + [1471] = 1470, + [1472] = 1472, [1473] = 1473, - [1474] = 1474, + [1474] = 1458, [1475] = 1475, - [1476] = 1476, - [1477] = 1458, - [1478] = 1478, + [1476] = 1458, + [1477] = 1477, + [1478] = 1470, [1479] = 1458, - [1480] = 1444, - [1481] = 1481, - [1482] = 1482, - [1483] = 1483, - [1484] = 1484, - [1485] = 1485, + [1480] = 1480, + [1481] = 1458, + [1482] = 1470, + [1483] = 1470, + [1484] = 1470, + [1485] = 1458, [1486] = 1486, [1487] = 1487, [1488] = 1488, @@ -4682,74 +4703,74 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1506] = 1506, [1507] = 1507, [1508] = 1508, - [1509] = 1509, - [1510] = 1505, - [1511] = 1504, + [1509] = 1507, + [1510] = 1510, + [1511] = 1511, [1512] = 1512, [1513] = 1513, [1514] = 1514, [1515] = 1515, [1516] = 1516, - [1517] = 1514, - [1518] = 1514, + [1517] = 1513, + [1518] = 1518, [1519] = 1519, - [1520] = 1520, + [1520] = 1507, [1521] = 1521, - [1522] = 1502, + [1522] = 1507, [1523] = 1523, [1524] = 1524, - [1525] = 1525, - [1526] = 1514, - [1527] = 1503, - [1528] = 1525, - [1529] = 1529, - [1530] = 1504, - [1531] = 1505, - [1532] = 1532, + [1525] = 1516, + [1526] = 1526, + [1527] = 1512, + [1528] = 1528, + [1529] = 1515, + [1530] = 1530, + [1531] = 1514, + [1532] = 1507, [1533] = 1533, [1534] = 1534, - [1535] = 1503, + [1535] = 1535, [1536] = 1536, [1537] = 1537, - [1538] = 1514, - [1539] = 1539, - [1540] = 1507, - [1541] = 1507, - [1542] = 1508, - [1543] = 1543, - [1544] = 1502, - [1545] = 1507, + [1538] = 1538, + [1539] = 1518, + [1540] = 1519, + [1541] = 1518, + [1542] = 1542, + [1543] = 1514, + [1544] = 1536, + [1545] = 1513, [1546] = 1546, - [1547] = 1508, + [1547] = 1516, [1548] = 1514, - [1549] = 1514, - [1550] = 1508, - [1551] = 1503, - [1552] = 1552, + [1549] = 1549, + [1550] = 1550, + [1551] = 1516, + [1552] = 1507, [1553] = 1553, [1554] = 1554, - [1555] = 1505, - [1556] = 1515, - [1557] = 1557, - [1558] = 1525, - [1559] = 1504, + [1555] = 1518, + [1556] = 1556, + [1557] = 1507, + [1558] = 1536, + [1559] = 1559, [1560] = 1560, - [1561] = 1507, - [1562] = 1562, + [1561] = 1519, + [1562] = 1512, [1563] = 1563, [1564] = 1515, [1565] = 1565, - [1566] = 1566, - [1567] = 1567, - [1568] = 1568, + [1566] = 1513, + [1567] = 1519, + [1568] = 1513, [1569] = 1569, - [1570] = 1565, - [1571] = 1566, + [1570] = 1570, + [1571] = 1571, [1572] = 1572, - [1573] = 1565, + [1573] = 1573, [1574] = 1574, - [1575] = 1566, - [1576] = 1572, + [1575] = 1575, + [1576] = 1576, [1577] = 1577, [1578] = 1578, [1579] = 1579, @@ -4757,203 +4778,203 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1581] = 1581, [1582] = 1582, [1583] = 1583, - [1584] = 1568, - [1585] = 1566, + [1584] = 1584, + [1585] = 1585, [1586] = 1586, - [1587] = 1572, + [1587] = 1587, [1588] = 1588, [1589] = 1589, - [1590] = 1590, + [1590] = 1572, [1591] = 1591, - [1592] = 1578, + [1592] = 1592, [1593] = 1593, [1594] = 1594, - [1595] = 1595, - [1596] = 1594, + [1595] = 1578, + [1596] = 1596, [1597] = 1597, - [1598] = 1577, + [1598] = 1598, [1599] = 1599, [1600] = 1600, - [1601] = 1572, + [1601] = 1574, [1602] = 1602, [1603] = 1603, - [1604] = 1580, - [1605] = 1566, - [1606] = 1568, - [1607] = 1594, - [1608] = 1578, - [1609] = 1577, - [1610] = 1411, + [1604] = 1421, + [1605] = 1605, + [1606] = 1606, + [1607] = 1607, + [1608] = 1608, + [1609] = 1609, + [1610] = 1610, [1611] = 1611, [1612] = 1612, - [1613] = 1613, - [1614] = 1612, - [1615] = 1581, + [1613] = 1571, + [1614] = 1580, + [1615] = 1615, [1616] = 1616, - [1617] = 1617, - [1618] = 1590, - [1619] = 1565, - [1620] = 1590, + [1617] = 1578, + [1618] = 1618, + [1619] = 1619, + [1620] = 1581, [1621] = 1621, - [1622] = 1594, - [1623] = 1623, - [1624] = 1612, - [1625] = 1572, - [1626] = 1594, - [1627] = 1568, - [1628] = 1578, - [1629] = 1629, - [1630] = 1630, - [1631] = 1594, - [1632] = 1632, + [1622] = 1622, + [1623] = 1573, + [1624] = 1624, + [1625] = 1612, + [1626] = 1615, + [1627] = 1616, + [1628] = 1600, + [1629] = 1619, + [1630] = 1610, + [1631] = 1618, + [1632] = 1571, [1633] = 1633, - [1634] = 1634, + [1634] = 1596, [1635] = 1635, - [1636] = 1577, - [1637] = 1637, + [1636] = 1580, + [1637] = 1573, [1638] = 1638, - [1639] = 1578, - [1640] = 1640, - [1641] = 1641, - [1642] = 1617, - [1643] = 1581, - [1644] = 1568, - [1645] = 1645, - [1646] = 1590, - [1647] = 1647, - [1648] = 1648, + [1639] = 1596, + [1640] = 1612, + [1641] = 1612, + [1642] = 1615, + [1643] = 1616, + [1644] = 1619, + [1645] = 1573, + [1646] = 1618, + [1647] = 1615, + [1648] = 1571, [1649] = 1649, - [1650] = 1611, - [1651] = 1617, - [1652] = 1572, - [1653] = 1566, - [1654] = 1612, - [1655] = 1568, - [1656] = 1656, - [1657] = 1657, - [1658] = 1658, - [1659] = 1640, + [1650] = 1596, + [1651] = 1602, + [1652] = 1652, + [1653] = 1573, + [1654] = 1654, + [1655] = 1574, + [1656] = 1612, + [1657] = 1615, + [1658] = 1616, + [1659] = 1577, [1660] = 1660, - [1661] = 1565, - [1662] = 1577, - [1663] = 1663, - [1664] = 1613, - [1665] = 1665, - [1666] = 1666, - [1667] = 1590, - [1668] = 1590, - [1669] = 1669, + [1661] = 1618, + [1662] = 1619, + [1663] = 1619, + [1664] = 1664, + [1665] = 1618, + [1666] = 1571, + [1667] = 1667, + [1668] = 1596, + [1669] = 1616, [1670] = 1670, - [1671] = 1671, - [1672] = 1567, - [1673] = 1595, + [1671] = 1652, + [1672] = 1581, + [1673] = 1673, [1674] = 1674, - [1675] = 1675, - [1676] = 1676, + [1675] = 1619, + [1676] = 1580, [1677] = 1677, - [1678] = 1613, - [1679] = 1583, - [1680] = 1611, - [1681] = 1578, - [1682] = 1577, - [1683] = 1565, - [1684] = 1595, - [1685] = 1685, - [1686] = 1580, - [1687] = 1687, - [1688] = 1688, - [1689] = 1689, - [1690] = 1690, - [1691] = 1691, - [1692] = 1690, + [1678] = 1596, + [1679] = 1679, + [1680] = 1680, + [1681] = 1681, + [1682] = 1682, + [1683] = 1618, + [1684] = 1684, + [1685] = 1571, + [1686] = 1573, + [1687] = 1602, + [1688] = 1616, + [1689] = 1572, + [1690] = 1615, + [1691] = 1612, + [1692] = 1600, [1693] = 1693, - [1694] = 1687, - [1695] = 1689, + [1694] = 1694, + [1695] = 1693, [1696] = 1696, [1697] = 1697, [1698] = 1698, [1699] = 1699, [1700] = 1700, - [1701] = 1696, + [1701] = 1701, [1702] = 1702, - [1703] = 1688, - [1704] = 1704, + [1703] = 1703, + [1704] = 1700, [1705] = 1705, - [1706] = 1687, + [1706] = 1706, [1707] = 1707, [1708] = 1708, - [1709] = 1689, - [1710] = 1710, - [1711] = 1702, + [1709] = 1701, + [1710] = 1708, + [1711] = 1711, [1712] = 1712, - [1713] = 1713, + [1713] = 1701, [1714] = 1714, - [1715] = 1715, - [1716] = 1716, + [1715] = 1698, + [1716] = 1708, [1717] = 1717, - [1718] = 1699, - [1719] = 1719, - [1720] = 1719, - [1721] = 1696, - [1722] = 1702, - [1723] = 1688, - [1724] = 1724, - [1725] = 1725, - [1726] = 1726, - [1727] = 1699, - [1728] = 1728, - [1729] = 1719, - [1730] = 1702, - [1731] = 1731, - [1732] = 1696, - [1733] = 1691, - [1734] = 1689, - [1735] = 1690, - [1736] = 1710, - [1737] = 1688, - [1738] = 1697, - [1739] = 1739, - [1740] = 1690, - [1741] = 1689, - [1742] = 1717, - [1743] = 1702, - [1744] = 1719, - [1745] = 1716, - [1746] = 1699, + [1718] = 1694, + [1719] = 1711, + [1720] = 1712, + [1721] = 1708, + [1722] = 1722, + [1723] = 1723, + [1724] = 1701, + [1725] = 1699, + [1726] = 1700, + [1727] = 1698, + [1728] = 1697, + [1729] = 1696, + [1730] = 1693, + [1731] = 1693, + [1732] = 1694, + [1733] = 1733, + [1734] = 1734, + [1735] = 1697, + [1736] = 1708, + [1737] = 1714, + [1738] = 1711, + [1739] = 1699, + [1740] = 1740, + [1741] = 1741, + [1742] = 1711, + [1743] = 1743, + [1744] = 1701, + [1745] = 1745, + [1746] = 1746, [1747] = 1747, [1748] = 1748, - [1749] = 1749, - [1750] = 1697, - [1751] = 1751, - [1752] = 1752, + [1749] = 1699, + [1750] = 1698, + [1751] = 1697, + [1752] = 1714, [1753] = 1753, - [1754] = 1690, - [1755] = 1699, - [1756] = 1717, - [1757] = 1702, + [1754] = 1696, + [1755] = 1755, + [1756] = 1694, + [1757] = 1693, [1758] = 1758, - [1759] = 1716, - [1760] = 1696, + [1759] = 1714, + [1760] = 1706, [1761] = 1761, - [1762] = 1699, - [1763] = 1699, - [1764] = 1687, - [1765] = 1688, + [1762] = 1762, + [1763] = 1694, + [1764] = 1764, + [1765] = 1694, [1766] = 1766, - [1767] = 1691, - [1768] = 1716, - [1769] = 1702, - [1770] = 1697, - [1771] = 1717, - [1772] = 1717, - [1773] = 1773, - [1774] = 1697, + [1767] = 1693, + [1768] = 1693, + [1769] = 1699, + [1770] = 1700, + [1771] = 1712, + [1772] = 1712, + [1773] = 1700, + [1774] = 1774, [1775] = 1775, - [1776] = 1776, + [1776] = 1694, [1777] = 1777, - [1778] = 1778, + [1778] = 1697, [1779] = 1779, - [1780] = 1780, + [1780] = 1712, [1781] = 1781, [1782] = 1782, [1783] = 1783, @@ -4964,236 +4985,246 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1788] = 1788, [1789] = 1789, [1790] = 1790, - [1791] = 1791, + [1791] = 1035, [1792] = 1792, [1793] = 1793, - [1794] = 1791, - [1795] = 1795, + [1794] = 1794, + [1795] = 1784, [1796] = 1796, [1797] = 1797, - [1798] = 1798, - [1799] = 1799, - [1800] = 1795, - [1801] = 1801, - [1802] = 1782, - [1803] = 1803, + [1798] = 1033, + [1799] = 1790, + [1800] = 1800, + [1801] = 672, + [1802] = 1802, + [1803] = 1802, [1804] = 1804, - [1805] = 1805, + [1805] = 1787, [1806] = 1806, - [1807] = 1783, - [1808] = 1808, - [1809] = 1809, - [1810] = 1796, + [1807] = 1807, + [1808] = 1790, + [1809] = 1794, + [1810] = 1810, [1811] = 1811, [1812] = 1812, [1813] = 1813, - [1814] = 1814, + [1814] = 1785, [1815] = 1815, - [1816] = 1796, + [1816] = 1787, [1817] = 1817, - [1818] = 1818, - [1819] = 1795, - [1820] = 1775, - [1821] = 1821, - [1822] = 1822, + [1818] = 1784, + [1819] = 1796, + [1820] = 1820, + [1821] = 1794, + [1822] = 1815, [1823] = 1823, - [1824] = 1793, - [1825] = 1783, + [1824] = 1811, + [1825] = 1825, [1826] = 1826, - [1827] = 1827, + [1827] = 1815, [1828] = 1828, [1829] = 1829, - [1830] = 1830, + [1830] = 1800, [1831] = 1831, - [1832] = 1796, - [1833] = 1795, - [1834] = 1834, - [1835] = 1783, - [1836] = 1836, + [1832] = 1832, + [1833] = 1794, + [1834] = 1036, + [1835] = 1820, + [1836] = 1815, [1837] = 1837, - [1838] = 1838, - [1839] = 1793, - [1840] = 1840, - [1841] = 1787, - [1842] = 1793, - [1843] = 1828, - [1844] = 1844, - [1845] = 1822, - [1846] = 1792, - [1847] = 1781, - [1848] = 1775, + [1838] = 1811, + [1839] = 1839, + [1840] = 1811, + [1841] = 1815, + [1842] = 1831, + [1843] = 1794, + [1844] = 1804, + [1845] = 1845, + [1846] = 1846, + [1847] = 1832, + [1848] = 1848, [1849] = 1849, [1850] = 1850, - [1851] = 1799, + [1851] = 1851, [1852] = 1852, - [1853] = 1809, - [1854] = 1789, - [1855] = 1834, - [1856] = 1784, - [1857] = 1783, - [1858] = 1858, - [1859] = 1859, + [1853] = 1839, + [1854] = 1854, + [1855] = 1851, + [1856] = 1811, + [1857] = 1786, + [1858] = 1802, + [1859] = 1848, [1860] = 1860, - [1861] = 1801, - [1862] = 1011, + [1861] = 1851, + [1862] = 1826, [1863] = 1863, - [1864] = 1864, - [1865] = 1865, + [1864] = 1848, + [1865] = 1851, [1866] = 1866, - [1867] = 1867, + [1867] = 1811, [1868] = 1868, [1869] = 1869, [1870] = 1870, [1871] = 1871, [1872] = 1872, - [1873] = 1840, + [1873] = 1873, [1874] = 1874, - [1875] = 1812, - [1876] = 1796, - [1877] = 1877, - [1878] = 1010, - [1879] = 1879, - [1880] = 1782, - [1881] = 1881, + [1875] = 1875, + [1876] = 1876, + [1877] = 1787, + [1878] = 1878, + [1879] = 1806, + [1880] = 1839, + [1881] = 1793, [1882] = 1882, [1883] = 1883, [1884] = 1884, - [1885] = 1809, - [1886] = 1882, - [1887] = 1782, + [1885] = 1885, + [1886] = 1886, + [1887] = 1887, [1888] = 1888, - [1889] = 1889, - [1890] = 1890, - [1891] = 1795, - [1892] = 1860, - [1893] = 1893, + [1889] = 1797, + [1890] = 1786, + [1891] = 1891, + [1892] = 1794, + [1893] = 1883, [1894] = 1894, - [1895] = 1879, - [1896] = 1822, - [1897] = 1795, - [1898] = 1805, + [1895] = 1806, + [1896] = 1787, + [1897] = 1897, + [1898] = 1898, [1899] = 1899, [1900] = 1900, - [1901] = 1901, + [1901] = 1802, [1902] = 1902, - [1903] = 1791, - [1904] = 1850, - [1905] = 1905, - [1906] = 1906, + [1903] = 1903, + [1904] = 1793, + [1905] = 1797, + [1906] = 1794, [1907] = 1907, - [1908] = 1812, - [1909] = 1799, - [1910] = 671, - [1911] = 1801, - [1912] = 1789, - [1913] = 1913, - [1914] = 1860, + [1908] = 1908, + [1909] = 1909, + [1910] = 1910, + [1911] = 1911, + [1912] = 1912, + [1913] = 1804, + [1914] = 1914, [1915] = 1915, [1916] = 1916, - [1917] = 1837, - [1918] = 1838, - [1919] = 1919, - [1920] = 1801, - [1921] = 1799, - [1922] = 1805, - [1923] = 1781, - [1924] = 1806, - [1925] = 1809, - [1926] = 1792, - [1927] = 1796, - [1928] = 1928, + [1917] = 1820, + [1918] = 1918, + [1919] = 1888, + [1920] = 1790, + [1921] = 1815, + [1922] = 1832, + [1923] = 1802, + [1924] = 1924, + [1925] = 1925, + [1926] = 1845, + [1927] = 1846, + [1928] = 1041, [1929] = 1929, - [1930] = 1930, - [1931] = 1812, - [1932] = 1932, + [1930] = 1831, + [1931] = 1931, + [1932] = 1784, [1933] = 1933, - [1934] = 1775, - [1935] = 1822, + [1934] = 1934, + [1935] = 1854, [1936] = 1936, - [1937] = 1793, - [1938] = 1884, + [1937] = 1937, + [1938] = 1938, [1939] = 1939, - [1940] = 1882, - [1941] = 1884, - [1942] = 1796, + [1940] = 1940, + [1941] = 1941, + [1942] = 1942, [1943] = 1943, [1944] = 1944, - [1945] = 1883, - [1946] = 1809, - [1947] = 1947, - [1948] = 1837, - [1949] = 1838, + [1945] = 1945, + [1946] = 1796, + [1947] = 1883, + [1948] = 1948, + [1949] = 1806, [1950] = 1950, - [1951] = 1882, - [1952] = 1795, - [1953] = 1791, - [1954] = 1792, + [1951] = 1807, + [1952] = 1815, + [1953] = 1953, + [1954] = 1954, [1955] = 1955, - [1956] = 1782, - [1957] = 1957, - [1958] = 1958, + [1956] = 1956, + [1957] = 1845, + [1958] = 1846, [1959] = 1959, [1960] = 1960, [1961] = 1961, - [1962] = 1962, - [1963] = 1963, - [1964] = 1964, + [1962] = 1831, + [1963] = 1854, + [1964] = 1832, [1965] = 1965, - [1966] = 1966, - [1967] = 1936, + [1966] = 1820, + [1967] = 1783, [1968] = 1968, - [1969] = 1837, + [1969] = 1969, [1970] = 1970, - [1971] = 1971, - [1972] = 1882, - [1973] = 1837, - [1974] = 1837, - [1975] = 670, - [1976] = 1976, - [1977] = 1782, - [1978] = 1830, - [1979] = 1979, - [1980] = 1778, - [1981] = 1829, - [1982] = 1828, - [1983] = 1829, - [1984] = 1830, - [1985] = 1809, - [1986] = 1834, - [1987] = 1840, - [1988] = 1787, - [1989] = 1894, + [1971] = 1945, + [1972] = 1789, + [1973] = 1783, + [1974] = 1974, + [1975] = 1788, + [1976] = 1839, + [1977] = 1789, + [1978] = 1845, + [1979] = 1848, + [1980] = 1826, + [1981] = 1800, + [1982] = 1845, + [1983] = 1845, + [1984] = 1984, + [1985] = 1985, + [1986] = 1986, + [1987] = 1807, + [1988] = 1851, + [1989] = 1989, [1990] = 1990, - [1991] = 1991, - [1992] = 1992, - [1993] = 1787, - [1994] = 1994, - [1995] = 1995, - [1996] = 1860, - [1997] = 1860, - [1998] = 1781, - [1999] = 1778, - [2000] = 1806, - [2001] = 1850, - [2002] = 1894, - [2003] = 1805, - [2004] = 1017, - [2005] = 1012, - [2006] = 2006, - [2007] = 1806, - [2008] = 1789, - [2009] = 1783, - [2010] = 1894, - [2011] = 1784, - [2012] = 2012, - [2013] = 1783, - [2014] = 1838, - [2015] = 1778, - [2016] = 1860, - [2017] = 2012, - [2018] = 1778, - [2019] = 1784, - [2020] = 1837, + [1991] = 1850, + [1992] = 1811, + [1993] = 1993, + [1994] = 1945, + [1995] = 1851, + [1996] = 1796, + [1997] = 1786, + [1998] = 1898, + [1999] = 1965, + [2000] = 2000, + [2001] = 1804, + [2002] = 1788, + [2003] = 2003, + [2004] = 2004, + [2005] = 2005, + [2006] = 1802, + [2007] = 2007, + [2008] = 1854, + [2009] = 1990, + [2010] = 1793, + [2011] = 1797, + [2012] = 1965, + [2013] = 1990, + [2014] = 1884, + [2015] = 1790, + [2016] = 2016, + [2017] = 1806, + [2018] = 2018, + [2019] = 673, + [2020] = 1965, + [2021] = 2021, + [2022] = 1989, + [2023] = 2023, + [2024] = 1800, + [2025] = 1990, + [2026] = 2026, + [2027] = 1787, + [2028] = 1990, + [2029] = 1846, + [2030] = 1845, }; static TSCharacterRange sym_number_literal_character_set_13[] = { @@ -5480,19 +5511,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(107); END_STATE(); case 11: - if (lookahead == '\n') SKIP(53); + if (lookahead == '\n') SKIP(52); END_STATE(); case 12: - if (lookahead == '\n') SKIP(53); + if (lookahead == '\n') SKIP(52); if (lookahead == '\r') SKIP(11); if (lookahead == 'U') ADVANCE(115); if (lookahead == 'u') ADVANCE(107); END_STATE(); case 13: - if (lookahead == '\n') SKIP(52); + if (lookahead == '\n') SKIP(53); END_STATE(); case 14: - if (lookahead == '\n') SKIP(52); + if (lookahead == '\n') SKIP(53); if (lookahead == '\r') SKIP(13); if (lookahead == 'U') ADVANCE(115); if (lookahead == 'u') ADVANCE(107); @@ -5580,26 +5611,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(107); END_STATE(); case 30: - if (lookahead == '\n') SKIP(58); - if (lookahead == '\'') ADVANCE(277); - if (lookahead == '/') ADVANCE(280); - if (lookahead == '\\') ADVANCE(279); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(281); - if (lookahead != 0) ADVANCE(278); - END_STATE(); - case 31: - if (lookahead == '\n') ADVANCE(293); - if (lookahead == '\r') ADVANCE(292); - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); - if (lookahead == 'x') ADVANCE(104); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(295); - if (lookahead != 0) ADVANCE(292); - END_STATE(); - case 32: if (lookahead == '\n') ADVANCE(122); - if (lookahead == '\r') ADVANCE(36); + if (lookahead == '\r') ADVANCE(34); if (lookahead == '(') ADVANCE(124); if (lookahead == '/') ADVANCE(150); if (lookahead == '\\') ADVANCE(145); @@ -5607,25 +5620,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(66); if (lookahead != 0) ADVANCE(152); END_STATE(); - case 33: + case 31: if (lookahead == '\n') ADVANCE(122); - if (lookahead == '\r') ADVANCE(36); + if (lookahead == '\r') ADVANCE(34); if (lookahead == '/') ADVANCE(150); if (lookahead == '\\') ADVANCE(145); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(66); if (lookahead != 0) ADVANCE(152); END_STATE(); - case 34: + case 32: if (lookahead == '\n') ADVANCE(122); - if (lookahead == '\r') ADVANCE(35); + if (lookahead == '\r') ADVANCE(33); if (lookahead == '(') ADVANCE(185); if (lookahead == '/') ADVANCE(60); if (lookahead == '\\') SKIP(39); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(59); END_STATE(); - case 35: + case 33: if (lookahead == '\n') ADVANCE(122); if (lookahead == '(') ADVANCE(185); if (lookahead == '/') ADVANCE(60); @@ -5633,7 +5646,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(59); END_STATE(); - case 36: + case 34: if (lookahead == '\n') ADVANCE(122); if (lookahead == '/') ADVANCE(150); if (lookahead == '\\') ADVANCE(145); @@ -5641,15 +5654,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(66); if (lookahead != 0) ADVANCE(152); END_STATE(); - case 37: + case 35: if (lookahead == '\n') SKIP(55); if (lookahead == '"') ADVANCE(286); if (lookahead == '/') ADVANCE(287); - if (lookahead == '\\') ADVANCE(31); + if (lookahead == '\\') ADVANCE(36); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(290); if (lookahead != 0) ADVANCE(291); END_STATE(); + case 36: + if (lookahead == '\n') ADVANCE(293); + if (lookahead == '\r') ADVANCE(292); + if (lookahead == 'U') ADVANCE(116); + if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'x') ADVANCE(104); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(295); + if (lookahead != 0) ADVANCE(292); + END_STATE(); + case 37: + if (lookahead == '\n') SKIP(58); + if (lookahead == '\'') ADVANCE(277); + if (lookahead == '/') ADVANCE(280); + if (lookahead == '\\') ADVANCE(279); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(281); + if (lookahead != 0) ADVANCE(278); + END_STATE(); case 38: if (lookahead == '\n') SKIP(59); END_STATE(); @@ -5965,34 +5996,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); case 52: - ADVANCE_MAP( - '!', 68, - '#', 80, - '%', 203, - '&', 212, - '(', 185, - ')', 127, - '*', 199, - '+', 194, - ',', 126, - '-', 189, - '/', 201, - ';', 226, - '<', 221, - '=', 236, - '>', 217, - '[', 233, - '\\', 14, - '^', 209, - '{', 230, - '|', 208, - '}', 231, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(52); - if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); - END_STATE(); - case 53: ADVANCE_MAP( '!', 68, '#', 76, @@ -6019,6 +6022,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '|', 207, '}', 231, ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(52); + if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); + END_STATE(); + case 53: + ADVANCE_MAP( + '!', 68, + '#', 78, + '%', 203, + '&', 212, + '(', 185, + ')', 127, + '*', 199, + '+', 194, + ',', 126, + '-', 189, + '/', 201, + ';', 226, + '<', 221, + '=', 236, + '>', 217, + '[', 233, + '\\', 14, + '^', 209, + '{', 230, + '|', 208, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(53); if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); @@ -6038,7 +6068,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 55: if (lookahead == '"') ADVANCE(286); if (lookahead == '/') ADVANCE(60); - if (lookahead == '\\') ADVANCE(31); + if (lookahead == '\\') ADVANCE(36); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(55); END_STATE(); @@ -6052,10 +6082,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); case 57: - if (lookahead == '#') ADVANCE(78); + if (lookahead == '#') ADVANCE(80); if (lookahead == '/') ADVANCE(60); if (lookahead == '[') ADVANCE(73); if (lookahead == '\\') ADVANCE(16); + if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(57); if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); @@ -6063,7 +6094,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 58: if (lookahead == '\'') ADVANCE(277); if (lookahead == '/') ADVANCE(60); - if (lookahead == '\\') ADVANCE(31); + if (lookahead == '\\') ADVANCE(36); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(58); END_STATE(); @@ -7556,7 +7587,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 281: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(31); + if (lookahead == '\\') ADVANCE(36); END_STATE(); case 282: ACCEPT_TOKEN(anon_sym_L_DQUOTE); @@ -7622,7 +7653,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 293: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(31); + if (lookahead == '\\') ADVANCE(36); END_STATE(); case 294: ACCEPT_TOKEN(sym_escape_sequence); @@ -8625,266 +8656,268 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(318); END_STATE(); case 245: - if (lookahead == 'o') ADVANCE(319); + if (lookahead == 'a') ADVANCE(319); + if (lookahead == 'o') ADVANCE(320); END_STATE(); case 246: ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 247: - if (lookahead == '6') ADVANCE(320); + if (lookahead == '6') ADVANCE(321); END_STATE(); case 248: - if (lookahead == '2') ADVANCE(321); + if (lookahead == '2') ADVANCE(322); END_STATE(); case 249: - if (lookahead == '4') ADVANCE(322); + if (lookahead == '4') ADVANCE(323); END_STATE(); case 250: - if (lookahead == '_') ADVANCE(323); + if (lookahead == '_') ADVANCE(324); END_STATE(); case 251: - if (lookahead == 't') ADVANCE(324); + if (lookahead == 't') ADVANCE(325); END_STATE(); case 252: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == 'e') ADVANCE(325); + if (lookahead == 'e') ADVANCE(326); END_STATE(); case 253: - if (lookahead == 'n') ADVANCE(326); + if (lookahead == 'n') ADVANCE(327); END_STATE(); case 254: - if (lookahead == 'l') ADVANCE(327); + if (lookahead == 'l') ADVANCE(328); END_STATE(); case 255: - if (lookahead == 'e') ADVANCE(328); + if (lookahead == 'e') ADVANCE(329); END_STATE(); case 256: if (lookahead == 'e') ADVANCE(171); END_STATE(); case 257: - if (lookahead == 'n') ADVANCE(329); + if (lookahead == 'n') ADVANCE(330); END_STATE(); case 258: - if (lookahead == 'e') ADVANCE(330); + if (lookahead == 'e') ADVANCE(331); END_STATE(); case 259: - if (lookahead == '_') ADVANCE(331); + if (lookahead == '_') ADVANCE(332); END_STATE(); case 260: - if (lookahead == '_') ADVANCE(332); + if (lookahead == '_') ADVANCE(333); END_STATE(); case 261: - if (lookahead == '_') ADVANCE(333); + if (lookahead == '_') ADVANCE(334); END_STATE(); case 262: if (lookahead == 't') ADVANCE(171); END_STATE(); case 263: - if (lookahead == 'r') ADVANCE(334); + if (lookahead == 'r') ADVANCE(335); END_STATE(); case 264: - if (lookahead == 'l') ADVANCE(335); + if (lookahead == 'l') ADVANCE(336); END_STATE(); case 265: - if (lookahead == 'u') ADVANCE(336); + if (lookahead == 'u') ADVANCE(337); END_STATE(); case 266: - if (lookahead == 't') ADVANCE(337); + if (lookahead == 't') ADVANCE(338); END_STATE(); case 267: - if (lookahead == 't') ADVANCE(338); + if (lookahead == 't') ADVANCE(339); END_STATE(); case 268: - if (lookahead == 'f') ADVANCE(339); + if (lookahead == 'f') ADVANCE(340); END_STATE(); case 269: - if (lookahead == 't') ADVANCE(340); + if (lookahead == 't') ADVANCE(341); END_STATE(); case 270: - if (lookahead == 'i') ADVANCE(341); + if (lookahead == 'i') ADVANCE(342); END_STATE(); case 271: - if (lookahead == 'n') ADVANCE(342); + if (lookahead == 'n') ADVANCE(343); END_STATE(); case 272: ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 273: - if (lookahead == 'd') ADVANCE(343); + if (lookahead == 'd') ADVANCE(344); END_STATE(); case 274: if (lookahead == 't') ADVANCE(171); END_STATE(); case 275: - if (lookahead == 'f') ADVANCE(344); + if (lookahead == 'f') ADVANCE(345); END_STATE(); case 276: - if (lookahead == '_') ADVANCE(345); + if (lookahead == '_') ADVANCE(346); END_STATE(); case 277: - if (lookahead == 'c') ADVANCE(346); + if (lookahead == 'c') ADVANCE(347); END_STATE(); case 278: - if (lookahead == 't') ADVANCE(347); + if (lookahead == 't') ADVANCE(348); END_STATE(); case 279: - if (lookahead == 'h') ADVANCE(348); + if (lookahead == 'h') ADVANCE(349); END_STATE(); case 280: - if (lookahead == 'd') ADVANCE(349); + if (lookahead == 'd') ADVANCE(350); END_STATE(); case 281: - if (lookahead == 'e') ADVANCE(350); + if (lookahead == 'e') ADVANCE(351); END_STATE(); case 282: - if (lookahead == '6') ADVANCE(351); + if (lookahead == '6') ADVANCE(352); END_STATE(); case 283: - if (lookahead == '2') ADVANCE(352); + if (lookahead == '2') ADVANCE(353); END_STATE(); case 284: - if (lookahead == '4') ADVANCE(353); + if (lookahead == '4') ADVANCE(354); END_STATE(); case 285: - if (lookahead == '_') ADVANCE(354); + if (lookahead == '_') ADVANCE(355); END_STATE(); case 286: - if (lookahead == 't') ADVANCE(355); + if (lookahead == 't') ADVANCE(356); END_STATE(); case 287: ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 288: - if (lookahead == 'n') ADVANCE(356); + if (lookahead == 'n') ADVANCE(357); END_STATE(); case 289: - if (lookahead == 'i') ADVANCE(357); + if (lookahead == 'i') ADVANCE(358); END_STATE(); case 290: ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 291: - if (lookahead == 'o') ADVANCE(358); + if (lookahead == 'a') ADVANCE(359); + if (lookahead == 'o') ADVANCE(360); END_STATE(); case 292: - if (lookahead == 'c') ADVANCE(359); + if (lookahead == 'c') ADVANCE(361); END_STATE(); case 293: - if (lookahead == 'i') ADVANCE(360); + if (lookahead == 'i') ADVANCE(362); END_STATE(); case 294: - if (lookahead == 'u') ADVANCE(361); + if (lookahead == 'u') ADVANCE(363); END_STATE(); case 295: - if (lookahead == 'n') ADVANCE(362); + if (lookahead == 'n') ADVANCE(364); END_STATE(); case 296: - if (lookahead == '_') ADVANCE(363); + if (lookahead == '_') ADVANCE(365); END_STATE(); case 297: - if (lookahead == 'i') ADVANCE(364); + if (lookahead == 'i') ADVANCE(366); END_STATE(); case 298: - if (lookahead == 'd') ADVANCE(365); + if (lookahead == 'd') ADVANCE(367); END_STATE(); case 299: - if (lookahead == 'l') ADVANCE(366); + if (lookahead == 'l') ADVANCE(368); END_STATE(); case 300: - if (lookahead == 'a') ADVANCE(367); + if (lookahead == 'a') ADVANCE(369); END_STATE(); case 301: - if (lookahead == 's') ADVANCE(368); + if (lookahead == 's') ADVANCE(370); END_STATE(); case 302: - if (lookahead == 'p') ADVANCE(369); + if (lookahead == 'p') ADVANCE(371); END_STATE(); case 303: - if (lookahead == 'n') ADVANCE(370); + if (lookahead == 'n') ADVANCE(372); END_STATE(); case 304: - if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'c') ADVANCE(373); END_STATE(); case 305: - if (lookahead == 'l') ADVANCE(372); + if (lookahead == 'l') ADVANCE(374); END_STATE(); case 306: - if (lookahead == 'e') ADVANCE(373); + if (lookahead == 'e') ADVANCE(375); END_STATE(); case 307: - if (lookahead == 'n') ADVANCE(374); + if (lookahead == 'n') ADVANCE(376); END_STATE(); case 308: - if (lookahead == 'e') ADVANCE(375); + if (lookahead == 'e') ADVANCE(377); END_STATE(); case 309: - if (lookahead == 'r') ADVANCE(376); + if (lookahead == 'r') ADVANCE(378); END_STATE(); case 310: ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); END_STATE(); case 311: - if (lookahead == 'a') ADVANCE(377); + if (lookahead == 'a') ADVANCE(379); END_STATE(); case 312: - if (lookahead == 'c') ADVANCE(378); + if (lookahead == 'c') ADVANCE(380); END_STATE(); case 313: - if (lookahead == 'a') ADVANCE(379); + if (lookahead == 'a') ADVANCE(381); END_STATE(); case 314: - if (lookahead == 'i') ADVANCE(380); + if (lookahead == 'i') ADVANCE(382); END_STATE(); case 315: ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); END_STATE(); case 316: - if (lookahead == 'o') ADVANCE(381); + if (lookahead == 'o') ADVANCE(383); END_STATE(); case 317: - if (lookahead == 'o') ADVANCE(382); + if (lookahead == 'o') ADVANCE(384); END_STATE(); case 318: - if (lookahead == 'g') ADVANCE(383); + if (lookahead == 'g') ADVANCE(385); END_STATE(); case 319: - if (lookahead == 'f') ADVANCE(384); + if (lookahead == 's') ADVANCE(386); END_STATE(); case 320: - if (lookahead == '_') ADVANCE(385); + if (lookahead == 'f') ADVANCE(387); END_STATE(); case 321: - if (lookahead == '_') ADVANCE(386); + if (lookahead == '_') ADVANCE(388); END_STATE(); case 322: - if (lookahead == '_') ADVANCE(387); + if (lookahead == '_') ADVANCE(389); END_STATE(); case 323: - if (lookahead == 't') ADVANCE(171); + if (lookahead == '_') ADVANCE(390); END_STATE(); case 324: - if (lookahead == 'r') ADVANCE(388); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 325: - if (lookahead == 'x') ADVANCE(389); + if (lookahead == 'r') ADVANCE(391); END_STATE(); case 326: - if (lookahead == 'u') ADVANCE(390); + if (lookahead == 'x') ADVANCE(392); END_STATE(); case 327: - if (lookahead == 't') ADVANCE(391); + if (lookahead == 'u') ADVANCE(393); END_STATE(); case 328: - if (lookahead == 'd') ADVANCE(392); + if (lookahead == 't') ADVANCE(394); END_STATE(); case 329: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == 'd') ADVANCE(395); END_STATE(); case 330: - ACCEPT_TOKEN(anon_sym_inline); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 331: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 332: if (lookahead == 't') ADVANCE(171); @@ -8893,487 +8926,499 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(171); END_STATE(); case 334: - if (lookahead == '_') ADVANCE(393); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 335: - if (lookahead == 'i') ADVANCE(394); + if (lookahead == '_') ADVANCE(396); END_STATE(); case 336: - if (lookahead == 'r') ADVANCE(395); + if (lookahead == 'i') ADVANCE(397); END_STATE(); case 337: - if (lookahead == 'r') ADVANCE(396); + if (lookahead == 'r') ADVANCE(398); END_STATE(); case 338: - if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(399); END_STATE(); case 339: - if (lookahead == 'f') ADVANCE(398); + if (lookahead == 'o') ADVANCE(400); END_STATE(); case 340: - if (lookahead == 'e') ADVANCE(399); + if (lookahead == 'f') ADVANCE(401); END_STATE(); case 341: - if (lookahead == 'c') ADVANCE(400); + if (lookahead == 'e') ADVANCE(402); END_STATE(); case 342: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'c') ADVANCE(403); END_STATE(); case 343: - ACCEPT_TOKEN(anon_sym_signed); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 344: - ACCEPT_TOKEN(anon_sym_sizeof); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 345: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 346: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 347: - ACCEPT_TOKEN(anon_sym_struct); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 348: - ACCEPT_TOKEN(anon_sym_switch); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 349: - if (lookahead == '_') ADVANCE(401); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 350: - if (lookahead == 'f') ADVANCE(402); + if (lookahead == '_') ADVANCE(404); END_STATE(); case 351: - if (lookahead == '_') ADVANCE(403); + if (lookahead == 'f') ADVANCE(405); END_STATE(); case 352: - if (lookahead == '_') ADVANCE(404); + if (lookahead == '_') ADVANCE(406); END_STATE(); case 353: - if (lookahead == '_') ADVANCE(405); + if (lookahead == '_') ADVANCE(407); END_STATE(); case 354: - if (lookahead == 't') ADVANCE(171); + if (lookahead == '_') ADVANCE(408); END_STATE(); case 355: - if (lookahead == 'r') ADVANCE(406); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 356: - if (lookahead == 'e') ADVANCE(407); + if (lookahead == 'r') ADVANCE(409); END_STATE(); case 357: - if (lookahead == 'l') ADVANCE(408); + if (lookahead == 'e') ADVANCE(410); END_STATE(); case 358: - if (lookahead == 'f') ADVANCE(409); + if (lookahead == 'l') ADVANCE(411); END_STATE(); case 359: - ACCEPT_TOKEN(anon_sym__Atomic); + if (lookahead == 's') ADVANCE(412); END_STATE(); case 360: - if (lookahead == 'c') ADVANCE(410); + if (lookahead == 'f') ADVANCE(413); END_STATE(); case 361: - if (lookahead == 'r') ADVANCE(411); + ACCEPT_TOKEN(anon_sym__Atomic); END_STATE(); case 362: - if (lookahead == 'o') ADVANCE(412); + if (lookahead == 'c') ADVANCE(414); END_STATE(); case 363: - ACCEPT_TOKEN(anon_sym___asm__); + if (lookahead == 'r') ADVANCE(415); END_STATE(); case 364: - if (lookahead == 'b') ADVANCE(413); + if (lookahead == 'o') ADVANCE(416); END_STATE(); case 365: - ACCEPT_TOKEN(anon_sym___based); + ACCEPT_TOKEN(anon_sym___asm__); END_STATE(); case 366: - ACCEPT_TOKEN(anon_sym___cdecl); + if (lookahead == 'b') ADVANCE(417); END_STATE(); case 367: - if (lookahead == 'l') ADVANCE(414); + ACCEPT_TOKEN(anon_sym___based); END_STATE(); case 368: - if (lookahead == 'p') ADVANCE(415); + ACCEPT_TOKEN(anon_sym___cdecl); END_STATE(); case 369: - if (lookahead == 't') ADVANCE(416); + if (lookahead == 'l') ADVANCE(418); END_STATE(); case 370: - if (lookahead == 's') ADVANCE(417); + if (lookahead == 'p') ADVANCE(419); END_STATE(); case 371: - if (lookahead == 'a') ADVANCE(418); + if (lookahead == 't') ADVANCE(420); END_STATE(); case 372: - if (lookahead == 'l') ADVANCE(419); + if (lookahead == 's') ADVANCE(421); END_STATE(); case 373: - if (lookahead == 'i') ADVANCE(420); + if (lookahead == 'a') ADVANCE(422); END_STATE(); case 374: - if (lookahead == 'e') ADVANCE(421); + if (lookahead == 'l') ADVANCE(423); END_STATE(); case 375: - ACCEPT_TOKEN(anon_sym___leave); + if (lookahead == 'i') ADVANCE(424); END_STATE(); case 376: - if (lookahead == 'i') ADVANCE(422); + if (lookahead == 'e') ADVANCE(425); END_STATE(); case 377: - if (lookahead == 'l') ADVANCE(423); + ACCEPT_TOKEN(anon_sym___leave); END_STATE(); case 378: - if (lookahead == 'a') ADVANCE(424); + if (lookahead == 'i') ADVANCE(426); END_STATE(); case 379: - if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'l') ADVANCE(427); END_STATE(); case 380: - if (lookahead == 'g') ADVANCE(426); + if (lookahead == 'a') ADVANCE(428); END_STATE(); case 381: - if (lookahead == 'r') ADVANCE(427); + if (lookahead == 'd') ADVANCE(429); END_STATE(); case 382: - if (lookahead == 'f') ADVANCE(428); + if (lookahead == 'g') ADVANCE(430); END_STATE(); case 383: - if (lookahead == 'n') ADVANCE(429); + if (lookahead == 'r') ADVANCE(431); END_STATE(); case 384: - ACCEPT_TOKEN(anon_sym_alignof); + if (lookahead == 'f') ADVANCE(432); END_STATE(); case 385: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'n') ADVANCE(433); END_STATE(); case 386: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_alignas); END_STATE(); case 387: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_alignof); END_STATE(); case 388: - if (lookahead == '_') ADVANCE(430); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 389: - if (lookahead == 'p') ADVANCE(431); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 390: - if (lookahead == 'e') ADVANCE(432); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 391: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == '_') ADVANCE(434); END_STATE(); case 392: - ACCEPT_TOKEN(anon_sym_defined); + if (lookahead == 'p') ADVANCE(435); END_STATE(); case 393: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'e') ADVANCE(436); END_STATE(); case 394: - if (lookahead == 'g') ADVANCE(433); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 395: - if (lookahead == 'n') ADVANCE(434); + ACCEPT_TOKEN(anon_sym_defined); END_STATE(); case 396: - ACCEPT_TOKEN(anon_sym_nullptr); - if (lookahead == '_') ADVANCE(435); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 397: - if (lookahead == 'f') ADVANCE(436); + if (lookahead == 'g') ADVANCE(437); END_STATE(); case 398: - if (lookahead == '_') ADVANCE(437); + if (lookahead == 'n') ADVANCE(438); END_STATE(); case 399: - if (lookahead == 'r') ADVANCE(438); + ACCEPT_TOKEN(anon_sym_nullptr); + if (lookahead == '_') ADVANCE(439); END_STATE(); case 400: - if (lookahead == 't') ADVANCE(439); + if (lookahead == 'f') ADVANCE(440); END_STATE(); case 401: - if (lookahead == 'l') ADVANCE(440); + if (lookahead == '_') ADVANCE(441); END_STATE(); case 402: - ACCEPT_TOKEN(anon_sym_typedef); + if (lookahead == 'r') ADVANCE(442); END_STATE(); case 403: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 't') ADVANCE(443); END_STATE(); case 404: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'l') ADVANCE(444); END_STATE(); case 405: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_typedef); END_STATE(); case 406: - if (lookahead == '_') ADVANCE(441); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 407: - if (lookahead == 'd') ADVANCE(442); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 408: - if (lookahead == 'e') ADVANCE(443); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 409: - ACCEPT_TOKEN(anon_sym__Alignof); + if (lookahead == '_') ADVANCE(445); END_STATE(); case 410: - ACCEPT_TOKEN(anon_sym__Generic); + if (lookahead == 'd') ADVANCE(446); END_STATE(); case 411: - if (lookahead == 'n') ADVANCE(444); + if (lookahead == 'e') ADVANCE(447); END_STATE(); case 412: - if (lookahead == 'f') ADVANCE(445); + ACCEPT_TOKEN(anon_sym__Alignas); END_STATE(); case 413: - if (lookahead == 'u') ADVANCE(446); + ACCEPT_TOKEN(anon_sym__Alignof); END_STATE(); case 414: - if (lookahead == 'l') ADVANCE(447); + ACCEPT_TOKEN(anon_sym__Generic); END_STATE(); case 415: - if (lookahead == 'e') ADVANCE(448); + if (lookahead == 'n') ADVANCE(448); END_STATE(); case 416: - ACCEPT_TOKEN(anon_sym___except); + if (lookahead == 'f') ADVANCE(449); END_STATE(); case 417: - if (lookahead == 'i') ADVANCE(449); + if (lookahead == 'u') ADVANCE(450); END_STATE(); case 418: - if (lookahead == 'l') ADVANCE(450); + if (lookahead == 'l') ADVANCE(451); END_STATE(); case 419: - if (lookahead == 'y') ADVANCE(451); + if (lookahead == 'e') ADVANCE(452); END_STATE(); case 420: - if (lookahead == 'n') ADVANCE(452); + ACCEPT_TOKEN(anon_sym___except); END_STATE(); case 421: - ACCEPT_TOKEN(anon_sym___inline); - if (lookahead == '_') ADVANCE(453); + if (lookahead == 'i') ADVANCE(453); END_STATE(); case 422: - if (lookahead == 'c') ADVANCE(454); + if (lookahead == 'l') ADVANCE(454); END_STATE(); case 423: - if (lookahead == 'l') ADVANCE(455); + if (lookahead == 'y') ADVANCE(455); END_STATE(); case 424: - if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'n') ADVANCE(456); END_STATE(); case 425: - ACCEPT_TOKEN(anon_sym___thread); + ACCEPT_TOKEN(anon_sym___inline); + if (lookahead == '_') ADVANCE(457); END_STATE(); case 426: - if (lookahead == 'n') ADVANCE(457); + if (lookahead == 'c') ADVANCE(458); END_STATE(); case 427: - if (lookahead == 'c') ADVANCE(458); + if (lookahead == 'l') ADVANCE(459); END_STATE(); case 428: - ACCEPT_TOKEN(anon_sym__alignof); + if (lookahead == 'l') ADVANCE(460); END_STATE(); case 429: - if (lookahead == 'e') ADVANCE(459); + ACCEPT_TOKEN(anon_sym___thread); END_STATE(); case 430: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'n') ADVANCE(461); END_STATE(); case 431: - if (lookahead == 'r') ADVANCE(460); + if (lookahead == 'c') ADVANCE(462); END_STATE(); case 432: - ACCEPT_TOKEN(anon_sym_continue); + ACCEPT_TOKEN(anon_sym__alignof); END_STATE(); case 433: - if (lookahead == 'n') ADVANCE(461); + if (lookahead == 'e') ADVANCE(463); END_STATE(); case 434: - ACCEPT_TOKEN(anon_sym_noreturn); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 435: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'r') ADVANCE(464); END_STATE(); case 436: - ACCEPT_TOKEN(anon_sym_offsetof); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 437: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'n') ADVANCE(465); END_STATE(); case 438: - ACCEPT_TOKEN(anon_sym_register); + ACCEPT_TOKEN(anon_sym_noreturn); END_STATE(); case 439: - ACCEPT_TOKEN(anon_sym_restrict); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 440: - if (lookahead == 'o') ADVANCE(462); + ACCEPT_TOKEN(anon_sym_offsetof); END_STATE(); case 441: if (lookahead == 't') ADVANCE(171); END_STATE(); case 442: - ACCEPT_TOKEN(anon_sym_unsigned); + ACCEPT_TOKEN(anon_sym_register); END_STATE(); case 443: - ACCEPT_TOKEN(anon_sym_volatile); + ACCEPT_TOKEN(anon_sym_restrict); END_STATE(); case 444: - ACCEPT_TOKEN(anon_sym__Noreturn); + if (lookahead == 'o') ADVANCE(466); END_STATE(); case 445: - ACCEPT_TOKEN(anon_sym___alignof); - if (lookahead == '_') ADVANCE(463); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 446: - if (lookahead == 't') ADVANCE(464); + ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); case 447: - ACCEPT_TOKEN(anon_sym___clrcall); + ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); case 448: - if (lookahead == 'c') ADVANCE(465); + ACCEPT_TOKEN(anon_sym__Noreturn); END_STATE(); case 449: - if (lookahead == 'o') ADVANCE(466); + ACCEPT_TOKEN(anon_sym___alignof); + if (lookahead == '_') ADVANCE(467); END_STATE(); case 450: - if (lookahead == 'l') ADVANCE(467); + if (lookahead == 't') ADVANCE(468); END_STATE(); case 451: - ACCEPT_TOKEN(anon_sym___finally); + ACCEPT_TOKEN(anon_sym___clrcall); END_STATE(); case 452: - if (lookahead == 'l') ADVANCE(468); + if (lookahead == 'c') ADVANCE(469); END_STATE(); case 453: - if (lookahead == '_') ADVANCE(469); + if (lookahead == 'o') ADVANCE(470); END_STATE(); case 454: - if (lookahead == 't') ADVANCE(470); + if (lookahead == 'l') ADVANCE(471); END_STATE(); case 455: - ACCEPT_TOKEN(anon_sym___stdcall); + ACCEPT_TOKEN(anon_sym___finally); END_STATE(); case 456: - if (lookahead == 'l') ADVANCE(471); + if (lookahead == 'l') ADVANCE(472); END_STATE(); case 457: - if (lookahead == 'e') ADVANCE(472); + if (lookahead == '_') ADVANCE(473); END_STATE(); case 458: - if (lookahead == 'a') ADVANCE(473); + if (lookahead == 't') ADVANCE(474); END_STATE(); case 459: - if (lookahead == 'd') ADVANCE(474); + ACCEPT_TOKEN(anon_sym___stdcall); END_STATE(); case 460: - ACCEPT_TOKEN(anon_sym_constexpr); + if (lookahead == 'l') ADVANCE(475); END_STATE(); case 461: - if (lookahead == '_') ADVANCE(475); + if (lookahead == 'e') ADVANCE(476); END_STATE(); case 462: - if (lookahead == 'c') ADVANCE(476); + if (lookahead == 'a') ADVANCE(477); END_STATE(); case 463: - if (lookahead == '_') ADVANCE(477); + if (lookahead == 'd') ADVANCE(478); END_STATE(); case 464: - if (lookahead == 'e') ADVANCE(478); + ACCEPT_TOKEN(anon_sym_constexpr); END_STATE(); case 465: - ACCEPT_TOKEN(anon_sym___declspec); + if (lookahead == '_') ADVANCE(479); END_STATE(); case 466: - if (lookahead == 'n') ADVANCE(479); + if (lookahead == 'c') ADVANCE(480); END_STATE(); case 467: - ACCEPT_TOKEN(anon_sym___fastcall); + if (lookahead == '_') ADVANCE(481); END_STATE(); case 468: - if (lookahead == 'i') ADVANCE(480); + if (lookahead == 'e') ADVANCE(482); END_STATE(); case 469: - ACCEPT_TOKEN(anon_sym___inline__); + ACCEPT_TOKEN(anon_sym___declspec); END_STATE(); case 470: - ACCEPT_TOKEN(sym_ms_restrict_modifier); - if (lookahead == '_') ADVANCE(481); + if (lookahead == 'n') ADVANCE(483); END_STATE(); case 471: - ACCEPT_TOKEN(anon_sym___thiscall); + ACCEPT_TOKEN(anon_sym___fastcall); END_STATE(); case 472: - if (lookahead == 'd') ADVANCE(482); + if (lookahead == 'i') ADVANCE(484); END_STATE(); case 473: - if (lookahead == 'l') ADVANCE(483); + ACCEPT_TOKEN(anon_sym___inline__); END_STATE(); case 474: - ACCEPT_TOKEN(anon_sym__unaligned); + ACCEPT_TOKEN(sym_ms_restrict_modifier); + if (lookahead == '_') ADVANCE(485); END_STATE(); case 475: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym___thiscall); END_STATE(); case 476: - if (lookahead == 'a') ADVANCE(484); + if (lookahead == 'd') ADVANCE(486); END_STATE(); case 477: - ACCEPT_TOKEN(anon_sym___alignof__); + if (lookahead == 'l') ADVANCE(487); END_STATE(); case 478: - if (lookahead == '_') ADVANCE(485); + ACCEPT_TOKEN(anon_sym__unaligned); END_STATE(); case 479: - if (lookahead == '_') ADVANCE(486); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 480: - if (lookahead == 'n') ADVANCE(487); + if (lookahead == 'a') ADVANCE(488); END_STATE(); case 481: - if (lookahead == '_') ADVANCE(488); + ACCEPT_TOKEN(anon_sym___alignof__); END_STATE(); case 482: - ACCEPT_TOKEN(anon_sym___unaligned); + if (lookahead == '_') ADVANCE(489); END_STATE(); case 483: - if (lookahead == 'l') ADVANCE(489); + if (lookahead == '_') ADVANCE(490); END_STATE(); case 484: - if (lookahead == 'l') ADVANCE(490); + if (lookahead == 'n') ADVANCE(491); END_STATE(); case 485: - if (lookahead == '_') ADVANCE(491); + if (lookahead == '_') ADVANCE(492); END_STATE(); case 486: - if (lookahead == '_') ADVANCE(492); + ACCEPT_TOKEN(anon_sym___unaligned); END_STATE(); case 487: - if (lookahead == 'e') ADVANCE(493); + if (lookahead == 'l') ADVANCE(493); END_STATE(); case 488: - ACCEPT_TOKEN(anon_sym___restrict__); + if (lookahead == 'l') ADVANCE(494); END_STATE(); case 489: - ACCEPT_TOKEN(anon_sym___vectorcall); + if (lookahead == '_') ADVANCE(495); END_STATE(); case 490: - ACCEPT_TOKEN(anon_sym_thread_local); + if (lookahead == '_') ADVANCE(496); END_STATE(); case 491: - ACCEPT_TOKEN(anon_sym___attribute__); + if (lookahead == 'e') ADVANCE(497); END_STATE(); case 492: - ACCEPT_TOKEN(anon_sym___extension__); + ACCEPT_TOKEN(anon_sym___restrict__); END_STATE(); case 493: + ACCEPT_TOKEN(anon_sym___vectorcall); + END_STATE(); + case 494: + ACCEPT_TOKEN(anon_sym_thread_local); + END_STATE(); + case 495: + ACCEPT_TOKEN(anon_sym___attribute__); + END_STATE(); + case 496: + ACCEPT_TOKEN(anon_sym___extension__); + END_STATE(); + case 497: ACCEPT_TOKEN(anon_sym___forceinline); END_STATE(); default: @@ -9406,10 +9451,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [21] = {.lex_state = 45}, [22] = {.lex_state = 45}, [23] = {.lex_state = 119}, - [24] = {.lex_state = 47}, - [25] = {.lex_state = 47}, - [26] = {.lex_state = 119}, - [27] = {.lex_state = 47}, + [24] = {.lex_state = 119}, + [25] = {.lex_state = 119}, + [26] = {.lex_state = 47}, + [27] = {.lex_state = 119}, [28] = {.lex_state = 119}, [29] = {.lex_state = 119}, [30] = {.lex_state = 119}, @@ -9420,8 +9465,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [35] = {.lex_state = 119}, [36] = {.lex_state = 119}, [37] = {.lex_state = 119}, - [38] = {.lex_state = 119}, - [39] = {.lex_state = 119}, + [38] = {.lex_state = 47}, + [39] = {.lex_state = 47}, [40] = {.lex_state = 119}, [41] = {.lex_state = 119}, [42] = {.lex_state = 119}, @@ -9432,21 +9477,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [47] = {.lex_state = 45}, [48] = {.lex_state = 45}, [49] = {.lex_state = 45}, - [50] = {.lex_state = 119}, + [50] = {.lex_state = 47}, [51] = {.lex_state = 119}, [52] = {.lex_state = 119}, - [53] = {.lex_state = 119}, - [54] = {.lex_state = 47}, - [55] = {.lex_state = 47}, + [53] = {.lex_state = 47}, + [54] = {.lex_state = 119}, + [55] = {.lex_state = 119}, [56] = {.lex_state = 119}, [57] = {.lex_state = 47}, - [58] = {.lex_state = 47}, + [58] = {.lex_state = 119}, [59] = {.lex_state = 119}, [60] = {.lex_state = 119}, - [61] = {.lex_state = 119}, + [61] = {.lex_state = 47}, [62] = {.lex_state = 119}, - [63] = {.lex_state = 47}, - [64] = {.lex_state = 119}, + [63] = {.lex_state = 119}, + [64] = {.lex_state = 47}, [65] = {.lex_state = 119}, [66] = {.lex_state = 119}, [67] = {.lex_state = 119}, @@ -9473,9 +9518,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [88] = {.lex_state = 45}, [89] = {.lex_state = 45}, [90] = {.lex_state = 45}, - [91] = {.lex_state = 45}, - [92] = {.lex_state = 119}, - [93] = {.lex_state = 45}, + [91] = {.lex_state = 119}, + [92] = {.lex_state = 45}, + [93] = {.lex_state = 119}, [94] = {.lex_state = 45}, [95] = {.lex_state = 45}, [96] = {.lex_state = 45}, @@ -9493,7 +9538,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [108] = {.lex_state = 45}, [109] = {.lex_state = 45}, [110] = {.lex_state = 45}, - [111] = {.lex_state = 119}, + [111] = {.lex_state = 45}, [112] = {.lex_state = 45}, [113] = {.lex_state = 45}, [114] = {.lex_state = 45}, @@ -9539,29 +9584,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [154] = {.lex_state = 45}, [155] = {.lex_state = 45}, [156] = {.lex_state = 47}, - [157] = {.lex_state = 44}, + [157] = {.lex_state = 119}, [158] = {.lex_state = 119}, - [159] = {.lex_state = 44}, + [159] = {.lex_state = 119}, [160] = {.lex_state = 119}, - [161] = {.lex_state = 47}, + [161] = {.lex_state = 119}, [162] = {.lex_state = 119}, - [163] = {.lex_state = 47}, - [164] = {.lex_state = 47}, - [165] = {.lex_state = 47}, - [166] = {.lex_state = 47}, - [167] = {.lex_state = 47}, - [168] = {.lex_state = 47}, - [169] = {.lex_state = 47}, - [170] = {.lex_state = 47}, + [163] = {.lex_state = 119}, + [164] = {.lex_state = 119}, + [165] = {.lex_state = 119}, + [166] = {.lex_state = 119}, + [167] = {.lex_state = 119}, + [168] = {.lex_state = 119}, + [169] = {.lex_state = 119}, + [170] = {.lex_state = 119}, [171] = {.lex_state = 119}, [172] = {.lex_state = 119}, - [173] = {.lex_state = 47}, - [174] = {.lex_state = 47}, + [173] = {.lex_state = 119}, + [174] = {.lex_state = 119}, [175] = {.lex_state = 119}, - [176] = {.lex_state = 47}, + [176] = {.lex_state = 119}, [177] = {.lex_state = 119}, - [178] = {.lex_state = 119}, - [179] = {.lex_state = 119}, + [178] = {.lex_state = 47}, + [179] = {.lex_state = 47}, [180] = {.lex_state = 119}, [181] = {.lex_state = 119}, [182] = {.lex_state = 119}, @@ -9569,60 +9614,60 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [184] = {.lex_state = 119}, [185] = {.lex_state = 119}, [186] = {.lex_state = 119}, - [187] = {.lex_state = 119}, + [187] = {.lex_state = 47}, [188] = {.lex_state = 47}, - [189] = {.lex_state = 47}, - [190] = {.lex_state = 47}, - [191] = {.lex_state = 47}, + [189] = {.lex_state = 119}, + [190] = {.lex_state = 119}, + [191] = {.lex_state = 119}, [192] = {.lex_state = 119}, [193] = {.lex_state = 47}, [194] = {.lex_state = 119}, - [195] = {.lex_state = 119}, - [196] = {.lex_state = 119}, - [197] = {.lex_state = 119}, + [195] = {.lex_state = 47}, + [196] = {.lex_state = 47}, + [197] = {.lex_state = 47}, [198] = {.lex_state = 119}, [199] = {.lex_state = 119}, [200] = {.lex_state = 47}, - [201] = {.lex_state = 47}, - [202] = {.lex_state = 47}, + [201] = {.lex_state = 119}, + [202] = {.lex_state = 119}, [203] = {.lex_state = 47}, [204] = {.lex_state = 47}, - [205] = {.lex_state = 119}, + [205] = {.lex_state = 47}, [206] = {.lex_state = 119}, - [207] = {.lex_state = 47}, - [208] = {.lex_state = 47}, + [207] = {.lex_state = 119}, + [208] = {.lex_state = 119}, [209] = {.lex_state = 47}, - [210] = {.lex_state = 47}, - [211] = {.lex_state = 47}, + [210] = {.lex_state = 119}, + [211] = {.lex_state = 119}, [212] = {.lex_state = 119}, - [213] = {.lex_state = 119}, + [213] = {.lex_state = 47}, [214] = {.lex_state = 47}, - [215] = {.lex_state = 119}, + [215] = {.lex_state = 47}, [216] = {.lex_state = 47}, [217] = {.lex_state = 119}, - [218] = {.lex_state = 119}, + [218] = {.lex_state = 47}, [219] = {.lex_state = 119}, - [220] = {.lex_state = 119}, + [220] = {.lex_state = 47}, [221] = {.lex_state = 47}, [222] = {.lex_state = 119}, [223] = {.lex_state = 119}, [224] = {.lex_state = 47}, - [225] = {.lex_state = 47}, - [226] = {.lex_state = 47}, - [227] = {.lex_state = 47}, - [228] = {.lex_state = 47}, - [229] = {.lex_state = 47}, + [225] = {.lex_state = 119}, + [226] = {.lex_state = 119}, + [227] = {.lex_state = 119}, + [228] = {.lex_state = 119}, + [229] = {.lex_state = 119}, [230] = {.lex_state = 47}, - [231] = {.lex_state = 47}, - [232] = {.lex_state = 47}, + [231] = {.lex_state = 119}, + [232] = {.lex_state = 119}, [233] = {.lex_state = 119}, [234] = {.lex_state = 119}, [235] = {.lex_state = 119}, [236] = {.lex_state = 47}, [237] = {.lex_state = 119}, - [238] = {.lex_state = 47}, + [238] = {.lex_state = 119}, [239] = {.lex_state = 119}, - [240] = {.lex_state = 119}, + [240] = {.lex_state = 47}, [241] = {.lex_state = 119}, [242] = {.lex_state = 119}, [243] = {.lex_state = 119}, @@ -9630,105 +9675,105 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [245] = {.lex_state = 119}, [246] = {.lex_state = 119}, [247] = {.lex_state = 47}, - [248] = {.lex_state = 119}, - [249] = {.lex_state = 119}, + [248] = {.lex_state = 47}, + [249] = {.lex_state = 47}, [250] = {.lex_state = 119}, - [251] = {.lex_state = 47}, + [251] = {.lex_state = 119}, [252] = {.lex_state = 47}, - [253] = {.lex_state = 47}, + [253] = {.lex_state = 119}, [254] = {.lex_state = 47}, - [255] = {.lex_state = 47}, - [256] = {.lex_state = 119}, + [255] = {.lex_state = 119}, + [256] = {.lex_state = 47}, [257] = {.lex_state = 47}, - [258] = {.lex_state = 47}, - [259] = {.lex_state = 119}, + [258] = {.lex_state = 119}, + [259] = {.lex_state = 47}, [260] = {.lex_state = 119}, [261] = {.lex_state = 119}, [262] = {.lex_state = 119}, [263] = {.lex_state = 119}, - [264] = {.lex_state = 119}, + [264] = {.lex_state = 47}, [265] = {.lex_state = 119}, [266] = {.lex_state = 119}, [267] = {.lex_state = 119}, - [268] = {.lex_state = 119}, + [268] = {.lex_state = 47}, [269] = {.lex_state = 119}, - [270] = {.lex_state = 119}, - [271] = {.lex_state = 119}, - [272] = {.lex_state = 119}, - [273] = {.lex_state = 119}, + [270] = {.lex_state = 47}, + [271] = {.lex_state = 47}, + [272] = {.lex_state = 47}, + [273] = {.lex_state = 47}, [274] = {.lex_state = 119}, - [275] = {.lex_state = 119}, - [276] = {.lex_state = 119}, + [275] = {.lex_state = 47}, + [276] = {.lex_state = 47}, [277] = {.lex_state = 119}, [278] = {.lex_state = 119}, [279] = {.lex_state = 119}, [280] = {.lex_state = 119}, [281] = {.lex_state = 119}, [282] = {.lex_state = 119}, - [283] = {.lex_state = 119}, - [284] = {.lex_state = 119}, + [283] = {.lex_state = 47}, + [284] = {.lex_state = 47}, [285] = {.lex_state = 119}, - [286] = {.lex_state = 119}, - [287] = {.lex_state = 119}, - [288] = {.lex_state = 119}, + [286] = {.lex_state = 47}, + [287] = {.lex_state = 47}, + [288] = {.lex_state = 47}, [289] = {.lex_state = 119}, [290] = {.lex_state = 119}, [291] = {.lex_state = 119}, [292] = {.lex_state = 119}, [293] = {.lex_state = 119}, - [294] = {.lex_state = 119}, - [295] = {.lex_state = 119}, - [296] = {.lex_state = 47}, + [294] = {.lex_state = 47}, + [295] = {.lex_state = 47}, + [296] = {.lex_state = 119}, [297] = {.lex_state = 119}, - [298] = {.lex_state = 119}, + [298] = {.lex_state = 47}, [299] = {.lex_state = 119}, [300] = {.lex_state = 119}, [301] = {.lex_state = 119}, - [302] = {.lex_state = 119}, + [302] = {.lex_state = 47}, [303] = {.lex_state = 119}, - [304] = {.lex_state = 119}, + [304] = {.lex_state = 47}, [305] = {.lex_state = 119}, [306] = {.lex_state = 119}, - [307] = {.lex_state = 119}, - [308] = {.lex_state = 119}, + [307] = {.lex_state = 47}, + [308] = {.lex_state = 47}, [309] = {.lex_state = 47}, [310] = {.lex_state = 47}, - [311] = {.lex_state = 119}, - [312] = {.lex_state = 119}, + [311] = {.lex_state = 47}, + [312] = {.lex_state = 47}, [313] = {.lex_state = 119}, [314] = {.lex_state = 119}, [315] = {.lex_state = 119}, - [316] = {.lex_state = 119}, - [317] = {.lex_state = 119}, + [316] = {.lex_state = 47}, + [317] = {.lex_state = 47}, [318] = {.lex_state = 119}, - [319] = {.lex_state = 47}, + [319] = {.lex_state = 119}, [320] = {.lex_state = 119}, - [321] = {.lex_state = 47}, + [321] = {.lex_state = 119}, [322] = {.lex_state = 47}, [323] = {.lex_state = 119}, - [324] = {.lex_state = 47}, - [325] = {.lex_state = 47}, - [326] = {.lex_state = 47}, - [327] = {.lex_state = 119}, + [324] = {.lex_state = 119}, + [325] = {.lex_state = 44}, + [326] = {.lex_state = 119}, + [327] = {.lex_state = 47}, [328] = {.lex_state = 47}, [329] = {.lex_state = 47}, [330] = {.lex_state = 47}, - [331] = {.lex_state = 47}, + [331] = {.lex_state = 44}, [332] = {.lex_state = 47}, [333] = {.lex_state = 47}, [334] = {.lex_state = 119}, - [335] = {.lex_state = 119}, + [335] = {.lex_state = 47}, [336] = {.lex_state = 47}, [337] = {.lex_state = 47}, - [338] = {.lex_state = 119}, - [339] = {.lex_state = 119}, + [338] = {.lex_state = 47}, + [339] = {.lex_state = 47}, [340] = {.lex_state = 47}, [341] = {.lex_state = 47}, [342] = {.lex_state = 119}, [343] = {.lex_state = 119}, - [344] = {.lex_state = 119}, + [344] = {.lex_state = 47}, [345] = {.lex_state = 119}, - [346] = {.lex_state = 119}, + [346] = {.lex_state = 47}, [347] = {.lex_state = 119}, [348] = {.lex_state = 47}, [349] = {.lex_state = 119}, @@ -9737,22 +9782,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [352] = {.lex_state = 119}, [353] = {.lex_state = 47}, [354] = {.lex_state = 119}, - [355] = {.lex_state = 119}, + [355] = {.lex_state = 47}, [356] = {.lex_state = 47}, [357] = {.lex_state = 119}, [358] = {.lex_state = 119}, [359] = {.lex_state = 119}, - [360] = {.lex_state = 47}, + [360] = {.lex_state = 119}, [361] = {.lex_state = 119}, [362] = {.lex_state = 119}, [363] = {.lex_state = 119}, - [364] = {.lex_state = 47}, - [365] = {.lex_state = 47}, + [364] = {.lex_state = 119}, + [365] = {.lex_state = 119}, [366] = {.lex_state = 119}, [367] = {.lex_state = 119}, [368] = {.lex_state = 119}, - [369] = {.lex_state = 47}, - [370] = {.lex_state = 47}, + [369] = {.lex_state = 119}, + [370] = {.lex_state = 119}, [371] = {.lex_state = 119}, [372] = {.lex_state = 119}, [373] = {.lex_state = 119}, @@ -9765,7 +9810,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [380] = {.lex_state = 119}, [381] = {.lex_state = 119}, [382] = {.lex_state = 119}, - [383] = {.lex_state = 47}, + [383] = {.lex_state = 119}, [384] = {.lex_state = 119}, [385] = {.lex_state = 119}, [386] = {.lex_state = 119}, @@ -9784,11 +9829,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [399] = {.lex_state = 119}, [400] = {.lex_state = 119}, [401] = {.lex_state = 119}, - [402] = {.lex_state = 47}, + [402] = {.lex_state = 119}, [403] = {.lex_state = 119}, [404] = {.lex_state = 119}, [405] = {.lex_state = 119}, - [406] = {.lex_state = 44}, + [406] = {.lex_state = 119}, [407] = {.lex_state = 119}, [408] = {.lex_state = 119}, [409] = {.lex_state = 119}, @@ -9815,7 +9860,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [430] = {.lex_state = 119}, [431] = {.lex_state = 119}, [432] = {.lex_state = 119}, - [433] = {.lex_state = 119}, + [433] = {.lex_state = 44}, [434] = {.lex_state = 119}, [435] = {.lex_state = 119}, [436] = {.lex_state = 119}, @@ -9830,24 +9875,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [445] = {.lex_state = 119}, [446] = {.lex_state = 119}, [447] = {.lex_state = 119}, - [448] = {.lex_state = 44}, - [449] = {.lex_state = 44}, + [448] = {.lex_state = 119}, + [449] = {.lex_state = 119}, [450] = {.lex_state = 44}, - [451] = {.lex_state = 119}, - [452] = {.lex_state = 49}, + [451] = {.lex_state = 44}, + [452] = {.lex_state = 119}, [453] = {.lex_state = 49}, [454] = {.lex_state = 49}, - [455] = {.lex_state = 49}, - [456] = {.lex_state = 119}, + [455] = {.lex_state = 119}, + [456] = {.lex_state = 49}, [457] = {.lex_state = 49}, [458] = {.lex_state = 49}, [459] = {.lex_state = 49}, [460] = {.lex_state = 49}, [461] = {.lex_state = 49}, - [462] = {.lex_state = 49}, - [463] = {.lex_state = 53}, - [464] = {.lex_state = 119}, - [465] = {.lex_state = 119}, + [462] = {.lex_state = 44}, + [463] = {.lex_state = 49}, + [464] = {.lex_state = 49}, + [465] = {.lex_state = 52}, [466] = {.lex_state = 119}, [467] = {.lex_state = 119}, [468] = {.lex_state = 119}, @@ -9858,36 +9903,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [473] = {.lex_state = 119}, [474] = {.lex_state = 119}, [475] = {.lex_state = 119}, - [476] = {.lex_state = 119}, + [476] = {.lex_state = 52}, [477] = {.lex_state = 119}, - [478] = {.lex_state = 53}, - [479] = {.lex_state = 53}, - [480] = {.lex_state = 53}, - [481] = {.lex_state = 53}, - [482] = {.lex_state = 53}, - [483] = {.lex_state = 53}, - [484] = {.lex_state = 53}, - [485] = {.lex_state = 53}, - [486] = {.lex_state = 53}, - [487] = {.lex_state = 53}, - [488] = {.lex_state = 53}, - [489] = {.lex_state = 53}, - [490] = {.lex_state = 53}, - [491] = {.lex_state = 53}, - [492] = {.lex_state = 53}, - [493] = {.lex_state = 53}, - [494] = {.lex_state = 53}, - [495] = {.lex_state = 53}, + [478] = {.lex_state = 52}, + [479] = {.lex_state = 52}, + [480] = {.lex_state = 52}, + [481] = {.lex_state = 52}, + [482] = {.lex_state = 52}, + [483] = {.lex_state = 52}, + [484] = {.lex_state = 52}, + [485] = {.lex_state = 52}, + [486] = {.lex_state = 52}, + [487] = {.lex_state = 52}, + [488] = {.lex_state = 52}, + [489] = {.lex_state = 52}, + [490] = {.lex_state = 52}, + [491] = {.lex_state = 52}, + [492] = {.lex_state = 52}, + [493] = {.lex_state = 52}, + [494] = {.lex_state = 119}, + [495] = {.lex_state = 119}, [496] = {.lex_state = 119}, - [497] = {.lex_state = 119}, + [497] = {.lex_state = 52}, [498] = {.lex_state = 119}, - [499] = {.lex_state = 119}, - [500] = {.lex_state = 119}, - [501] = {.lex_state = 119}, - [502] = {.lex_state = 119}, + [499] = {.lex_state = 53}, + [500] = {.lex_state = 57}, + [501] = {.lex_state = 57}, + [502] = {.lex_state = 53}, [503] = {.lex_state = 119}, - [504] = {.lex_state = 119}, - [505] = {.lex_state = 119}, + [504] = {.lex_state = 57}, + [505] = {.lex_state = 53}, [506] = {.lex_state = 119}, [507] = {.lex_state = 119}, [508] = {.lex_state = 119}, @@ -9909,32 +9954,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [524] = {.lex_state = 119}, [525] = {.lex_state = 119}, [526] = {.lex_state = 119}, - [527] = {.lex_state = 52}, + [527] = {.lex_state = 119}, [528] = {.lex_state = 119}, - [529] = {.lex_state = 57}, + [529] = {.lex_state = 119}, [530] = {.lex_state = 119}, - [531] = {.lex_state = 52}, + [531] = {.lex_state = 119}, [532] = {.lex_state = 119}, [533] = {.lex_state = 119}, [534] = {.lex_state = 119}, - [535] = {.lex_state = 52}, - [536] = {.lex_state = 57}, + [535] = {.lex_state = 119}, + [536] = {.lex_state = 119}, [537] = {.lex_state = 119}, [538] = {.lex_state = 119}, [539] = {.lex_state = 119}, [540] = {.lex_state = 119}, [541] = {.lex_state = 119}, [542] = {.lex_state = 119}, - [543] = {.lex_state = 57}, - [544] = {.lex_state = 119}, - [545] = {.lex_state = 119}, + [543] = {.lex_state = 52}, + [544] = {.lex_state = 52}, + [545] = {.lex_state = 49}, [546] = {.lex_state = 119}, [547] = {.lex_state = 119}, - [548] = {.lex_state = 119}, + [548] = {.lex_state = 52}, [549] = {.lex_state = 119}, [550] = {.lex_state = 119}, [551] = {.lex_state = 119}, - [552] = {.lex_state = 119}, + [552] = {.lex_state = 52}, [553] = {.lex_state = 119}, [554] = {.lex_state = 119}, [555] = {.lex_state = 119}, @@ -10043,20 +10088,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [658] = {.lex_state = 119}, [659] = {.lex_state = 119}, [660] = {.lex_state = 119}, - [661] = {.lex_state = 49}, - [662] = {.lex_state = 49}, - [663] = {.lex_state = 53}, - [664] = {.lex_state = 49}, - [665] = {.lex_state = 53}, - [666] = {.lex_state = 53}, - [667] = {.lex_state = 53}, + [661] = {.lex_state = 119}, + [662] = {.lex_state = 119}, + [663] = {.lex_state = 119}, + [664] = {.lex_state = 119}, + [665] = {.lex_state = 119}, + [666] = {.lex_state = 119}, + [667] = {.lex_state = 119}, [668] = {.lex_state = 49}, [669] = {.lex_state = 49}, [670] = {.lex_state = 49}, [671] = {.lex_state = 49}, - [672] = {.lex_state = 50}, - [673] = {.lex_state = 50}, - [674] = {.lex_state = 50}, + [672] = {.lex_state = 49}, + [673] = {.lex_state = 49}, + [674] = {.lex_state = 52}, [675] = {.lex_state = 50}, [676] = {.lex_state = 50}, [677] = {.lex_state = 50}, @@ -10064,386 +10109,386 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [679] = {.lex_state = 50}, [680] = {.lex_state = 50}, [681] = {.lex_state = 50}, - [682] = {.lex_state = 119}, + [682] = {.lex_state = 50}, [683] = {.lex_state = 50}, - [684] = {.lex_state = 119}, - [685] = {.lex_state = 53}, - [686] = {.lex_state = 119}, - [687] = {.lex_state = 49}, - [688] = {.lex_state = 53}, - [689] = {.lex_state = 50}, - [690] = {.lex_state = 50}, - [691] = {.lex_state = 50}, - [692] = {.lex_state = 53}, - [693] = {.lex_state = 53}, - [694] = {.lex_state = 53}, - [695] = {.lex_state = 53}, - [696] = {.lex_state = 50}, - [697] = {.lex_state = 50}, - [698] = {.lex_state = 53}, - [699] = {.lex_state = 53}, - [700] = {.lex_state = 53}, - [701] = {.lex_state = 50}, - [702] = {.lex_state = 50}, - [703] = {.lex_state = 53}, - [704] = {.lex_state = 50}, - [705] = {.lex_state = 53}, - [706] = {.lex_state = 50}, - [707] = {.lex_state = 50}, - [708] = {.lex_state = 50}, - [709] = {.lex_state = 53}, - [710] = {.lex_state = 53}, - [711] = {.lex_state = 53}, - [712] = {.lex_state = 50}, + [684] = {.lex_state = 50}, + [685] = {.lex_state = 52}, + [686] = {.lex_state = 52}, + [687] = {.lex_state = 52}, + [688] = {.lex_state = 52}, + [689] = {.lex_state = 52}, + [690] = {.lex_state = 52}, + [691] = {.lex_state = 52}, + [692] = {.lex_state = 52}, + [693] = {.lex_state = 52}, + [694] = {.lex_state = 52}, + [695] = {.lex_state = 52}, + [696] = {.lex_state = 52}, + [697] = {.lex_state = 52}, + [698] = {.lex_state = 52}, + [699] = {.lex_state = 52}, + [700] = {.lex_state = 52}, + [701] = {.lex_state = 52}, + [702] = {.lex_state = 52}, + [703] = {.lex_state = 52}, + [704] = {.lex_state = 52}, + [705] = {.lex_state = 52}, + [706] = {.lex_state = 119}, + [707] = {.lex_state = 49}, + [708] = {.lex_state = 119}, + [709] = {.lex_state = 52}, + [710] = {.lex_state = 50}, + [711] = {.lex_state = 119}, + [712] = {.lex_state = 119}, [713] = {.lex_state = 50}, [714] = {.lex_state = 50}, [715] = {.lex_state = 50}, - [716] = {.lex_state = 53}, - [717] = {.lex_state = 53}, + [716] = {.lex_state = 50}, + [717] = {.lex_state = 50}, [718] = {.lex_state = 50}, - [719] = {.lex_state = 53}, - [720] = {.lex_state = 53}, - [721] = {.lex_state = 53}, - [722] = {.lex_state = 49}, - [723] = {.lex_state = 53}, + [719] = {.lex_state = 50}, + [720] = {.lex_state = 50}, + [721] = {.lex_state = 50}, + [722] = {.lex_state = 50}, + [723] = {.lex_state = 50}, [724] = {.lex_state = 50}, [725] = {.lex_state = 50}, - [726] = {.lex_state = 51}, - [727] = {.lex_state = 51}, + [726] = {.lex_state = 50}, + [727] = {.lex_state = 50}, [728] = {.lex_state = 50}, - [729] = {.lex_state = 51}, - [730] = {.lex_state = 51}, - [731] = {.lex_state = 53}, - [732] = {.lex_state = 50}, - [733] = {.lex_state = 50}, - [734] = {.lex_state = 53}, - [735] = {.lex_state = 53}, - [736] = {.lex_state = 49}, - [737] = {.lex_state = 50}, - [738] = {.lex_state = 49}, - [739] = {.lex_state = 119}, - [740] = {.lex_state = 53}, - [741] = {.lex_state = 53}, - [742] = {.lex_state = 53}, - [743] = {.lex_state = 53}, - [744] = {.lex_state = 53}, - [745] = {.lex_state = 53}, - [746] = {.lex_state = 119}, - [747] = {.lex_state = 53}, - [748] = {.lex_state = 53}, - [749] = {.lex_state = 53}, - [750] = {.lex_state = 53}, - [751] = {.lex_state = 49}, - [752] = {.lex_state = 49}, - [753] = {.lex_state = 49}, - [754] = {.lex_state = 49}, - [755] = {.lex_state = 53}, - [756] = {.lex_state = 53}, - [757] = {.lex_state = 49}, - [758] = {.lex_state = 53}, - [759] = {.lex_state = 53}, - [760] = {.lex_state = 53}, - [761] = {.lex_state = 49}, - [762] = {.lex_state = 53}, - [763] = {.lex_state = 50}, - [764] = {.lex_state = 53}, - [765] = {.lex_state = 50}, - [766] = {.lex_state = 53}, - [767] = {.lex_state = 50}, - [768] = {.lex_state = 50}, - [769] = {.lex_state = 50}, - [770] = {.lex_state = 50}, - [771] = {.lex_state = 50}, - [772] = {.lex_state = 53}, - [773] = {.lex_state = 50}, - [774] = {.lex_state = 49}, - [775] = {.lex_state = 50}, - [776] = {.lex_state = 50}, - [777] = {.lex_state = 50}, - [778] = {.lex_state = 50}, - [779] = {.lex_state = 53}, - [780] = {.lex_state = 53}, - [781] = {.lex_state = 53}, - [782] = {.lex_state = 53}, - [783] = {.lex_state = 53}, - [784] = {.lex_state = 53}, - [785] = {.lex_state = 53}, - [786] = {.lex_state = 53}, - [787] = {.lex_state = 53}, - [788] = {.lex_state = 53}, - [789] = {.lex_state = 53}, - [790] = {.lex_state = 53}, - [791] = {.lex_state = 53}, - [792] = {.lex_state = 53}, - [793] = {.lex_state = 53}, - [794] = {.lex_state = 53}, - [795] = {.lex_state = 53}, - [796] = {.lex_state = 53}, - [797] = {.lex_state = 53}, - [798] = {.lex_state = 53}, - [799] = {.lex_state = 53}, - [800] = {.lex_state = 53}, - [801] = {.lex_state = 50}, - [802] = {.lex_state = 53}, - [803] = {.lex_state = 53}, - [804] = {.lex_state = 53}, - [805] = {.lex_state = 53}, - [806] = {.lex_state = 53}, - [807] = {.lex_state = 53}, - [808] = {.lex_state = 53}, - [809] = {.lex_state = 53}, - [810] = {.lex_state = 53}, - [811] = {.lex_state = 53}, - [812] = {.lex_state = 53}, - [813] = {.lex_state = 53}, - [814] = {.lex_state = 53}, - [815] = {.lex_state = 53}, - [816] = {.lex_state = 53}, - [817] = {.lex_state = 53}, - [818] = {.lex_state = 53}, - [819] = {.lex_state = 53}, - [820] = {.lex_state = 53}, - [821] = {.lex_state = 53}, - [822] = {.lex_state = 53}, - [823] = {.lex_state = 53}, - [824] = {.lex_state = 53}, - [825] = {.lex_state = 53}, - [826] = {.lex_state = 53}, - [827] = {.lex_state = 53}, - [828] = {.lex_state = 53}, - [829] = {.lex_state = 53}, - [830] = {.lex_state = 53}, - [831] = {.lex_state = 53}, - [832] = {.lex_state = 53}, - [833] = {.lex_state = 53}, - [834] = {.lex_state = 53}, - [835] = {.lex_state = 53}, - [836] = {.lex_state = 53}, - [837] = {.lex_state = 53}, - [838] = {.lex_state = 53}, - [839] = {.lex_state = 53}, - [840] = {.lex_state = 53}, - [841] = {.lex_state = 53}, - [842] = {.lex_state = 53}, - [843] = {.lex_state = 53}, - [844] = {.lex_state = 53}, - [845] = {.lex_state = 53}, - [846] = {.lex_state = 53}, - [847] = {.lex_state = 53}, - [848] = {.lex_state = 53}, - [849] = {.lex_state = 53}, - [850] = {.lex_state = 53}, - [851] = {.lex_state = 53}, - [852] = {.lex_state = 53}, - [853] = {.lex_state = 53}, - [854] = {.lex_state = 53}, - [855] = {.lex_state = 53}, - [856] = {.lex_state = 53}, - [857] = {.lex_state = 53}, - [858] = {.lex_state = 53}, - [859] = {.lex_state = 53}, - [860] = {.lex_state = 53}, - [861] = {.lex_state = 53}, - [862] = {.lex_state = 53}, - [863] = {.lex_state = 53}, - [864] = {.lex_state = 53}, - [865] = {.lex_state = 53}, - [866] = {.lex_state = 53}, - [867] = {.lex_state = 53}, - [868] = {.lex_state = 49}, - [869] = {.lex_state = 49}, - [870] = {.lex_state = 53}, - [871] = {.lex_state = 49}, - [872] = {.lex_state = 53}, - [873] = {.lex_state = 49}, - [874] = {.lex_state = 49}, - [875] = {.lex_state = 49}, - [876] = {.lex_state = 49}, - [877] = {.lex_state = 49}, - [878] = {.lex_state = 49}, + [729] = {.lex_state = 50}, + [730] = {.lex_state = 52}, + [731] = {.lex_state = 50}, + [732] = {.lex_state = 49}, + [733] = {.lex_state = 52}, + [734] = {.lex_state = 50}, + [735] = {.lex_state = 52}, + [736] = {.lex_state = 52}, + [737] = {.lex_state = 51}, + [738] = {.lex_state = 51}, + [739] = {.lex_state = 50}, + [740] = {.lex_state = 50}, + [741] = {.lex_state = 51}, + [742] = {.lex_state = 51}, + [743] = {.lex_state = 52}, + [744] = {.lex_state = 52}, + [745] = {.lex_state = 52}, + [746] = {.lex_state = 49}, + [747] = {.lex_state = 50}, + [748] = {.lex_state = 52}, + [749] = {.lex_state = 49}, + [750] = {.lex_state = 119}, + [751] = {.lex_state = 119}, + [752] = {.lex_state = 52}, + [753] = {.lex_state = 52}, + [754] = {.lex_state = 52}, + [755] = {.lex_state = 52}, + [756] = {.lex_state = 52}, + [757] = {.lex_state = 52}, + [758] = {.lex_state = 52}, + [759] = {.lex_state = 52}, + [760] = {.lex_state = 52}, + [761] = {.lex_state = 52}, + [762] = {.lex_state = 52}, + [763] = {.lex_state = 52}, + [764] = {.lex_state = 52}, + [765] = {.lex_state = 52}, + [766] = {.lex_state = 52}, + [767] = {.lex_state = 52}, + [768] = {.lex_state = 52}, + [769] = {.lex_state = 52}, + [770] = {.lex_state = 52}, + [771] = {.lex_state = 49}, + [772] = {.lex_state = 52}, + [773] = {.lex_state = 49}, + [774] = {.lex_state = 52}, + [775] = {.lex_state = 52}, + [776] = {.lex_state = 52}, + [777] = {.lex_state = 49}, + [778] = {.lex_state = 49}, + [779] = {.lex_state = 52}, + [780] = {.lex_state = 49}, + [781] = {.lex_state = 49}, + [782] = {.lex_state = 52}, + [783] = {.lex_state = 52}, + [784] = {.lex_state = 52}, + [785] = {.lex_state = 52}, + [786] = {.lex_state = 50}, + [787] = {.lex_state = 52}, + [788] = {.lex_state = 52}, + [789] = {.lex_state = 50}, + [790] = {.lex_state = 52}, + [791] = {.lex_state = 52}, + [792] = {.lex_state = 52}, + [793] = {.lex_state = 52}, + [794] = {.lex_state = 50}, + [795] = {.lex_state = 52}, + [796] = {.lex_state = 52}, + [797] = {.lex_state = 52}, + [798] = {.lex_state = 50}, + [799] = {.lex_state = 50}, + [800] = {.lex_state = 52}, + [801] = {.lex_state = 52}, + [802] = {.lex_state = 50}, + [803] = {.lex_state = 52}, + [804] = {.lex_state = 50}, + [805] = {.lex_state = 52}, + [806] = {.lex_state = 50}, + [807] = {.lex_state = 52}, + [808] = {.lex_state = 52}, + [809] = {.lex_state = 50}, + [810] = {.lex_state = 52}, + [811] = {.lex_state = 50}, + [812] = {.lex_state = 49}, + [813] = {.lex_state = 50}, + [814] = {.lex_state = 52}, + [815] = {.lex_state = 52}, + [816] = {.lex_state = 52}, + [817] = {.lex_state = 52}, + [818] = {.lex_state = 52}, + [819] = {.lex_state = 52}, + [820] = {.lex_state = 52}, + [821] = {.lex_state = 52}, + [822] = {.lex_state = 52}, + [823] = {.lex_state = 52}, + [824] = {.lex_state = 52}, + [825] = {.lex_state = 52}, + [826] = {.lex_state = 52}, + [827] = {.lex_state = 52}, + [828] = {.lex_state = 52}, + [829] = {.lex_state = 52}, + [830] = {.lex_state = 52}, + [831] = {.lex_state = 50}, + [832] = {.lex_state = 52}, + [833] = {.lex_state = 52}, + [834] = {.lex_state = 52}, + [835] = {.lex_state = 52}, + [836] = {.lex_state = 52}, + [837] = {.lex_state = 52}, + [838] = {.lex_state = 52}, + [839] = {.lex_state = 52}, + [840] = {.lex_state = 52}, + [841] = {.lex_state = 52}, + [842] = {.lex_state = 52}, + [843] = {.lex_state = 52}, + [844] = {.lex_state = 50}, + [845] = {.lex_state = 52}, + [846] = {.lex_state = 52}, + [847] = {.lex_state = 52}, + [848] = {.lex_state = 52}, + [849] = {.lex_state = 52}, + [850] = {.lex_state = 52}, + [851] = {.lex_state = 52}, + [852] = {.lex_state = 52}, + [853] = {.lex_state = 52}, + [854] = {.lex_state = 52}, + [855] = {.lex_state = 52}, + [856] = {.lex_state = 52}, + [857] = {.lex_state = 52}, + [858] = {.lex_state = 52}, + [859] = {.lex_state = 52}, + [860] = {.lex_state = 52}, + [861] = {.lex_state = 52}, + [862] = {.lex_state = 52}, + [863] = {.lex_state = 52}, + [864] = {.lex_state = 52}, + [865] = {.lex_state = 52}, + [866] = {.lex_state = 52}, + [867] = {.lex_state = 52}, + [868] = {.lex_state = 52}, + [869] = {.lex_state = 52}, + [870] = {.lex_state = 52}, + [871] = {.lex_state = 52}, + [872] = {.lex_state = 52}, + [873] = {.lex_state = 52}, + [874] = {.lex_state = 52}, + [875] = {.lex_state = 52}, + [876] = {.lex_state = 52}, + [877] = {.lex_state = 52}, + [878] = {.lex_state = 52}, [879] = {.lex_state = 49}, [880] = {.lex_state = 49}, - [881] = {.lex_state = 49}, + [881] = {.lex_state = 53}, [882] = {.lex_state = 49}, [883] = {.lex_state = 49}, - [884] = {.lex_state = 49}, - [885] = {.lex_state = 53}, - [886] = {.lex_state = 49}, - [887] = {.lex_state = 49}, - [888] = {.lex_state = 49}, - [889] = {.lex_state = 53}, - [890] = {.lex_state = 53}, - [891] = {.lex_state = 53}, - [892] = {.lex_state = 49}, - [893] = {.lex_state = 49}, - [894] = {.lex_state = 49}, - [895] = {.lex_state = 49}, - [896] = {.lex_state = 53}, - [897] = {.lex_state = 49}, - [898] = {.lex_state = 52}, - [899] = {.lex_state = 52}, - [900] = {.lex_state = 57}, - [901] = {.lex_state = 52}, - [902] = {.lex_state = 57}, - [903] = {.lex_state = 57}, + [884] = {.lex_state = 53}, + [885] = {.lex_state = 49}, + [886] = {.lex_state = 53}, + [887] = {.lex_state = 57}, + [888] = {.lex_state = 57}, + [889] = {.lex_state = 57}, + [890] = {.lex_state = 57}, + [891] = {.lex_state = 52}, + [892] = {.lex_state = 57}, + [893] = {.lex_state = 57}, + [894] = {.lex_state = 52}, + [895] = {.lex_state = 57}, + [896] = {.lex_state = 57}, + [897] = {.lex_state = 57}, + [898] = {.lex_state = 53}, + [899] = {.lex_state = 53}, + [900] = {.lex_state = 49}, + [901] = {.lex_state = 49}, + [902] = {.lex_state = 53}, + [903] = {.lex_state = 53}, [904] = {.lex_state = 57}, - [905] = {.lex_state = 57}, + [905] = {.lex_state = 49}, [906] = {.lex_state = 53}, - [907] = {.lex_state = 57}, + [907] = {.lex_state = 49}, [908] = {.lex_state = 57}, - [909] = {.lex_state = 57}, - [910] = {.lex_state = 57}, - [911] = {.lex_state = 57}, - [912] = {.lex_state = 57}, - [913] = {.lex_state = 57}, - [914] = {.lex_state = 52}, - [915] = {.lex_state = 57}, - [916] = {.lex_state = 52}, - [917] = {.lex_state = 52}, - [918] = {.lex_state = 52}, - [919] = {.lex_state = 49}, - [920] = {.lex_state = 52}, - [921] = {.lex_state = 52}, - [922] = {.lex_state = 52}, - [923] = {.lex_state = 52}, + [909] = {.lex_state = 49}, + [910] = {.lex_state = 53}, + [911] = {.lex_state = 49}, + [912] = {.lex_state = 49}, + [913] = {.lex_state = 53}, + [914] = {.lex_state = 53}, + [915] = {.lex_state = 53}, + [916] = {.lex_state = 53}, + [917] = {.lex_state = 53}, + [918] = {.lex_state = 57}, + [919] = {.lex_state = 57}, + [920] = {.lex_state = 49}, + [921] = {.lex_state = 49}, + [922] = {.lex_state = 49}, + [923] = {.lex_state = 49}, [924] = {.lex_state = 53}, - [925] = {.lex_state = 52}, + [925] = {.lex_state = 49}, [926] = {.lex_state = 53}, - [927] = {.lex_state = 57}, - [928] = {.lex_state = 49}, - [929] = {.lex_state = 49}, - [930] = {.lex_state = 52}, - [931] = {.lex_state = 52}, - [932] = {.lex_state = 49}, - [933] = {.lex_state = 57}, + [927] = {.lex_state = 49}, + [928] = {.lex_state = 52}, + [929] = {.lex_state = 57}, + [930] = {.lex_state = 49}, + [931] = {.lex_state = 57}, + [932] = {.lex_state = 57}, + [933] = {.lex_state = 49}, [934] = {.lex_state = 57}, - [935] = {.lex_state = 52}, - [936] = {.lex_state = 52}, - [937] = {.lex_state = 52}, + [935] = {.lex_state = 49}, + [936] = {.lex_state = 49}, + [937] = {.lex_state = 53}, [938] = {.lex_state = 57}, - [939] = {.lex_state = 57}, + [939] = {.lex_state = 53}, [940] = {.lex_state = 52}, - [941] = {.lex_state = 119}, - [942] = {.lex_state = 119}, - [943] = {.lex_state = 119}, - [944] = {.lex_state = 119}, - [945] = {.lex_state = 119}, - [946] = {.lex_state = 119}, - [947] = {.lex_state = 119}, - [948] = {.lex_state = 119}, - [949] = {.lex_state = 119}, - [950] = {.lex_state = 119}, - [951] = {.lex_state = 53}, - [952] = {.lex_state = 53}, - [953] = {.lex_state = 53}, - [954] = {.lex_state = 53}, - [955] = {.lex_state = 53}, - [956] = {.lex_state = 53}, - [957] = {.lex_state = 53}, - [958] = {.lex_state = 53}, - [959] = {.lex_state = 50}, - [960] = {.lex_state = 50}, - [961] = {.lex_state = 50}, - [962] = {.lex_state = 50}, - [963] = {.lex_state = 50}, - [964] = {.lex_state = 50}, - [965] = {.lex_state = 50}, - [966] = {.lex_state = 50}, - [967] = {.lex_state = 50}, - [968] = {.lex_state = 50}, - [969] = {.lex_state = 50}, - [970] = {.lex_state = 50}, - [971] = {.lex_state = 50}, - [972] = {.lex_state = 53}, - [973] = {.lex_state = 53}, - [974] = {.lex_state = 53}, - [975] = {.lex_state = 53}, - [976] = {.lex_state = 53}, - [977] = {.lex_state = 53}, - [978] = {.lex_state = 53}, - [979] = {.lex_state = 53}, - [980] = {.lex_state = 53}, - [981] = {.lex_state = 53}, - [982] = {.lex_state = 53}, - [983] = {.lex_state = 53}, - [984] = {.lex_state = 53}, - [985] = {.lex_state = 53}, - [986] = {.lex_state = 53}, - [987] = {.lex_state = 53}, - [988] = {.lex_state = 53}, - [989] = {.lex_state = 53}, - [990] = {.lex_state = 53}, - [991] = {.lex_state = 53}, - [992] = {.lex_state = 53}, - [993] = {.lex_state = 53}, - [994] = {.lex_state = 53}, - [995] = {.lex_state = 53}, - [996] = {.lex_state = 53}, - [997] = {.lex_state = 53}, - [998] = {.lex_state = 53}, - [999] = {.lex_state = 53}, - [1000] = {.lex_state = 53}, - [1001] = {.lex_state = 53}, - [1002] = {.lex_state = 53}, - [1003] = {.lex_state = 53}, - [1004] = {.lex_state = 53}, - [1005] = {.lex_state = 53}, - [1006] = {.lex_state = 53}, - [1007] = {.lex_state = 53}, - [1008] = {.lex_state = 53}, - [1009] = {.lex_state = 53}, + [941] = {.lex_state = 49}, + [942] = {.lex_state = 49}, + [943] = {.lex_state = 52}, + [944] = {.lex_state = 52}, + [945] = {.lex_state = 52}, + [946] = {.lex_state = 49}, + [947] = {.lex_state = 49}, + [948] = {.lex_state = 49}, + [949] = {.lex_state = 52}, + [950] = {.lex_state = 52}, + [951] = {.lex_state = 119}, + [952] = {.lex_state = 119}, + [953] = {.lex_state = 119}, + [954] = {.lex_state = 119}, + [955] = {.lex_state = 119}, + [956] = {.lex_state = 119}, + [957] = {.lex_state = 119}, + [958] = {.lex_state = 119}, + [959] = {.lex_state = 52}, + [960] = {.lex_state = 119}, + [961] = {.lex_state = 52}, + [962] = {.lex_state = 119}, + [963] = {.lex_state = 52}, + [964] = {.lex_state = 52}, + [965] = {.lex_state = 52}, + [966] = {.lex_state = 52}, + [967] = {.lex_state = 52}, + [968] = {.lex_state = 52}, + [969] = {.lex_state = 52}, + [970] = {.lex_state = 52}, + [971] = {.lex_state = 52}, + [972] = {.lex_state = 52}, + [973] = {.lex_state = 52}, + [974] = {.lex_state = 52}, + [975] = {.lex_state = 52}, + [976] = {.lex_state = 52}, + [977] = {.lex_state = 52}, + [978] = {.lex_state = 52}, + [979] = {.lex_state = 52}, + [980] = {.lex_state = 52}, + [981] = {.lex_state = 52}, + [982] = {.lex_state = 52}, + [983] = {.lex_state = 52}, + [984] = {.lex_state = 52}, + [985] = {.lex_state = 52}, + [986] = {.lex_state = 50}, + [987] = {.lex_state = 50}, + [988] = {.lex_state = 50}, + [989] = {.lex_state = 50}, + [990] = {.lex_state = 52}, + [991] = {.lex_state = 50}, + [992] = {.lex_state = 52}, + [993] = {.lex_state = 50}, + [994] = {.lex_state = 50}, + [995] = {.lex_state = 50}, + [996] = {.lex_state = 50}, + [997] = {.lex_state = 50}, + [998] = {.lex_state = 50}, + [999] = {.lex_state = 50}, + [1000] = {.lex_state = 50}, + [1001] = {.lex_state = 52}, + [1002] = {.lex_state = 52}, + [1003] = {.lex_state = 52}, + [1004] = {.lex_state = 52}, + [1005] = {.lex_state = 52}, + [1006] = {.lex_state = 52}, + [1007] = {.lex_state = 52}, + [1008] = {.lex_state = 52}, + [1009] = {.lex_state = 52}, [1010] = {.lex_state = 52}, [1011] = {.lex_state = 52}, [1012] = {.lex_state = 52}, - [1013] = {.lex_state = 53}, - [1014] = {.lex_state = 53}, - [1015] = {.lex_state = 53}, - [1016] = {.lex_state = 53}, + [1013] = {.lex_state = 52}, + [1014] = {.lex_state = 52}, + [1015] = {.lex_state = 52}, + [1016] = {.lex_state = 52}, [1017] = {.lex_state = 52}, - [1018] = {.lex_state = 49}, - [1019] = {.lex_state = 49}, - [1020] = {.lex_state = 53}, - [1021] = {.lex_state = 49}, - [1022] = {.lex_state = 49}, - [1023] = {.lex_state = 49}, - [1024] = {.lex_state = 49}, - [1025] = {.lex_state = 49}, - [1026] = {.lex_state = 49}, - [1027] = {.lex_state = 49}, - [1028] = {.lex_state = 53}, - [1029] = {.lex_state = 49}, - [1030] = {.lex_state = 49}, - [1031] = {.lex_state = 53}, - [1032] = {.lex_state = 53}, + [1018] = {.lex_state = 52}, + [1019] = {.lex_state = 52}, + [1020] = {.lex_state = 52}, + [1021] = {.lex_state = 52}, + [1022] = {.lex_state = 52}, + [1023] = {.lex_state = 52}, + [1024] = {.lex_state = 52}, + [1025] = {.lex_state = 52}, + [1026] = {.lex_state = 52}, + [1027] = {.lex_state = 52}, + [1028] = {.lex_state = 52}, + [1029] = {.lex_state = 52}, + [1030] = {.lex_state = 52}, + [1031] = {.lex_state = 52}, + [1032] = {.lex_state = 52}, [1033] = {.lex_state = 53}, - [1034] = {.lex_state = 49}, - [1035] = {.lex_state = 49}, + [1034] = {.lex_state = 52}, + [1035] = {.lex_state = 53}, [1036] = {.lex_state = 53}, - [1037] = {.lex_state = 49}, + [1037] = {.lex_state = 52}, [1038] = {.lex_state = 49}, - [1039] = {.lex_state = 49}, - [1040] = {.lex_state = 49}, - [1041] = {.lex_state = 49}, - [1042] = {.lex_state = 53}, - [1043] = {.lex_state = 53}, + [1039] = {.lex_state = 52}, + [1040] = {.lex_state = 52}, + [1041] = {.lex_state = 53}, + [1042] = {.lex_state = 52}, + [1043] = {.lex_state = 49}, [1044] = {.lex_state = 49}, [1045] = {.lex_state = 49}, - [1046] = {.lex_state = 49}, + [1046] = {.lex_state = 52}, [1047] = {.lex_state = 49}, - [1048] = {.lex_state = 49}, + [1048] = {.lex_state = 52}, [1049] = {.lex_state = 49}, - [1050] = {.lex_state = 53}, - [1051] = {.lex_state = 49}, + [1050] = {.lex_state = 49}, + [1051] = {.lex_state = 52}, [1052] = {.lex_state = 49}, - [1053] = {.lex_state = 49}, + [1053] = {.lex_state = 52}, [1054] = {.lex_state = 49}, [1055] = {.lex_state = 49}, [1056] = {.lex_state = 49}, - [1057] = {.lex_state = 53}, + [1057] = {.lex_state = 49}, [1058] = {.lex_state = 49}, [1059] = {.lex_state = 49}, [1060] = {.lex_state = 49}, - [1061] = {.lex_state = 53}, + [1061] = {.lex_state = 49}, [1062] = {.lex_state = 49}, [1063] = {.lex_state = 49}, [1064] = {.lex_state = 49}, @@ -10454,16 +10499,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1069] = {.lex_state = 49}, [1070] = {.lex_state = 49}, [1071] = {.lex_state = 49}, - [1072] = {.lex_state = 53}, + [1072] = {.lex_state = 49}, [1073] = {.lex_state = 49}, [1074] = {.lex_state = 49}, [1075] = {.lex_state = 49}, [1076] = {.lex_state = 49}, - [1077] = {.lex_state = 53}, + [1077] = {.lex_state = 49}, [1078] = {.lex_state = 49}, - [1079] = {.lex_state = 53}, + [1079] = {.lex_state = 49}, [1080] = {.lex_state = 49}, - [1081] = {.lex_state = 49}, + [1081] = {.lex_state = 52}, [1082] = {.lex_state = 49}, [1083] = {.lex_state = 49}, [1084] = {.lex_state = 49}, @@ -10471,7 +10516,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1086] = {.lex_state = 49}, [1087] = {.lex_state = 49}, [1088] = {.lex_state = 49}, - [1089] = {.lex_state = 53}, + [1089] = {.lex_state = 49}, [1090] = {.lex_state = 49}, [1091] = {.lex_state = 49}, [1092] = {.lex_state = 49}, @@ -10481,532 +10526,532 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1096] = {.lex_state = 49}, [1097] = {.lex_state = 49}, [1098] = {.lex_state = 49}, - [1099] = {.lex_state = 53}, + [1099] = {.lex_state = 49}, [1100] = {.lex_state = 49}, [1101] = {.lex_state = 49}, - [1102] = {.lex_state = 53}, - [1103] = {.lex_state = 53}, + [1102] = {.lex_state = 49}, + [1103] = {.lex_state = 49}, [1104] = {.lex_state = 49}, - [1105] = {.lex_state = 53}, + [1105] = {.lex_state = 49}, [1106] = {.lex_state = 49}, - [1107] = {.lex_state = 53}, - [1108] = {.lex_state = 53}, - [1109] = {.lex_state = 53}, + [1107] = {.lex_state = 49}, + [1108] = {.lex_state = 49}, + [1109] = {.lex_state = 49}, [1110] = {.lex_state = 49}, [1111] = {.lex_state = 49}, [1112] = {.lex_state = 49}, [1113] = {.lex_state = 49}, - [1114] = {.lex_state = 53}, + [1114] = {.lex_state = 49}, [1115] = {.lex_state = 49}, - [1116] = {.lex_state = 53}, - [1117] = {.lex_state = 53}, + [1116] = {.lex_state = 49}, + [1117] = {.lex_state = 49}, [1118] = {.lex_state = 49}, - [1119] = {.lex_state = 53}, - [1120] = {.lex_state = 53}, - [1121] = {.lex_state = 53}, - [1122] = {.lex_state = 53}, - [1123] = {.lex_state = 53}, - [1124] = {.lex_state = 53}, - [1125] = {.lex_state = 53}, - [1126] = {.lex_state = 53}, - [1127] = {.lex_state = 53}, - [1128] = {.lex_state = 53}, - [1129] = {.lex_state = 53}, - [1130] = {.lex_state = 53}, - [1131] = {.lex_state = 53}, - [1132] = {.lex_state = 53}, - [1133] = {.lex_state = 53}, - [1134] = {.lex_state = 53}, - [1135] = {.lex_state = 53}, - [1136] = {.lex_state = 53}, - [1137] = {.lex_state = 53}, - [1138] = {.lex_state = 53}, - [1139] = {.lex_state = 53}, + [1119] = {.lex_state = 49}, + [1120] = {.lex_state = 49}, + [1121] = {.lex_state = 49}, + [1122] = {.lex_state = 49}, + [1123] = {.lex_state = 52}, + [1124] = {.lex_state = 52}, + [1125] = {.lex_state = 52}, + [1126] = {.lex_state = 52}, + [1127] = {.lex_state = 52}, + [1128] = {.lex_state = 49}, + [1129] = {.lex_state = 52}, + [1130] = {.lex_state = 49}, + [1131] = {.lex_state = 52}, + [1132] = {.lex_state = 52}, + [1133] = {.lex_state = 52}, + [1134] = {.lex_state = 52}, + [1135] = {.lex_state = 52}, + [1136] = {.lex_state = 52}, + [1137] = {.lex_state = 52}, + [1138] = {.lex_state = 52}, + [1139] = {.lex_state = 52}, [1140] = {.lex_state = 52}, - [1141] = {.lex_state = 53}, - [1142] = {.lex_state = 53}, - [1143] = {.lex_state = 53}, - [1144] = {.lex_state = 53}, - [1145] = {.lex_state = 53}, - [1146] = {.lex_state = 48}, - [1147] = {.lex_state = 53}, - [1148] = {.lex_state = 52}, - [1149] = {.lex_state = 53}, + [1141] = {.lex_state = 52}, + [1142] = {.lex_state = 52}, + [1143] = {.lex_state = 52}, + [1144] = {.lex_state = 52}, + [1145] = {.lex_state = 52}, + [1146] = {.lex_state = 52}, + [1147] = {.lex_state = 52}, + [1148] = {.lex_state = 53}, + [1149] = {.lex_state = 52}, [1150] = {.lex_state = 52}, - [1151] = {.lex_state = 25}, + [1151] = {.lex_state = 52}, [1152] = {.lex_state = 48}, - [1153] = {.lex_state = 53}, - [1154] = {.lex_state = 53}, - [1155] = {.lex_state = 53}, - [1156] = {.lex_state = 53}, + [1153] = {.lex_state = 52}, + [1154] = {.lex_state = 52}, + [1155] = {.lex_state = 52}, + [1156] = {.lex_state = 52}, [1157] = {.lex_state = 52}, [1158] = {.lex_state = 53}, - [1159] = {.lex_state = 48}, - [1160] = {.lex_state = 52}, - [1161] = {.lex_state = 48}, + [1159] = {.lex_state = 52}, + [1160] = {.lex_state = 25}, + [1161] = {.lex_state = 52}, [1162] = {.lex_state = 52}, [1163] = {.lex_state = 52}, [1164] = {.lex_state = 52}, - [1165] = {.lex_state = 52}, + [1165] = {.lex_state = 48}, [1166] = {.lex_state = 52}, - [1167] = {.lex_state = 48}, + [1167] = {.lex_state = 52}, [1168] = {.lex_state = 52}, [1169] = {.lex_state = 52}, - [1170] = {.lex_state = 52}, - [1171] = {.lex_state = 48}, + [1170] = {.lex_state = 53}, + [1171] = {.lex_state = 52}, [1172] = {.lex_state = 48}, - [1173] = {.lex_state = 48}, + [1173] = {.lex_state = 52}, [1174] = {.lex_state = 52}, [1175] = {.lex_state = 52}, [1176] = {.lex_state = 53}, - [1177] = {.lex_state = 48}, - [1178] = {.lex_state = 48}, - [1179] = {.lex_state = 48}, - [1180] = {.lex_state = 52}, + [1177] = {.lex_state = 52}, + [1178] = {.lex_state = 52}, + [1179] = {.lex_state = 52}, + [1180] = {.lex_state = 48}, [1181] = {.lex_state = 48}, - [1182] = {.lex_state = 48}, + [1182] = {.lex_state = 52}, [1183] = {.lex_state = 48}, [1184] = {.lex_state = 53}, [1185] = {.lex_state = 48}, [1186] = {.lex_state = 48}, [1187] = {.lex_state = 48}, [1188] = {.lex_state = 48}, - [1189] = {.lex_state = 48}, + [1189] = {.lex_state = 53}, [1190] = {.lex_state = 48}, [1191] = {.lex_state = 48}, - [1192] = {.lex_state = 52}, - [1193] = {.lex_state = 48}, + [1192] = {.lex_state = 48}, + [1193] = {.lex_state = 53}, [1194] = {.lex_state = 48}, [1195] = {.lex_state = 48}, - [1196] = {.lex_state = 53}, - [1197] = {.lex_state = 52}, - [1198] = {.lex_state = 53}, + [1196] = {.lex_state = 48}, + [1197] = {.lex_state = 53}, + [1198] = {.lex_state = 48}, [1199] = {.lex_state = 48}, [1200] = {.lex_state = 48}, [1201] = {.lex_state = 48}, [1202] = {.lex_state = 48}, - [1203] = {.lex_state = 48}, + [1203] = {.lex_state = 53}, [1204] = {.lex_state = 48}, - [1205] = {.lex_state = 48}, - [1206] = {.lex_state = 48}, - [1207] = {.lex_state = 52}, + [1205] = {.lex_state = 53}, + [1206] = {.lex_state = 53}, + [1207] = {.lex_state = 53}, [1208] = {.lex_state = 48}, [1209] = {.lex_state = 48}, - [1210] = {.lex_state = 48}, - [1211] = {.lex_state = 52}, - [1212] = {.lex_state = 48}, + [1210] = {.lex_state = 53}, + [1211] = {.lex_state = 48}, + [1212] = {.lex_state = 53}, [1213] = {.lex_state = 48}, - [1214] = {.lex_state = 48}, - [1215] = {.lex_state = 48}, - [1216] = {.lex_state = 48}, - [1217] = {.lex_state = 48}, - [1218] = {.lex_state = 53}, - [1219] = {.lex_state = 48}, - [1220] = {.lex_state = 25}, - [1221] = {.lex_state = 25}, - [1222] = {.lex_state = 25}, - [1223] = {.lex_state = 53}, - [1224] = {.lex_state = 25}, - [1225] = {.lex_state = 25}, - [1226] = {.lex_state = 53}, - [1227] = {.lex_state = 25}, - [1228] = {.lex_state = 53}, - [1229] = {.lex_state = 53}, - [1230] = {.lex_state = 25}, - [1231] = {.lex_state = 25}, - [1232] = {.lex_state = 25}, - [1233] = {.lex_state = 25}, - [1234] = {.lex_state = 25}, - [1235] = {.lex_state = 53}, + [1214] = {.lex_state = 53}, + [1215] = {.lex_state = 53}, + [1216] = {.lex_state = 53}, + [1217] = {.lex_state = 53}, + [1218] = {.lex_state = 48}, + [1219] = {.lex_state = 53}, + [1220] = {.lex_state = 48}, + [1221] = {.lex_state = 48}, + [1222] = {.lex_state = 48}, + [1223] = {.lex_state = 48}, + [1224] = {.lex_state = 48}, + [1225] = {.lex_state = 48}, + [1226] = {.lex_state = 48}, + [1227] = {.lex_state = 48}, + [1228] = {.lex_state = 48}, + [1229] = {.lex_state = 48}, + [1230] = {.lex_state = 48}, + [1231] = {.lex_state = 53}, + [1232] = {.lex_state = 48}, + [1233] = {.lex_state = 48}, + [1234] = {.lex_state = 48}, + [1235] = {.lex_state = 48}, [1236] = {.lex_state = 25}, - [1237] = {.lex_state = 52}, - [1238] = {.lex_state = 25}, + [1237] = {.lex_state = 25}, + [1238] = {.lex_state = 52}, [1239] = {.lex_state = 53}, [1240] = {.lex_state = 25}, - [1241] = {.lex_state = 25}, - [1242] = {.lex_state = 25}, + [1241] = {.lex_state = 53}, + [1242] = {.lex_state = 52}, [1243] = {.lex_state = 25}, [1244] = {.lex_state = 25}, - [1245] = {.lex_state = 53}, + [1245] = {.lex_state = 25}, [1246] = {.lex_state = 25}, [1247] = {.lex_state = 25}, [1248] = {.lex_state = 25}, - [1249] = {.lex_state = 53}, + [1249] = {.lex_state = 25}, [1250] = {.lex_state = 25}, [1251] = {.lex_state = 25}, [1252] = {.lex_state = 25}, - [1253] = {.lex_state = 53}, - [1254] = {.lex_state = 52}, + [1253] = {.lex_state = 25}, + [1254] = {.lex_state = 25}, [1255] = {.lex_state = 25}, - [1256] = {.lex_state = 25}, - [1257] = {.lex_state = 25}, - [1258] = {.lex_state = 53}, + [1256] = {.lex_state = 52}, + [1257] = {.lex_state = 52}, + [1258] = {.lex_state = 25}, [1259] = {.lex_state = 25}, - [1260] = {.lex_state = 53}, - [1261] = {.lex_state = 53}, + [1260] = {.lex_state = 25}, + [1261] = {.lex_state = 25}, [1262] = {.lex_state = 25}, - [1263] = {.lex_state = 53}, + [1263] = {.lex_state = 25}, [1264] = {.lex_state = 25}, - [1265] = {.lex_state = 53}, + [1265] = {.lex_state = 25}, [1266] = {.lex_state = 25}, - [1267] = {.lex_state = 25}, + [1267] = {.lex_state = 52}, [1268] = {.lex_state = 25}, - [1269] = {.lex_state = 53}, - [1270] = {.lex_state = 53}, - [1271] = {.lex_state = 53}, - [1272] = {.lex_state = 53}, - [1273] = {.lex_state = 53}, - [1274] = {.lex_state = 53}, - [1275] = {.lex_state = 53}, - [1276] = {.lex_state = 53}, - [1277] = {.lex_state = 53}, - [1278] = {.lex_state = 53}, - [1279] = {.lex_state = 53}, - [1280] = {.lex_state = 53}, - [1281] = {.lex_state = 53}, - [1282] = {.lex_state = 53}, - [1283] = {.lex_state = 53}, - [1284] = {.lex_state = 53}, - [1285] = {.lex_state = 53}, - [1286] = {.lex_state = 53}, - [1287] = {.lex_state = 53}, - [1288] = {.lex_state = 53}, - [1289] = {.lex_state = 53}, - [1290] = {.lex_state = 50}, - [1291] = {.lex_state = 53}, - [1292] = {.lex_state = 53}, - [1293] = {.lex_state = 53}, - [1294] = {.lex_state = 50}, - [1295] = {.lex_state = 53}, - [1296] = {.lex_state = 53}, - [1297] = {.lex_state = 53}, + [1269] = {.lex_state = 25}, + [1270] = {.lex_state = 25}, + [1271] = {.lex_state = 25}, + [1272] = {.lex_state = 25}, + [1273] = {.lex_state = 25}, + [1274] = {.lex_state = 25}, + [1275] = {.lex_state = 25}, + [1276] = {.lex_state = 52}, + [1277] = {.lex_state = 52}, + [1278] = {.lex_state = 52}, + [1279] = {.lex_state = 52}, + [1280] = {.lex_state = 52}, + [1281] = {.lex_state = 52}, + [1282] = {.lex_state = 52}, + [1283] = {.lex_state = 52}, + [1284] = {.lex_state = 52}, + [1285] = {.lex_state = 52}, + [1286] = {.lex_state = 52}, + [1287] = {.lex_state = 52}, + [1288] = {.lex_state = 52}, + [1289] = {.lex_state = 52}, + [1290] = {.lex_state = 52}, + [1291] = {.lex_state = 52}, + [1292] = {.lex_state = 52}, + [1293] = {.lex_state = 52}, + [1294] = {.lex_state = 52}, + [1295] = {.lex_state = 52}, + [1296] = {.lex_state = 52}, + [1297] = {.lex_state = 50}, [1298] = {.lex_state = 50}, - [1299] = {.lex_state = 53}, + [1299] = {.lex_state = 50}, [1300] = {.lex_state = 50}, - [1301] = {.lex_state = 53}, - [1302] = {.lex_state = 53}, - [1303] = {.lex_state = 53}, - [1304] = {.lex_state = 53}, - [1305] = {.lex_state = 53}, - [1306] = {.lex_state = 53}, - [1307] = {.lex_state = 53}, - [1308] = {.lex_state = 53}, - [1309] = {.lex_state = 53}, - [1310] = {.lex_state = 56}, - [1311] = {.lex_state = 53}, - [1312] = {.lex_state = 53}, - [1313] = {.lex_state = 53}, - [1314] = {.lex_state = 53}, - [1315] = {.lex_state = 53}, - [1316] = {.lex_state = 53}, - [1317] = {.lex_state = 56}, - [1318] = {.lex_state = 53}, - [1319] = {.lex_state = 53}, - [1320] = {.lex_state = 53}, - [1321] = {.lex_state = 53}, - [1322] = {.lex_state = 53}, - [1323] = {.lex_state = 53}, - [1324] = {.lex_state = 53}, - [1325] = {.lex_state = 50}, - [1326] = {.lex_state = 50}, - [1327] = {.lex_state = 53}, - [1328] = {.lex_state = 50}, - [1329] = {.lex_state = 53}, - [1330] = {.lex_state = 50}, - [1331] = {.lex_state = 50}, - [1332] = {.lex_state = 50}, - [1333] = {.lex_state = 53}, - [1334] = {.lex_state = 53}, - [1335] = {.lex_state = 53}, - [1336] = {.lex_state = 53}, - [1337] = {.lex_state = 53}, + [1301] = {.lex_state = 52}, + [1302] = {.lex_state = 52}, + [1303] = {.lex_state = 52}, + [1304] = {.lex_state = 52}, + [1305] = {.lex_state = 52}, + [1306] = {.lex_state = 52}, + [1307] = {.lex_state = 52}, + [1308] = {.lex_state = 52}, + [1309] = {.lex_state = 52}, + [1310] = {.lex_state = 52}, + [1311] = {.lex_state = 52}, + [1312] = {.lex_state = 52}, + [1313] = {.lex_state = 52}, + [1314] = {.lex_state = 52}, + [1315] = {.lex_state = 52}, + [1316] = {.lex_state = 52}, + [1317] = {.lex_state = 52}, + [1318] = {.lex_state = 52}, + [1319] = {.lex_state = 52}, + [1320] = {.lex_state = 52}, + [1321] = {.lex_state = 52}, + [1322] = {.lex_state = 52}, + [1323] = {.lex_state = 52}, + [1324] = {.lex_state = 52}, + [1325] = {.lex_state = 56}, + [1326] = {.lex_state = 56}, + [1327] = {.lex_state = 52}, + [1328] = {.lex_state = 52}, + [1329] = {.lex_state = 52}, + [1330] = {.lex_state = 52}, + [1331] = {.lex_state = 52}, + [1332] = {.lex_state = 52}, + [1333] = {.lex_state = 50}, + [1334] = {.lex_state = 50}, + [1335] = {.lex_state = 50}, + [1336] = {.lex_state = 50}, + [1337] = {.lex_state = 56}, [1338] = {.lex_state = 50}, - [1339] = {.lex_state = 50}, - [1340] = {.lex_state = 53}, + [1339] = {.lex_state = 52}, + [1340] = {.lex_state = 50}, [1341] = {.lex_state = 50}, - [1342] = {.lex_state = 53}, - [1343] = {.lex_state = 53}, - [1344] = {.lex_state = 49}, + [1342] = {.lex_state = 50}, + [1343] = {.lex_state = 50}, + [1344] = {.lex_state = 50}, [1345] = {.lex_state = 50}, - [1346] = {.lex_state = 50}, - [1347] = {.lex_state = 53}, - [1348] = {.lex_state = 50}, - [1349] = {.lex_state = 56}, - [1350] = {.lex_state = 53}, - [1351] = {.lex_state = 50}, - [1352] = {.lex_state = 50}, - [1353] = {.lex_state = 53}, - [1354] = {.lex_state = 53}, - [1355] = {.lex_state = 0}, - [1356] = {.lex_state = 53}, - [1357] = {.lex_state = 53}, - [1358] = {.lex_state = 119}, - [1359] = {.lex_state = 119}, - [1360] = {.lex_state = 53}, - [1361] = {.lex_state = 53}, - [1362] = {.lex_state = 119}, - [1363] = {.lex_state = 53}, - [1364] = {.lex_state = 53}, - [1365] = {.lex_state = 53}, - [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 53}, - [1368] = {.lex_state = 53}, - [1369] = {.lex_state = 53}, - [1370] = {.lex_state = 119}, - [1371] = {.lex_state = 53}, - [1372] = {.lex_state = 53}, + [1346] = {.lex_state = 52}, + [1347] = {.lex_state = 52}, + [1348] = {.lex_state = 52}, + [1349] = {.lex_state = 52}, + [1350] = {.lex_state = 52}, + [1351] = {.lex_state = 52}, + [1352] = {.lex_state = 49}, + [1353] = {.lex_state = 52}, + [1354] = {.lex_state = 52}, + [1355] = {.lex_state = 52}, + [1356] = {.lex_state = 52}, + [1357] = {.lex_state = 50}, + [1358] = {.lex_state = 50}, + [1359] = {.lex_state = 50}, + [1360] = {.lex_state = 52}, + [1361] = {.lex_state = 52}, + [1362] = {.lex_state = 52}, + [1363] = {.lex_state = 52}, + [1364] = {.lex_state = 52}, + [1365] = {.lex_state = 52}, + [1366] = {.lex_state = 52}, + [1367] = {.lex_state = 52}, + [1368] = {.lex_state = 119}, + [1369] = {.lex_state = 52}, + [1370] = {.lex_state = 0}, + [1371] = {.lex_state = 52}, + [1372] = {.lex_state = 52}, [1373] = {.lex_state = 119}, - [1374] = {.lex_state = 54}, - [1375] = {.lex_state = 119}, + [1374] = {.lex_state = 119}, + [1375] = {.lex_state = 0}, [1376] = {.lex_state = 119}, - [1377] = {.lex_state = 119}, - [1378] = {.lex_state = 119}, - [1379] = {.lex_state = 119}, - [1380] = {.lex_state = 49}, + [1377] = {.lex_state = 52}, + [1378] = {.lex_state = 52}, + [1379] = {.lex_state = 49}, + [1380] = {.lex_state = 119}, [1381] = {.lex_state = 119}, - [1382] = {.lex_state = 53}, - [1383] = {.lex_state = 54}, - [1384] = {.lex_state = 53}, - [1385] = {.lex_state = 49}, - [1386] = {.lex_state = 54}, + [1382] = {.lex_state = 119}, + [1383] = {.lex_state = 119}, + [1384] = {.lex_state = 119}, + [1385] = {.lex_state = 54}, + [1386] = {.lex_state = 119}, [1387] = {.lex_state = 49}, - [1388] = {.lex_state = 54}, - [1389] = {.lex_state = 119}, + [1388] = {.lex_state = 52}, + [1389] = {.lex_state = 54}, [1390] = {.lex_state = 119}, - [1391] = {.lex_state = 53}, + [1391] = {.lex_state = 54}, [1392] = {.lex_state = 119}, - [1393] = {.lex_state = 53}, - [1394] = {.lex_state = 119}, - [1395] = {.lex_state = 53}, - [1396] = {.lex_state = 53}, - [1397] = {.lex_state = 119}, - [1398] = {.lex_state = 53}, - [1399] = {.lex_state = 53}, + [1393] = {.lex_state = 52}, + [1394] = {.lex_state = 49}, + [1395] = {.lex_state = 119}, + [1396] = {.lex_state = 54}, + [1397] = {.lex_state = 52}, + [1398] = {.lex_state = 119}, + [1399] = {.lex_state = 50}, [1400] = {.lex_state = 119}, - [1401] = {.lex_state = 119}, - [1402] = {.lex_state = 119}, - [1403] = {.lex_state = 119}, + [1401] = {.lex_state = 0}, + [1402] = {.lex_state = 0}, + [1403] = {.lex_state = 52}, [1404] = {.lex_state = 119}, - [1405] = {.lex_state = 53}, + [1405] = {.lex_state = 119}, [1406] = {.lex_state = 119}, - [1407] = {.lex_state = 53}, - [1408] = {.lex_state = 119}, - [1409] = {.lex_state = 50}, - [1410] = {.lex_state = 50}, - [1411] = {.lex_state = 50}, + [1407] = {.lex_state = 119}, + [1408] = {.lex_state = 52}, + [1409] = {.lex_state = 119}, + [1410] = {.lex_state = 52}, + [1411] = {.lex_state = 52}, [1412] = {.lex_state = 119}, [1413] = {.lex_state = 119}, - [1414] = {.lex_state = 119}, - [1415] = {.lex_state = 53}, - [1416] = {.lex_state = 0}, - [1417] = {.lex_state = 53}, - [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 53}, - [1420] = {.lex_state = 53}, - [1421] = {.lex_state = 119}, - [1422] = {.lex_state = 53}, - [1423] = {.lex_state = 53}, - [1424] = {.lex_state = 53}, - [1425] = {.lex_state = 119}, - [1426] = {.lex_state = 53}, - [1427] = {.lex_state = 53}, + [1414] = {.lex_state = 52}, + [1415] = {.lex_state = 52}, + [1416] = {.lex_state = 119}, + [1417] = {.lex_state = 52}, + [1418] = {.lex_state = 119}, + [1419] = {.lex_state = 52}, + [1420] = {.lex_state = 52}, + [1421] = {.lex_state = 50}, + [1422] = {.lex_state = 119}, + [1423] = {.lex_state = 119}, + [1424] = {.lex_state = 50}, + [1425] = {.lex_state = 52}, + [1426] = {.lex_state = 0}, + [1427] = {.lex_state = 119}, [1428] = {.lex_state = 119}, - [1429] = {.lex_state = 0}, + [1429] = {.lex_state = 119}, [1430] = {.lex_state = 119}, - [1431] = {.lex_state = 53}, - [1432] = {.lex_state = 119}, - [1433] = {.lex_state = 53}, - [1434] = {.lex_state = 53}, - [1435] = {.lex_state = 53}, - [1436] = {.lex_state = 53}, - [1437] = {.lex_state = 119}, - [1438] = {.lex_state = 53}, - [1439] = {.lex_state = 119}, + [1431] = {.lex_state = 52}, + [1432] = {.lex_state = 52}, + [1433] = {.lex_state = 119}, + [1434] = {.lex_state = 119}, + [1435] = {.lex_state = 52}, + [1436] = {.lex_state = 52}, + [1437] = {.lex_state = 52}, + [1438] = {.lex_state = 119}, + [1439] = {.lex_state = 52}, [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 53}, - [1442] = {.lex_state = 50}, - [1443] = {.lex_state = 53}, - [1444] = {.lex_state = 53}, - [1445] = {.lex_state = 53}, - [1446] = {.lex_state = 119}, - [1447] = {.lex_state = 56}, - [1448] = {.lex_state = 119}, + [1441] = {.lex_state = 50}, + [1442] = {.lex_state = 52}, + [1443] = {.lex_state = 52}, + [1444] = {.lex_state = 52}, + [1445] = {.lex_state = 52}, + [1446] = {.lex_state = 52}, + [1447] = {.lex_state = 52}, + [1448] = {.lex_state = 52}, [1449] = {.lex_state = 119}, - [1450] = {.lex_state = 53}, + [1450] = {.lex_state = 0}, [1451] = {.lex_state = 0}, [1452] = {.lex_state = 56}, - [1453] = {.lex_state = 56}, + [1453] = {.lex_state = 50}, [1454] = {.lex_state = 56}, [1455] = {.lex_state = 56}, - [1456] = {.lex_state = 0}, - [1457] = {.lex_state = 0}, - [1458] = {.lex_state = 53}, - [1459] = {.lex_state = 119}, - [1460] = {.lex_state = 53}, - [1461] = {.lex_state = 53}, - [1462] = {.lex_state = 56}, - [1463] = {.lex_state = 53}, - [1464] = {.lex_state = 56}, - [1465] = {.lex_state = 50}, - [1466] = {.lex_state = 53}, + [1456] = {.lex_state = 56}, + [1457] = {.lex_state = 56}, + [1458] = {.lex_state = 52}, + [1459] = {.lex_state = 56}, + [1460] = {.lex_state = 52}, + [1461] = {.lex_state = 0}, + [1462] = {.lex_state = 52}, + [1463] = {.lex_state = 56}, + [1464] = {.lex_state = 119}, + [1465] = {.lex_state = 119}, + [1466] = {.lex_state = 56}, [1467] = {.lex_state = 56}, - [1468] = {.lex_state = 53}, + [1468] = {.lex_state = 56}, [1469] = {.lex_state = 119}, - [1470] = {.lex_state = 53}, - [1471] = {.lex_state = 56}, - [1472] = {.lex_state = 53}, + [1470] = {.lex_state = 52}, + [1471] = {.lex_state = 52}, + [1472] = {.lex_state = 56}, [1473] = {.lex_state = 119}, - [1474] = {.lex_state = 119}, + [1474] = {.lex_state = 52}, [1475] = {.lex_state = 119}, - [1476] = {.lex_state = 56}, - [1477] = {.lex_state = 53}, - [1478] = {.lex_state = 56}, - [1479] = {.lex_state = 53}, - [1480] = {.lex_state = 53}, - [1481] = {.lex_state = 119}, - [1482] = {.lex_state = 119}, - [1483] = {.lex_state = 119}, - [1484] = {.lex_state = 119}, - [1485] = {.lex_state = 45}, - [1486] = {.lex_state = 53}, - [1487] = {.lex_state = 119}, - [1488] = {.lex_state = 119}, - [1489] = {.lex_state = 119}, + [1476] = {.lex_state = 52}, + [1477] = {.lex_state = 52}, + [1478] = {.lex_state = 52}, + [1479] = {.lex_state = 52}, + [1480] = {.lex_state = 119}, + [1481] = {.lex_state = 52}, + [1482] = {.lex_state = 52}, + [1483] = {.lex_state = 52}, + [1484] = {.lex_state = 52}, + [1485] = {.lex_state = 52}, + [1486] = {.lex_state = 119}, + [1487] = {.lex_state = 52}, + [1488] = {.lex_state = 52}, + [1489] = {.lex_state = 52}, [1490] = {.lex_state = 119}, - [1491] = {.lex_state = 53}, - [1492] = {.lex_state = 119}, - [1493] = {.lex_state = 119}, - [1494] = {.lex_state = 50}, - [1495] = {.lex_state = 53}, + [1491] = {.lex_state = 119}, + [1492] = {.lex_state = 50}, + [1493] = {.lex_state = 45}, + [1494] = {.lex_state = 119}, + [1495] = {.lex_state = 119}, [1496] = {.lex_state = 119}, [1497] = {.lex_state = 119}, [1498] = {.lex_state = 119}, - [1499] = {.lex_state = 53}, + [1499] = {.lex_state = 119}, [1500] = {.lex_state = 119}, - [1501] = {.lex_state = 53}, - [1502] = {.lex_state = 30}, - [1503] = {.lex_state = 53}, - [1504] = {.lex_state = 53}, - [1505] = {.lex_state = 53}, - [1506] = {.lex_state = 0}, - [1507] = {.lex_state = 53}, - [1508] = {.lex_state = 53}, - [1509] = {.lex_state = 0}, - [1510] = {.lex_state = 53}, - [1511] = {.lex_state = 53}, - [1512] = {.lex_state = 53}, - [1513] = {.lex_state = 0}, - [1514] = {.lex_state = 32}, + [1501] = {.lex_state = 119}, + [1502] = {.lex_state = 119}, + [1503] = {.lex_state = 119}, + [1504] = {.lex_state = 52}, + [1505] = {.lex_state = 119}, + [1506] = {.lex_state = 119}, + [1507] = {.lex_state = 30}, + [1508] = {.lex_state = 52}, + [1509] = {.lex_state = 30}, + [1510] = {.lex_state = 50}, + [1511] = {.lex_state = 0}, + [1512] = {.lex_state = 35}, + [1513] = {.lex_state = 52}, + [1514] = {.lex_state = 52}, [1515] = {.lex_state = 37}, - [1516] = {.lex_state = 53}, - [1517] = {.lex_state = 32}, - [1518] = {.lex_state = 32}, - [1519] = {.lex_state = 0}, - [1520] = {.lex_state = 0}, + [1516] = {.lex_state = 52}, + [1517] = {.lex_state = 52}, + [1518] = {.lex_state = 52}, + [1519] = {.lex_state = 52}, + [1520] = {.lex_state = 30}, [1521] = {.lex_state = 0}, [1522] = {.lex_state = 30}, - [1523] = {.lex_state = 119}, - [1524] = {.lex_state = 53}, - [1525] = {.lex_state = 37}, - [1526] = {.lex_state = 32}, - [1527] = {.lex_state = 53}, - [1528] = {.lex_state = 37}, - [1529] = {.lex_state = 0}, - [1530] = {.lex_state = 53}, - [1531] = {.lex_state = 53}, - [1532] = {.lex_state = 0}, + [1523] = {.lex_state = 52}, + [1524] = {.lex_state = 52}, + [1525] = {.lex_state = 52}, + [1526] = {.lex_state = 50}, + [1527] = {.lex_state = 35}, + [1528] = {.lex_state = 0}, + [1529] = {.lex_state = 37}, + [1530] = {.lex_state = 0}, + [1531] = {.lex_state = 52}, + [1532] = {.lex_state = 30}, [1533] = {.lex_state = 0}, [1534] = {.lex_state = 119}, - [1535] = {.lex_state = 53}, - [1536] = {.lex_state = 53}, - [1537] = {.lex_state = 53}, - [1538] = {.lex_state = 32}, - [1539] = {.lex_state = 0}, - [1540] = {.lex_state = 53}, - [1541] = {.lex_state = 53}, - [1542] = {.lex_state = 53}, - [1543] = {.lex_state = 53}, - [1544] = {.lex_state = 30}, - [1545] = {.lex_state = 53}, - [1546] = {.lex_state = 50}, - [1547] = {.lex_state = 53}, - [1548] = {.lex_state = 32}, - [1549] = {.lex_state = 32}, - [1550] = {.lex_state = 53}, - [1551] = {.lex_state = 53}, - [1552] = {.lex_state = 53}, - [1553] = {.lex_state = 50}, - [1554] = {.lex_state = 50}, - [1555] = {.lex_state = 53}, - [1556] = {.lex_state = 37}, - [1557] = {.lex_state = 37}, - [1558] = {.lex_state = 37}, - [1559] = {.lex_state = 53}, - [1560] = {.lex_state = 30}, - [1561] = {.lex_state = 53}, - [1562] = {.lex_state = 50}, - [1563] = {.lex_state = 45}, + [1535] = {.lex_state = 35}, + [1536] = {.lex_state = 35}, + [1537] = {.lex_state = 0}, + [1538] = {.lex_state = 52}, + [1539] = {.lex_state = 52}, + [1540] = {.lex_state = 52}, + [1541] = {.lex_state = 52}, + [1542] = {.lex_state = 0}, + [1543] = {.lex_state = 52}, + [1544] = {.lex_state = 35}, + [1545] = {.lex_state = 52}, + [1546] = {.lex_state = 37}, + [1547] = {.lex_state = 52}, + [1548] = {.lex_state = 52}, + [1549] = {.lex_state = 45}, + [1550] = {.lex_state = 52}, + [1551] = {.lex_state = 52}, + [1552] = {.lex_state = 30}, + [1553] = {.lex_state = 52}, + [1554] = {.lex_state = 0}, + [1555] = {.lex_state = 52}, + [1556] = {.lex_state = 50}, + [1557] = {.lex_state = 30}, + [1558] = {.lex_state = 35}, + [1559] = {.lex_state = 50}, + [1560] = {.lex_state = 52}, + [1561] = {.lex_state = 52}, + [1562] = {.lex_state = 35}, + [1563] = {.lex_state = 119}, [1564] = {.lex_state = 37}, - [1565] = {.lex_state = 0}, - [1566] = {.lex_state = 0}, - [1567] = {.lex_state = 0}, - [1568] = {.lex_state = 0}, + [1565] = {.lex_state = 52}, + [1566] = {.lex_state = 52}, + [1567] = {.lex_state = 52}, + [1568] = {.lex_state = 52}, [1569] = {.lex_state = 0}, [1570] = {.lex_state = 0}, [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 0}, + [1572] = {.lex_state = 52}, [1573] = {.lex_state = 0}, - [1574] = {.lex_state = 0}, + [1574] = {.lex_state = 52}, [1575] = {.lex_state = 0}, [1576] = {.lex_state = 0}, [1577] = {.lex_state = 0}, - [1578] = {.lex_state = 0}, + [1578] = {.lex_state = 37}, [1579] = {.lex_state = 0}, - [1580] = {.lex_state = 53}, + [1580] = {.lex_state = 32}, [1581] = {.lex_state = 45}, [1582] = {.lex_state = 0}, [1583] = {.lex_state = 0}, [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 0}, - [1586] = {.lex_state = 0}, + [1585] = {.lex_state = 52}, + [1586] = {.lex_state = 52}, [1587] = {.lex_state = 0}, - [1588] = {.lex_state = 53}, + [1588] = {.lex_state = 0}, [1589] = {.lex_state = 0}, - [1590] = {.lex_state = 0}, + [1590] = {.lex_state = 52}, [1591] = {.lex_state = 0}, [1592] = {.lex_state = 0}, - [1593] = {.lex_state = 45}, + [1593] = {.lex_state = 0}, [1594] = {.lex_state = 0}, - [1595] = {.lex_state = 0}, + [1595] = {.lex_state = 37}, [1596] = {.lex_state = 0}, - [1597] = {.lex_state = 0}, + [1597] = {.lex_state = 52}, [1598] = {.lex_state = 0}, - [1599] = {.lex_state = 53}, + [1599] = {.lex_state = 0}, [1600] = {.lex_state = 0}, - [1601] = {.lex_state = 0}, - [1602] = {.lex_state = 0}, - [1603] = {.lex_state = 53}, - [1604] = {.lex_state = 53}, + [1601] = {.lex_state = 52}, + [1602] = {.lex_state = 45}, + [1603] = {.lex_state = 52}, + [1604] = {.lex_state = 0}, [1605] = {.lex_state = 0}, - [1606] = {.lex_state = 0}, + [1606] = {.lex_state = 52}, [1607] = {.lex_state = 0}, [1608] = {.lex_state = 0}, [1609] = {.lex_state = 0}, [1610] = {.lex_state = 0}, - [1611] = {.lex_state = 30}, - [1612] = {.lex_state = 34}, - [1613] = {.lex_state = 53}, - [1614] = {.lex_state = 34}, - [1615] = {.lex_state = 45}, + [1611] = {.lex_state = 0}, + [1612] = {.lex_state = 0}, + [1613] = {.lex_state = 0}, + [1614] = {.lex_state = 32}, + [1615] = {.lex_state = 0}, [1616] = {.lex_state = 0}, - [1617] = {.lex_state = 45}, + [1617] = {.lex_state = 37}, [1618] = {.lex_state = 0}, [1619] = {.lex_state = 0}, - [1620] = {.lex_state = 0}, + [1620] = {.lex_state = 45}, [1621] = {.lex_state = 0}, [1622] = {.lex_state = 0}, [1623] = {.lex_state = 0}, - [1624] = {.lex_state = 34}, + [1624] = {.lex_state = 0}, [1625] = {.lex_state = 0}, [1626] = {.lex_state = 0}, [1627] = {.lex_state = 0}, @@ -11018,26 +11063,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1633] = {.lex_state = 0}, [1634] = {.lex_state = 0}, [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 0}, + [1636] = {.lex_state = 32}, [1637] = {.lex_state = 0}, - [1638] = {.lex_state = 53}, + [1638] = {.lex_state = 0}, [1639] = {.lex_state = 0}, [1640] = {.lex_state = 0}, - [1641] = {.lex_state = 53}, - [1642] = {.lex_state = 45}, - [1643] = {.lex_state = 45}, + [1641] = {.lex_state = 0}, + [1642] = {.lex_state = 0}, + [1643] = {.lex_state = 0}, [1644] = {.lex_state = 0}, [1645] = {.lex_state = 0}, [1646] = {.lex_state = 0}, [1647] = {.lex_state = 0}, - [1648] = {.lex_state = 53}, - [1649] = {.lex_state = 0}, - [1650] = {.lex_state = 30}, + [1648] = {.lex_state = 0}, + [1649] = {.lex_state = 52}, + [1650] = {.lex_state = 0}, [1651] = {.lex_state = 45}, [1652] = {.lex_state = 0}, [1653] = {.lex_state = 0}, - [1654] = {.lex_state = 34}, - [1655] = {.lex_state = 0}, + [1654] = {.lex_state = 0}, + [1655] = {.lex_state = 52}, [1656] = {.lex_state = 0}, [1657] = {.lex_state = 0}, [1658] = {.lex_state = 0}, @@ -11046,7 +11091,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1661] = {.lex_state = 0}, [1662] = {.lex_state = 0}, [1663] = {.lex_state = 0}, - [1664] = {.lex_state = 53}, + [1664] = {.lex_state = 0}, [1665] = {.lex_state = 0}, [1666] = {.lex_state = 0}, [1667] = {.lex_state = 0}, @@ -11054,355 +11099,365 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1669] = {.lex_state = 0}, [1670] = {.lex_state = 0}, [1671] = {.lex_state = 0}, - [1672] = {.lex_state = 0}, + [1672] = {.lex_state = 45}, [1673] = {.lex_state = 0}, [1674] = {.lex_state = 0}, [1675] = {.lex_state = 0}, - [1676] = {.lex_state = 0}, + [1676] = {.lex_state = 32}, [1677] = {.lex_state = 0}, - [1678] = {.lex_state = 53}, + [1678] = {.lex_state = 0}, [1679] = {.lex_state = 0}, - [1680] = {.lex_state = 30}, - [1681] = {.lex_state = 0}, + [1680] = {.lex_state = 0}, + [1681] = {.lex_state = 45}, [1682] = {.lex_state = 0}, [1683] = {.lex_state = 0}, [1684] = {.lex_state = 0}, [1685] = {.lex_state = 0}, - [1686] = {.lex_state = 53}, - [1687] = {.lex_state = 119}, + [1686] = {.lex_state = 0}, + [1687] = {.lex_state = 45}, [1688] = {.lex_state = 0}, - [1689] = {.lex_state = 119}, - [1690] = {.lex_state = 119}, - [1691] = {.lex_state = 53}, - [1692] = {.lex_state = 119}, - [1693] = {.lex_state = 0}, - [1694] = {.lex_state = 119}, - [1695] = {.lex_state = 119}, - [1696] = {.lex_state = 0}, - [1697] = {.lex_state = 0}, - [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 33}, - [1700] = {.lex_state = 119}, + [1689] = {.lex_state = 52}, + [1690] = {.lex_state = 0}, + [1691] = {.lex_state = 0}, + [1692] = {.lex_state = 0}, + [1693] = {.lex_state = 31}, + [1694] = {.lex_state = 31}, + [1695] = {.lex_state = 31}, + [1696] = {.lex_state = 52}, + [1697] = {.lex_state = 119}, + [1698] = {.lex_state = 119}, + [1699] = {.lex_state = 119}, + [1700] = {.lex_state = 0}, [1701] = {.lex_state = 0}, - [1702] = {.lex_state = 33}, + [1702] = {.lex_state = 45}, [1703] = {.lex_state = 0}, [1704] = {.lex_state = 0}, - [1705] = {.lex_state = 119}, - [1706] = {.lex_state = 119}, - [1707] = {.lex_state = 0}, - [1708] = {.lex_state = 33}, - [1709] = {.lex_state = 119}, - [1710] = {.lex_state = 53}, - [1711] = {.lex_state = 33}, + [1705] = {.lex_state = 0}, + [1706] = {.lex_state = 52}, + [1707] = {.lex_state = 119}, + [1708] = {.lex_state = 119}, + [1709] = {.lex_state = 0}, + [1710] = {.lex_state = 119}, + [1711] = {.lex_state = 119}, [1712] = {.lex_state = 0}, [1713] = {.lex_state = 0}, [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 0}, + [1715] = {.lex_state = 119}, [1716] = {.lex_state = 119}, - [1717] = {.lex_state = 119}, - [1718] = {.lex_state = 33}, - [1719] = {.lex_state = 0}, + [1717] = {.lex_state = 0}, + [1718] = {.lex_state = 31}, + [1719] = {.lex_state = 119}, [1720] = {.lex_state = 0}, - [1721] = {.lex_state = 0}, - [1722] = {.lex_state = 33}, - [1723] = {.lex_state = 0}, + [1721] = {.lex_state = 119}, + [1722] = {.lex_state = 119}, + [1723] = {.lex_state = 45}, [1724] = {.lex_state = 0}, - [1725] = {.lex_state = 45}, + [1725] = {.lex_state = 119}, [1726] = {.lex_state = 0}, - [1727] = {.lex_state = 33}, - [1728] = {.lex_state = 45}, - [1729] = {.lex_state = 0}, - [1730] = {.lex_state = 33}, - [1731] = {.lex_state = 53}, - [1732] = {.lex_state = 0}, - [1733] = {.lex_state = 53}, - [1734] = {.lex_state = 119}, + [1727] = {.lex_state = 119}, + [1728] = {.lex_state = 119}, + [1729] = {.lex_state = 52}, + [1730] = {.lex_state = 31}, + [1731] = {.lex_state = 31}, + [1732] = {.lex_state = 31}, + [1733] = {.lex_state = 52}, + [1734] = {.lex_state = 45}, [1735] = {.lex_state = 119}, - [1736] = {.lex_state = 53}, + [1736] = {.lex_state = 119}, [1737] = {.lex_state = 0}, - [1738] = {.lex_state = 0}, - [1739] = {.lex_state = 0}, - [1740] = {.lex_state = 119}, - [1741] = {.lex_state = 119}, + [1738] = {.lex_state = 119}, + [1739] = {.lex_state = 119}, + [1740] = {.lex_state = 52}, + [1741] = {.lex_state = 0}, [1742] = {.lex_state = 119}, - [1743] = {.lex_state = 33}, + [1743] = {.lex_state = 0}, [1744] = {.lex_state = 0}, - [1745] = {.lex_state = 119}, - [1746] = {.lex_state = 33}, - [1747] = {.lex_state = 33}, + [1745] = {.lex_state = 0}, + [1746] = {.lex_state = 0}, + [1747] = {.lex_state = 0}, [1748] = {.lex_state = 0}, - [1749] = {.lex_state = 53}, - [1750] = {.lex_state = 0}, - [1751] = {.lex_state = 0}, - [1752] = {.lex_state = 53}, - [1753] = {.lex_state = 0}, - [1754] = {.lex_state = 119}, - [1755] = {.lex_state = 33}, - [1756] = {.lex_state = 119}, - [1757] = {.lex_state = 33}, - [1758] = {.lex_state = 45}, - [1759] = {.lex_state = 119}, - [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 33}, - [1762] = {.lex_state = 33}, - [1763] = {.lex_state = 33}, - [1764] = {.lex_state = 119}, - [1765] = {.lex_state = 0}, + [1749] = {.lex_state = 119}, + [1750] = {.lex_state = 119}, + [1751] = {.lex_state = 119}, + [1752] = {.lex_state = 0}, + [1753] = {.lex_state = 31}, + [1754] = {.lex_state = 52}, + [1755] = {.lex_state = 0}, + [1756] = {.lex_state = 31}, + [1757] = {.lex_state = 31}, + [1758] = {.lex_state = 31}, + [1759] = {.lex_state = 0}, + [1760] = {.lex_state = 52}, + [1761] = {.lex_state = 0}, + [1762] = {.lex_state = 52}, + [1763] = {.lex_state = 31}, + [1764] = {.lex_state = 0}, + [1765] = {.lex_state = 31}, [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 53}, - [1768] = {.lex_state = 119}, - [1769] = {.lex_state = 33}, + [1767] = {.lex_state = 31}, + [1768] = {.lex_state = 31}, + [1769] = {.lex_state = 119}, [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 119}, - [1772] = {.lex_state = 119}, + [1771] = {.lex_state = 0}, + [1772] = {.lex_state = 0}, [1773] = {.lex_state = 0}, [1774] = {.lex_state = 0}, [1775] = {.lex_state = 0}, - [1776] = {.lex_state = 44}, + [1776] = {.lex_state = 31}, [1777] = {.lex_state = 0}, [1778] = {.lex_state = 119}, - [1779] = {.lex_state = 44}, - [1780] = {.lex_state = 44}, + [1779] = {.lex_state = 31}, + [1780] = {.lex_state = 0}, [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 0}, - [1783] = {.lex_state = 34}, + [1782] = {.lex_state = 52}, + [1783] = {.lex_state = 44}, [1784] = {.lex_state = 44}, - [1785] = {.lex_state = 44}, - [1786] = {.lex_state = 0}, - [1787] = {.lex_state = 44}, - [1788] = {.lex_state = 0}, + [1785] = {.lex_state = 0}, + [1786] = {.lex_state = 32}, + [1787] = {.lex_state = 0}, + [1788] = {.lex_state = 44}, [1789] = {.lex_state = 44}, [1790] = {.lex_state = 0}, - [1791] = {.lex_state = 44}, - [1792] = {.lex_state = 53}, + [1791] = {.lex_state = 32}, + [1792] = {.lex_state = 52}, [1793] = {.lex_state = 0}, - [1794] = {.lex_state = 44}, - [1795] = {.lex_state = 34}, - [1796] = {.lex_state = 34}, + [1794] = {.lex_state = 32}, + [1795] = {.lex_state = 44}, + [1796] = {.lex_state = 44}, [1797] = {.lex_state = 0}, - [1798] = {.lex_state = 44}, + [1798] = {.lex_state = 32}, [1799] = {.lex_state = 0}, - [1800] = {.lex_state = 34}, - [1801] = {.lex_state = 0}, + [1800] = {.lex_state = 0}, + [1801] = {.lex_state = 32}, [1802] = {.lex_state = 0}, [1803] = {.lex_state = 0}, - [1804] = {.lex_state = 0}, + [1804] = {.lex_state = 44}, [1805] = {.lex_state = 0}, [1806] = {.lex_state = 0}, - [1807] = {.lex_state = 34}, + [1807] = {.lex_state = 0}, [1808] = {.lex_state = 0}, - [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 34}, - [1811] = {.lex_state = 119}, - [1812] = {.lex_state = 34}, - [1813] = {.lex_state = 119}, + [1809] = {.lex_state = 32}, + [1810] = {.lex_state = 0}, + [1811] = {.lex_state = 32}, + [1812] = {.lex_state = 0}, + [1813] = {.lex_state = 0}, [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 0}, - [1816] = {.lex_state = 34}, + [1815] = {.lex_state = 32}, + [1816] = {.lex_state = 0}, [1817] = {.lex_state = 0}, - [1818] = {.lex_state = 53}, - [1819] = {.lex_state = 34}, - [1820] = {.lex_state = 0}, - [1821] = {.lex_state = 44}, - [1822] = {.lex_state = 0}, - [1823] = {.lex_state = 119}, - [1824] = {.lex_state = 0}, - [1825] = {.lex_state = 34}, - [1826] = {.lex_state = 119}, - [1827] = {.lex_state = 0}, + [1818] = {.lex_state = 44}, + [1819] = {.lex_state = 44}, + [1820] = {.lex_state = 44}, + [1821] = {.lex_state = 32}, + [1822] = {.lex_state = 32}, + [1823] = {.lex_state = 52}, + [1824] = {.lex_state = 32}, + [1825] = {.lex_state = 52}, + [1826] = {.lex_state = 0}, + [1827] = {.lex_state = 32}, [1828] = {.lex_state = 44}, - [1829] = {.lex_state = 44}, - [1830] = {.lex_state = 44}, - [1831] = {.lex_state = 44}, - [1832] = {.lex_state = 34}, - [1833] = {.lex_state = 34}, - [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 34}, - [1836] = {.lex_state = 0}, - [1837] = {.lex_state = 53}, - [1838] = {.lex_state = 53}, + [1829] = {.lex_state = 119}, + [1830] = {.lex_state = 0}, + [1831] = {.lex_state = 0}, + [1832] = {.lex_state = 0}, + [1833] = {.lex_state = 32}, + [1834] = {.lex_state = 32}, + [1835] = {.lex_state = 44}, + [1836] = {.lex_state = 32}, + [1837] = {.lex_state = 44}, + [1838] = {.lex_state = 32}, [1839] = {.lex_state = 0}, - [1840] = {.lex_state = 44}, - [1841] = {.lex_state = 44}, + [1840] = {.lex_state = 32}, + [1841] = {.lex_state = 32}, [1842] = {.lex_state = 0}, - [1843] = {.lex_state = 44}, - [1844] = {.lex_state = 0}, - [1845] = {.lex_state = 0}, - [1846] = {.lex_state = 53}, + [1843] = {.lex_state = 32}, + [1844] = {.lex_state = 44}, + [1845] = {.lex_state = 52}, + [1846] = {.lex_state = 52}, [1847] = {.lex_state = 0}, [1848] = {.lex_state = 0}, - [1849] = {.lex_state = 119}, + [1849] = {.lex_state = 52}, [1850] = {.lex_state = 0}, [1851] = {.lex_state = 0}, - [1852] = {.lex_state = 53}, + [1852] = {.lex_state = 44}, [1853] = {.lex_state = 0}, - [1854] = {.lex_state = 44}, + [1854] = {.lex_state = 52}, [1855] = {.lex_state = 0}, - [1856] = {.lex_state = 44}, - [1857] = {.lex_state = 34}, + [1856] = {.lex_state = 32}, + [1857] = {.lex_state = 32}, [1858] = {.lex_state = 0}, [1859] = {.lex_state = 0}, - [1860] = {.lex_state = 0}, + [1860] = {.lex_state = 44}, [1861] = {.lex_state = 0}, - [1862] = {.lex_state = 34}, - [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 44}, - [1865] = {.lex_state = 44}, - [1866] = {.lex_state = 44}, - [1867] = {.lex_state = 53}, - [1868] = {.lex_state = 0}, - [1869] = {.lex_state = 44}, - [1870] = {.lex_state = 53}, - [1871] = {.lex_state = 119}, - [1872] = {.lex_state = 44}, - [1873] = {.lex_state = 44}, - [1874] = {.lex_state = 53}, - [1875] = {.lex_state = 34}, - [1876] = {.lex_state = 34}, - [1877] = {.lex_state = 53}, - [1878] = {.lex_state = 34}, - [1879] = {.lex_state = 53}, + [1862] = {.lex_state = 0}, + [1863] = {.lex_state = 119}, + [1864] = {.lex_state = 0}, + [1865] = {.lex_state = 0}, + [1866] = {.lex_state = 0}, + [1867] = {.lex_state = 32}, + [1868] = {.lex_state = 52}, + [1869] = {.lex_state = 0}, + [1870] = {.lex_state = 0}, + [1871] = {.lex_state = 44}, + [1872] = {.lex_state = 0}, + [1873] = {.lex_state = 0}, + [1874] = {.lex_state = 0}, + [1875] = {.lex_state = 44}, + [1876] = {.lex_state = 0}, + [1877] = {.lex_state = 0}, + [1878] = {.lex_state = 0}, + [1879] = {.lex_state = 0}, [1880] = {.lex_state = 0}, [1881] = {.lex_state = 0}, - [1882] = {.lex_state = 0}, - [1883] = {.lex_state = 0}, - [1884] = {.lex_state = 53}, - [1885] = {.lex_state = 0}, + [1882] = {.lex_state = 44}, + [1883] = {.lex_state = 52}, + [1884] = {.lex_state = 52}, + [1885] = {.lex_state = 44}, [1886] = {.lex_state = 0}, - [1887] = {.lex_state = 0}, - [1888] = {.lex_state = 0}, + [1887] = {.lex_state = 52}, + [1888] = {.lex_state = 52}, [1889] = {.lex_state = 0}, - [1890] = {.lex_state = 53}, - [1891] = {.lex_state = 34}, - [1892] = {.lex_state = 0}, - [1893] = {.lex_state = 0}, - [1894] = {.lex_state = 53}, - [1895] = {.lex_state = 53}, + [1890] = {.lex_state = 32}, + [1891] = {.lex_state = 0}, + [1892] = {.lex_state = 32}, + [1893] = {.lex_state = 52}, + [1894] = {.lex_state = 0}, + [1895] = {.lex_state = 0}, [1896] = {.lex_state = 0}, - [1897] = {.lex_state = 34}, + [1897] = {.lex_state = 44}, [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 44}, - [1900] = {.lex_state = 44}, - [1901] = {.lex_state = 53}, - [1902] = {.lex_state = 53}, + [1899] = {.lex_state = 0}, + [1900] = {.lex_state = 0}, + [1901] = {.lex_state = 0}, + [1902] = {.lex_state = 44}, [1903] = {.lex_state = 44}, [1904] = {.lex_state = 0}, [1905] = {.lex_state = 0}, - [1906] = {.lex_state = 0}, - [1907] = {.lex_state = 44}, - [1908] = {.lex_state = 34}, + [1906] = {.lex_state = 32}, + [1907] = {.lex_state = 0}, + [1908] = {.lex_state = 0}, [1909] = {.lex_state = 0}, - [1910] = {.lex_state = 34}, - [1911] = {.lex_state = 0}, - [1912] = {.lex_state = 44}, - [1913] = {.lex_state = 0}, + [1910] = {.lex_state = 0}, + [1911] = {.lex_state = 52}, + [1912] = {.lex_state = 0}, + [1913] = {.lex_state = 44}, [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 0}, - [1916] = {.lex_state = 53}, - [1917] = {.lex_state = 53}, - [1918] = {.lex_state = 53}, - [1919] = {.lex_state = 44}, + [1915] = {.lex_state = 44}, + [1916] = {.lex_state = 44}, + [1917] = {.lex_state = 44}, + [1918] = {.lex_state = 52}, + [1919] = {.lex_state = 52}, [1920] = {.lex_state = 0}, - [1921] = {.lex_state = 0}, + [1921] = {.lex_state = 32}, [1922] = {.lex_state = 0}, [1923] = {.lex_state = 0}, - [1924] = {.lex_state = 0}, - [1925] = {.lex_state = 0}, - [1926] = {.lex_state = 53}, - [1927] = {.lex_state = 34}, - [1928] = {.lex_state = 0}, - [1929] = {.lex_state = 0}, - [1930] = {.lex_state = 53}, - [1931] = {.lex_state = 34}, + [1924] = {.lex_state = 44}, + [1925] = {.lex_state = 44}, + [1926] = {.lex_state = 52}, + [1927] = {.lex_state = 52}, + [1928] = {.lex_state = 32}, + [1929] = {.lex_state = 52}, + [1930] = {.lex_state = 0}, + [1931] = {.lex_state = 0}, [1932] = {.lex_state = 44}, - [1933] = {.lex_state = 0}, - [1934] = {.lex_state = 0}, - [1935] = {.lex_state = 0}, - [1936] = {.lex_state = 53}, - [1937] = {.lex_state = 0}, - [1938] = {.lex_state = 53}, - [1939] = {.lex_state = 44}, - [1940] = {.lex_state = 0}, - [1941] = {.lex_state = 53}, - [1942] = {.lex_state = 34}, + [1933] = {.lex_state = 44}, + [1934] = {.lex_state = 44}, + [1935] = {.lex_state = 52}, + [1936] = {.lex_state = 0}, + [1937] = {.lex_state = 44}, + [1938] = {.lex_state = 44}, + [1939] = {.lex_state = 0}, + [1940] = {.lex_state = 119}, + [1941] = {.lex_state = 0}, + [1942] = {.lex_state = 52}, [1943] = {.lex_state = 0}, - [1944] = {.lex_state = 44}, - [1945] = {.lex_state = 0}, - [1946] = {.lex_state = 0}, - [1947] = {.lex_state = 44}, - [1948] = {.lex_state = 53}, - [1949] = {.lex_state = 53}, - [1950] = {.lex_state = 119}, + [1944] = {.lex_state = 0}, + [1945] = {.lex_state = 44}, + [1946] = {.lex_state = 44}, + [1947] = {.lex_state = 52}, + [1948] = {.lex_state = 0}, + [1949] = {.lex_state = 0}, + [1950] = {.lex_state = 0}, [1951] = {.lex_state = 0}, - [1952] = {.lex_state = 34}, + [1952] = {.lex_state = 32}, [1953] = {.lex_state = 44}, - [1954] = {.lex_state = 53}, - [1955] = {.lex_state = 0}, + [1954] = {.lex_state = 44}, + [1955] = {.lex_state = 44}, [1956] = {.lex_state = 0}, - [1957] = {.lex_state = 0}, - [1958] = {.lex_state = 0}, - [1959] = {.lex_state = 44}, - [1960] = {.lex_state = 0}, - [1961] = {.lex_state = 53}, - [1962] = {.lex_state = 44}, - [1963] = {.lex_state = 0}, + [1957] = {.lex_state = 52}, + [1958] = {.lex_state = 52}, + [1959] = {.lex_state = 52}, + [1960] = {.lex_state = 52}, + [1961] = {.lex_state = 0}, + [1962] = {.lex_state = 0}, + [1963] = {.lex_state = 52}, [1964] = {.lex_state = 0}, - [1965] = {.lex_state = 53}, + [1965] = {.lex_state = 52}, [1966] = {.lex_state = 44}, - [1967] = {.lex_state = 53}, + [1967] = {.lex_state = 44}, [1968] = {.lex_state = 0}, - [1969] = {.lex_state = 53}, - [1970] = {.lex_state = 53}, - [1971] = {.lex_state = 119}, - [1972] = {.lex_state = 0}, - [1973] = {.lex_state = 53}, - [1974] = {.lex_state = 53}, - [1975] = {.lex_state = 34}, + [1969] = {.lex_state = 119}, + [1970] = {.lex_state = 52}, + [1971] = {.lex_state = 44}, + [1972] = {.lex_state = 44}, + [1973] = {.lex_state = 44}, + [1974] = {.lex_state = 52}, + [1975] = {.lex_state = 44}, [1976] = {.lex_state = 0}, - [1977] = {.lex_state = 0}, - [1978] = {.lex_state = 44}, + [1977] = {.lex_state = 44}, + [1978] = {.lex_state = 52}, [1979] = {.lex_state = 0}, - [1980] = {.lex_state = 119}, - [1981] = {.lex_state = 44}, - [1982] = {.lex_state = 44}, - [1983] = {.lex_state = 44}, - [1984] = {.lex_state = 44}, + [1980] = {.lex_state = 0}, + [1981] = {.lex_state = 0}, + [1982] = {.lex_state = 52}, + [1983] = {.lex_state = 52}, + [1984] = {.lex_state = 52}, [1985] = {.lex_state = 0}, [1986] = {.lex_state = 0}, - [1987] = {.lex_state = 44}, - [1988] = {.lex_state = 44}, - [1989] = {.lex_state = 53}, + [1987] = {.lex_state = 0}, + [1988] = {.lex_state = 0}, + [1989] = {.lex_state = 119}, [1990] = {.lex_state = 119}, - [1991] = {.lex_state = 53}, - [1992] = {.lex_state = 44}, - [1993] = {.lex_state = 44}, - [1994] = {.lex_state = 53}, - [1995] = {.lex_state = 53}, - [1996] = {.lex_state = 0}, - [1997] = {.lex_state = 0}, + [1991] = {.lex_state = 0}, + [1992] = {.lex_state = 32}, + [1993] = {.lex_state = 0}, + [1994] = {.lex_state = 44}, + [1995] = {.lex_state = 0}, + [1996] = {.lex_state = 44}, + [1997] = {.lex_state = 32}, [1998] = {.lex_state = 0}, - [1999] = {.lex_state = 119}, + [1999] = {.lex_state = 52}, [2000] = {.lex_state = 0}, - [2001] = {.lex_state = 0}, - [2002] = {.lex_state = 53}, + [2001] = {.lex_state = 44}, + [2002] = {.lex_state = 44}, [2003] = {.lex_state = 0}, - [2004] = {.lex_state = 34}, - [2005] = {.lex_state = 34}, + [2004] = {.lex_state = 119}, + [2005] = {.lex_state = 119}, [2006] = {.lex_state = 0}, - [2007] = {.lex_state = 0}, - [2008] = {.lex_state = 44}, - [2009] = {.lex_state = 34}, - [2010] = {.lex_state = 53}, - [2011] = {.lex_state = 44}, - [2012] = {.lex_state = 0}, - [2013] = {.lex_state = 34}, - [2014] = {.lex_state = 53}, - [2015] = {.lex_state = 119}, - [2016] = {.lex_state = 0}, + [2007] = {.lex_state = 119}, + [2008] = {.lex_state = 52}, + [2009] = {.lex_state = 119}, + [2010] = {.lex_state = 0}, + [2011] = {.lex_state = 0}, + [2012] = {.lex_state = 52}, + [2013] = {.lex_state = 119}, + [2014] = {.lex_state = 52}, + [2015] = {.lex_state = 0}, + [2016] = {.lex_state = 44}, [2017] = {.lex_state = 0}, - [2018] = {.lex_state = 119}, - [2019] = {.lex_state = 44}, - [2020] = {.lex_state = 53}, + [2018] = {.lex_state = 52}, + [2019] = {.lex_state = 32}, + [2020] = {.lex_state = 52}, + [2021] = {.lex_state = 44}, + [2022] = {.lex_state = 119}, + [2023] = {.lex_state = 119}, + [2024] = {.lex_state = 0}, + [2025] = {.lex_state = 119}, + [2026] = {.lex_state = 119}, + [2027] = {.lex_state = 0}, + [2028] = {.lex_state = 119}, + [2029] = {.lex_state = 52}, + [2030] = {.lex_state = 52}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -11491,6 +11546,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1), [anon_sym__Noreturn] = ACTIONS(1), [anon_sym_noreturn] = ACTIONS(1), + [anon_sym_alignas] = ACTIONS(1), + [anon_sym__Alignas] = ACTIONS(1), [sym_primitive_type] = ACTIONS(1), [anon_sym_enum] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), @@ -11555,7 +11612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(1836), + [sym_translation_unit] = STATE(2000), [sym_preproc_include] = STATE(43), [sym_preproc_def] = STATE(43), [sym_preproc_function_def] = STATE(43), @@ -11563,24 +11620,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(43), [sym_preproc_ifdef] = STATE(43), [sym_function_definition] = STATE(43), - [sym__old_style_function_definition] = STATE(410), + [sym__old_style_function_definition] = STATE(429), [sym_declaration] = STATE(43), [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1129), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1147), [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(836), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(43), [sym_labeled_statement] = STATE(43), [sym__top_level_expression_statement] = STATE(43), @@ -11594,36 +11652,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(43), [sym_continue_statement] = STATE(43), [sym_goto_statement] = STATE(43), - [sym__expression] = STATE(1118), - [sym__expression_not_binary] = STATE(1115), - [sym__string] = STATE(1115), - [sym_conditional_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1115), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(1115), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(1115), - [sym_cast_expression] = STATE(1115), - [sym_sizeof_expression] = STATE(1115), - [sym_alignof_expression] = STATE(1115), - [sym_offsetof_expression] = STATE(1115), - [sym_generic_expression] = STATE(1115), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(1115), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(1115), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(1115), - [sym_concatenated_string] = STATE(1115), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(1115), + [sym__expression] = STATE(1130), + [sym__expression_not_binary] = STATE(1128), + [sym__string] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1128), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(1128), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(1128), + [sym_cast_expression] = STATE(1128), + [sym_sizeof_expression] = STATE(1128), + [sym_alignof_expression] = STATE(1128), + [sym_offsetof_expression] = STATE(1128), + [sym_generic_expression] = STATE(1128), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(1128), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(1128), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(1128), + [sym_concatenated_string] = STATE(1128), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(1128), [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(825), + [sym_macro_type_specifier] = STATE(822), [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(403), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -11673,79 +11731,438 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(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___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(97), - [sym_false] = ACTIONS(97), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(93), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(99), + [sym_false] = ACTIONS(99), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [2] = { + [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(1932), + [sym_preproc_elif] = STATE(1932), + [sym_preproc_elifdef] = STATE(1932), + [sym_function_definition] = STATE(7), + [sym__old_style_function_definition] = STATE(135), + [sym_declaration] = STATE(7), + [sym_type_definition] = STATE(7), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(7), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), + [sym_compound_statement] = STATE(7), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(7), + [sym_seh_leave_statement] = STATE(7), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(7), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(7), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), + [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(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [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(131), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [3] = { + [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(1835), + [sym_preproc_elif] = STATE(1835), + [sym_preproc_elifdef] = STATE(1835), + [sym_function_definition] = STATE(6), + [sym__old_style_function_definition] = STATE(135), + [sym_declaration] = STATE(6), + [sym_type_definition] = STATE(6), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(6), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), + [sym_compound_statement] = STATE(6), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(6), + [sym_seh_leave_statement] = STATE(6), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(6), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(6), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), + [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(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [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(131), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [4] = { [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_preproc_else] = STATE(1787), - [sym_preproc_elif] = STATE(1787), - [sym_preproc_elifdef] = STATE(1787), + [sym_preproc_else] = STATE(1844), + [sym_preproc_elif] = STATE(1844), + [sym_preproc_elifdef] = STATE(1844), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(150), + [sym__old_style_function_definition] = STATE(135), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -11761,49 +12178,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(22), [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(825), + [sym_macro_type_specifier] = STATE(822), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(109), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11811,10 +12228,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -11824,7 +12241,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(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -11846,81 +12263,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [3] = { + [5] = { [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_preproc_else] = STATE(1789), - [sym_preproc_elif] = STATE(1789), - [sym_preproc_elifdef] = STATE(1789), + [sym_preproc_else] = STATE(1996), + [sym_preproc_elif] = STATE(1996), + [sym_preproc_elifdef] = STATE(1996), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(150), + [sym__old_style_function_definition] = STATE(135), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -11936,49 +12356,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(22), [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(825), + [sym_macro_type_specifier] = STATE(822), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -11986,10 +12406,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -11999,7 +12419,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(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -12021,81 +12441,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [4] = { + [6] = { [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_preproc_else] = STATE(1959), - [sym_preproc_elif] = STATE(1959), - [sym_preproc_elifdef] = STATE(1959), + [sym_preproc_else] = STATE(1796), + [sym_preproc_elif] = STATE(1796), + [sym_preproc_elifdef] = STATE(1796), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(150), + [sym__old_style_function_definition] = STATE(135), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -12111,49 +12534,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(22), [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(825), + [sym_macro_type_specifier] = STATE(822), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(169), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12161,10 +12584,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -12174,7 +12597,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(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -12196,139 +12619,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [5] = { - [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(1903), - [sym_preproc_elif] = STATE(1903), - [sym_preproc_elifdef] = STATE(1903), - [sym_function_definition] = STATE(11), - [sym__old_style_function_definition] = STATE(150), - [sym_declaration] = STATE(11), - [sym_type_definition] = STATE(11), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(11), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), - [sym_compound_statement] = STATE(11), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(11), - [sym_seh_leave_statement] = STATE(11), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(11), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(11), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [7] = { + [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_preproc_else] = STATE(2001), + [sym_preproc_elif] = STATE(2001), + [sym_preproc_elifdef] = STATE(2001), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(135), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(22), + [sym_seh_leave_statement] = STATE(22), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12336,10 +12762,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -12349,7 +12775,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(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -12371,139 +12797,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [6] = { - [sym_preproc_include] = STATE(13), - [sym_preproc_def] = STATE(13), - [sym_preproc_function_def] = STATE(13), - [sym_preproc_call] = STATE(13), - [sym_preproc_if] = STATE(13), - [sym_preproc_ifdef] = STATE(13), - [sym_preproc_else] = STATE(1953), - [sym_preproc_elif] = STATE(1953), - [sym_preproc_elifdef] = STATE(1953), - [sym_function_definition] = STATE(13), - [sym__old_style_function_definition] = STATE(150), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), - [sym_compound_statement] = STATE(13), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym_attributed_statement] = STATE(13), - [sym_labeled_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_if_statement] = STATE(13), - [sym_switch_statement] = STATE(13), - [sym_case_statement] = STATE(13), - [sym_while_statement] = STATE(13), - [sym_do_statement] = STATE(13), - [sym_for_statement] = STATE(13), - [sym_return_statement] = STATE(13), - [sym_break_statement] = STATE(13), - [sym_continue_statement] = STATE(13), - [sym_goto_statement] = STATE(13), - [sym_seh_try_statement] = STATE(13), - [sym_seh_leave_statement] = STATE(13), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(167), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [8] = { + [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(1852), + [sym_preproc_elif] = STATE(1852), + [sym_preproc_elifdef] = STATE(1852), + [sym_function_definition] = STATE(14), + [sym__old_style_function_definition] = STATE(135), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(14), + [sym_seh_leave_statement] = STATE(14), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(173), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12511,10 +12940,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -12524,7 +12953,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(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -12546,81 +12975,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [7] = { + [9] = { [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_preproc_else] = STATE(1872), - [sym_preproc_elif] = STATE(1872), - [sym_preproc_elifdef] = STATE(1872), + [sym_preproc_else] = STATE(1946), + [sym_preproc_elif] = STATE(1946), + [sym_preproc_elifdef] = STATE(1946), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(150), + [sym__old_style_function_definition] = STATE(135), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -12636,49 +13068,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(22), [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(825), + [sym_macro_type_specifier] = STATE(822), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12686,10 +13118,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -12699,7 +13131,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(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -12721,81 +13153,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [8] = { + [10] = { [sym_preproc_include] = STATE(16), [sym_preproc_def] = STATE(16), [sym_preproc_function_def] = STATE(16), [sym_preproc_call] = STATE(16), [sym_preproc_if] = STATE(16), [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(1791), - [sym_preproc_elif] = STATE(1791), - [sym_preproc_elifdef] = STATE(1791), + [sym_preproc_else] = STATE(1903), + [sym_preproc_elif] = STATE(1903), + [sym_preproc_elifdef] = STATE(1903), [sym_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(150), + [sym__old_style_function_definition] = STATE(135), [sym_declaration] = STATE(16), [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(16), [sym_labeled_statement] = STATE(16), [sym_expression_statement] = STATE(16), @@ -12811,49 +13246,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(16), [sym_seh_try_statement] = STATE(16), [sym_seh_leave_statement] = STATE(16), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(825), + [sym_macro_type_specifier] = STATE(822), [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -12861,10 +13296,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -12874,7 +13309,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(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -12896,139 +13331,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [9] = { - [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(1794), - [sym_preproc_elif] = STATE(1794), - [sym_preproc_elifdef] = STATE(1794), - [sym_function_definition] = STATE(3), - [sym__old_style_function_definition] = STATE(150), - [sym_declaration] = STATE(3), - [sym_type_definition] = STATE(3), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(3), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), - [sym_compound_statement] = STATE(3), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(3), - [sym_seh_leave_statement] = STATE(3), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(3), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(3), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(173), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [11] = { + [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(1784), + [sym_preproc_elif] = STATE(1784), + [sym_preproc_elifdef] = STATE(1784), + [sym_function_definition] = STATE(4), + [sym__old_style_function_definition] = STATE(135), + [sym_declaration] = STATE(4), + [sym_type_definition] = STATE(4), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(4), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), + [sym_compound_statement] = STATE(4), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(4), + [sym_seh_leave_statement] = STATE(4), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(4), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(4), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13036,10 +13474,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -13049,7 +13487,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(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -13071,139 +13509,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [10] = { - [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(1784), - [sym_preproc_elif] = STATE(1784), - [sym_preproc_elifdef] = STATE(1784), - [sym_function_definition] = STATE(2), - [sym__old_style_function_definition] = STATE(150), - [sym_declaration] = STATE(2), - [sym_type_definition] = STATE(2), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(2), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), - [sym_compound_statement] = STATE(2), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(2), - [sym_seh_leave_statement] = STATE(2), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(2), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [12] = { + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1818), + [sym_preproc_elif] = STATE(1818), + [sym_preproc_elifdef] = STATE(1818), + [sym_function_definition] = STATE(20), + [sym__old_style_function_definition] = STATE(135), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(20), + [sym_seh_leave_statement] = STATE(20), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13211,10 +13652,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -13224,7 +13665,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(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -13246,81 +13687,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [11] = { + [13] = { + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_preproc_else] = STATE(1966), + [sym_preproc_elif] = STATE(1966), + [sym_preproc_elifdef] = STATE(1966), + [sym_function_definition] = STATE(21), + [sym__old_style_function_definition] = STATE(135), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym_attributed_statement] = STATE(21), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_case_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym_seh_try_statement] = STATE(21), + [sym_seh_leave_statement] = STATE(21), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), + [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(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [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(131), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [14] = { [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_preproc_else] = STATE(1912), - [sym_preproc_elif] = STATE(1912), - [sym_preproc_elifdef] = STATE(1912), + [sym_preproc_else] = STATE(2016), + [sym_preproc_elif] = STATE(2016), + [sym_preproc_elifdef] = STATE(2016), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(150), + [sym__old_style_function_definition] = STATE(135), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -13336,49 +13958,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(22), [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(825), + [sym_macro_type_specifier] = STATE(822), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(185), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13386,10 +14008,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -13399,7 +14021,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(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -13421,139 +14043,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [12] = { - [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(2011), - [sym_preproc_elif] = STATE(2011), - [sym_preproc_elifdef] = STATE(2011), - [sym_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(150), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(14), - [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [15] = { + [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(1917), + [sym_preproc_elif] = STATE(1917), + [sym_preproc_elifdef] = STATE(1917), + [sym_function_definition] = STATE(5), + [sym__old_style_function_definition] = STATE(135), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(5), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), + [sym_compound_statement] = STATE(5), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(5), + [sym_seh_leave_statement] = STATE(5), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(5), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13561,10 +14186,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -13574,7 +14199,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(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -13596,81 +14221,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [13] = { + [16] = { [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_preproc_else] = STATE(2008), - [sym_preproc_elif] = STATE(2008), - [sym_preproc_elifdef] = STATE(2008), + [sym_preproc_else] = STATE(1860), + [sym_preproc_elif] = STATE(1860), + [sym_preproc_elifdef] = STATE(1860), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(150), + [sym__old_style_function_definition] = STATE(135), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -13686,49 +14314,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(22), [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(825), + [sym_macro_type_specifier] = STATE(822), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(189), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13736,10 +14364,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -13749,7 +14377,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(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -13771,139 +14399,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [14] = { - [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_preproc_else] = STATE(1988), - [sym_preproc_elif] = STATE(1988), - [sym_preproc_elifdef] = STATE(1988), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(150), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(22), - [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(183), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [17] = { + [sym_preproc_include] = STATE(9), + [sym_preproc_def] = STATE(9), + [sym_preproc_function_def] = STATE(9), + [sym_preproc_call] = STATE(9), + [sym_preproc_if] = STATE(9), + [sym_preproc_ifdef] = STATE(9), + [sym_preproc_else] = STATE(1820), + [sym_preproc_elif] = STATE(1820), + [sym_preproc_elifdef] = STATE(1820), + [sym_function_definition] = STATE(9), + [sym__old_style_function_definition] = STATE(135), + [sym_declaration] = STATE(9), + [sym_type_definition] = STATE(9), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), + [sym_linkage_specification] = STATE(9), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), + [sym_compound_statement] = STATE(9), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym_attributed_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_case_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_goto_statement] = STATE(9), + [sym_seh_try_statement] = STATE(9), + [sym_seh_leave_statement] = STATE(9), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(9), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(9), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13911,10 +14542,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -13924,7 +14555,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(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -13946,81 +14577,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [15] = { + [18] = { [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(1856), - [sym_preproc_elif] = STATE(1856), - [sym_preproc_elifdef] = STATE(1856), + [sym_preproc_else] = STATE(1795), + [sym_preproc_elif] = STATE(1795), + [sym_preproc_elifdef] = STATE(1795), [sym_function_definition] = STATE(19), - [sym__old_style_function_definition] = STATE(150), + [sym__old_style_function_definition] = STATE(135), [sym_declaration] = STATE(19), [sym_type_definition] = STATE(19), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(19), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(19), [sym_labeled_statement] = STATE(19), [sym_expression_statement] = STATE(19), @@ -14036,49 +14670,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(19), [sym_seh_try_statement] = STATE(19), [sym_seh_leave_statement] = STATE(19), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), [sym__empty_declaration] = STATE(19), - [sym_macro_type_specifier] = STATE(825), + [sym_macro_type_specifier] = STATE(822), [aux_sym_preproc_if_repeat1] = STATE(19), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(185), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(193), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14086,10 +14720,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -14099,7 +14733,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(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -14121,81 +14755,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [16] = { + [19] = { [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_preproc_else] = STATE(1854), - [sym_preproc_elif] = STATE(1854), - [sym_preproc_elifdef] = STATE(1854), + [sym_preproc_else] = STATE(1804), + [sym_preproc_elif] = STATE(1804), + [sym_preproc_elifdef] = STATE(1804), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(150), + [sym__old_style_function_definition] = STATE(135), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -14211,49 +14848,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(22), [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(825), + [sym_macro_type_specifier] = STATE(822), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14261,10 +14898,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -14274,7 +14911,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(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -14296,81 +14933,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [17] = { + [20] = { [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_preproc_else] = STATE(1993), - [sym_preproc_elif] = STATE(1993), - [sym_preproc_elifdef] = STATE(1993), + [sym_preproc_else] = STATE(1913), + [sym_preproc_elif] = STATE(1913), + [sym_preproc_elifdef] = STATE(1913), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(150), + [sym__old_style_function_definition] = STATE(135), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -14386,224 +15026,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(22), [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(825), + [sym_macro_type_specifier] = STATE(822), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(189), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), - [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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), - [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(129), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [18] = { - [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(1869), - [sym_preproc_elif] = STATE(1869), - [sym_preproc_elifdef] = STATE(1869), - [sym_function_definition] = STATE(4), - [sym__old_style_function_definition] = STATE(150), - [sym_declaration] = STATE(4), - [sym_type_definition] = STATE(4), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(4), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), - [sym_compound_statement] = STATE(4), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(4), - [sym_seh_leave_statement] = STATE(4), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(4), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(4), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(197), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14611,10 +15076,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -14624,7 +15089,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(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -14646,81 +15111,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [19] = { + [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_preproc_else] = STATE(1841), - [sym_preproc_elif] = STATE(1841), - [sym_preproc_elifdef] = STATE(1841), + [sym_preproc_else] = STATE(1819), + [sym_preproc_elif] = STATE(1819), + [sym_preproc_elifdef] = STATE(1819), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(150), + [sym__old_style_function_definition] = STATE(135), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -14736,49 +15204,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(22), [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(825), + [sym_macro_type_specifier] = STATE(822), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(193), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14786,10 +15254,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -14799,7 +15267,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(129), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -14821,400 +15289,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [20] = { - [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(2019), - [sym_preproc_elif] = STATE(2019), - [sym_preproc_elifdef] = STATE(2019), - [sym_function_definition] = STATE(17), - [sym__old_style_function_definition] = STATE(150), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), - [sym_compound_statement] = STATE(17), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(17), - [sym_seh_leave_statement] = STATE(17), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(195), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), - [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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), - [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(129), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [21] = { - [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(1992), - [sym_preproc_elif] = STATE(1992), - [sym_preproc_elifdef] = STATE(1992), - [sym_function_definition] = STATE(7), - [sym__old_style_function_definition] = STATE(150), - [sym_declaration] = STATE(7), - [sym_type_definition] = STATE(7), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(7), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), - [sym_compound_statement] = STATE(7), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(7), - [sym_seh_leave_statement] = STATE(7), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(7), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(7), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(101), - [aux_sym_preproc_include_token1] = ACTIONS(103), - [aux_sym_preproc_def_token1] = ACTIONS(105), - [aux_sym_preproc_if_token1] = ACTIONS(107), - [aux_sym_preproc_if_token2] = ACTIONS(197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(111), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token2] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(119), - [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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(127), - [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(129), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = 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(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [22] = { @@ -15225,24 +15345,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(150), + [sym__old_style_function_definition] = STATE(135), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1151), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(745), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(852), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -15258,216 +15379,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(22), [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(825), + [sym_macro_type_specifier] = STATE(822), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(199), - [aux_sym_preproc_include_token1] = ACTIONS(202), - [aux_sym_preproc_def_token1] = ACTIONS(205), - [aux_sym_preproc_if_token1] = ACTIONS(208), - [aux_sym_preproc_if_token2] = ACTIONS(211), - [aux_sym_preproc_ifdef_token1] = ACTIONS(213), - [aux_sym_preproc_ifdef_token2] = ACTIONS(213), - [aux_sym_preproc_else_token1] = ACTIONS(211), - [aux_sym_preproc_elif_token1] = ACTIONS(211), - [aux_sym_preproc_elifdef_token1] = ACTIONS(211), - [aux_sym_preproc_elifdef_token2] = ACTIONS(211), - [sym_preproc_directive] = ACTIONS(216), - [anon_sym_LPAREN2] = ACTIONS(219), - [anon_sym_BANG] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_DASH] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(225), - [anon_sym_STAR] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(231), - [anon_sym___extension__] = ACTIONS(234), - [anon_sym_typedef] = ACTIONS(237), - [anon_sym_extern] = ACTIONS(240), - [anon_sym___attribute__] = ACTIONS(243), - [anon_sym_LBRACK_LBRACK] = ACTIONS(246), - [anon_sym___declspec] = ACTIONS(249), - [anon_sym___cdecl] = ACTIONS(252), - [anon_sym___clrcall] = ACTIONS(252), - [anon_sym___stdcall] = ACTIONS(252), - [anon_sym___fastcall] = ACTIONS(252), - [anon_sym___thiscall] = ACTIONS(252), - [anon_sym___vectorcall] = ACTIONS(252), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_signed] = ACTIONS(258), - [anon_sym_unsigned] = ACTIONS(258), - [anon_sym_long] = ACTIONS(258), - [anon_sym_short] = ACTIONS(258), - [anon_sym_static] = ACTIONS(261), - [anon_sym_auto] = ACTIONS(261), - [anon_sym_register] = ACTIONS(261), - [anon_sym_inline] = ACTIONS(261), - [anon_sym___inline] = ACTIONS(261), - [anon_sym___inline__] = ACTIONS(261), - [anon_sym___forceinline] = ACTIONS(261), - [anon_sym_thread_local] = ACTIONS(261), - [anon_sym___thread] = ACTIONS(261), - [anon_sym_const] = ACTIONS(264), - [anon_sym_constexpr] = ACTIONS(264), - [anon_sym_volatile] = ACTIONS(264), - [anon_sym_restrict] = ACTIONS(264), - [anon_sym___restrict__] = ACTIONS(264), - [anon_sym__Atomic] = ACTIONS(264), - [anon_sym__Noreturn] = ACTIONS(264), - [anon_sym_noreturn] = ACTIONS(264), - [sym_primitive_type] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(270), - [anon_sym_struct] = ACTIONS(273), - [anon_sym_union] = ACTIONS(276), - [anon_sym_if] = ACTIONS(279), - [anon_sym_switch] = ACTIONS(282), - [anon_sym_case] = ACTIONS(285), - [anon_sym_default] = ACTIONS(288), - [anon_sym_while] = ACTIONS(291), - [anon_sym_do] = ACTIONS(294), - [anon_sym_for] = ACTIONS(297), - [anon_sym_return] = ACTIONS(300), - [anon_sym_break] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(306), - [anon_sym_goto] = ACTIONS(309), - [anon_sym___try] = ACTIONS(312), - [anon_sym___leave] = ACTIONS(315), - [anon_sym_DASH_DASH] = ACTIONS(318), - [anon_sym_PLUS_PLUS] = ACTIONS(318), - [anon_sym_sizeof] = ACTIONS(321), - [anon_sym___alignof__] = ACTIONS(324), - [anon_sym___alignof] = ACTIONS(324), - [anon_sym__alignof] = ACTIONS(324), - [anon_sym_alignof] = ACTIONS(324), - [anon_sym__Alignof] = ACTIONS(324), - [anon_sym_offsetof] = ACTIONS(327), - [anon_sym__Generic] = ACTIONS(330), - [anon_sym_asm] = ACTIONS(333), - [anon_sym___asm__] = ACTIONS(333), - [sym_number_literal] = ACTIONS(336), - [anon_sym_L_SQUOTE] = ACTIONS(339), - [anon_sym_u_SQUOTE] = ACTIONS(339), - [anon_sym_U_SQUOTE] = ACTIONS(339), - [anon_sym_u8_SQUOTE] = ACTIONS(339), - [anon_sym_SQUOTE] = ACTIONS(339), - [anon_sym_L_DQUOTE] = ACTIONS(342), - [anon_sym_u_DQUOTE] = ACTIONS(342), - [anon_sym_U_DQUOTE] = ACTIONS(342), - [anon_sym_u8_DQUOTE] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(342), - [sym_true] = ACTIONS(345), - [sym_false] = ACTIONS(345), - [anon_sym_NULL] = ACTIONS(348), - [anon_sym_nullptr] = ACTIONS(348), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(201), + [aux_sym_preproc_include_token1] = ACTIONS(204), + [aux_sym_preproc_def_token1] = ACTIONS(207), + [aux_sym_preproc_if_token1] = ACTIONS(210), + [aux_sym_preproc_if_token2] = ACTIONS(213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(215), + [aux_sym_preproc_else_token1] = ACTIONS(213), + [aux_sym_preproc_elif_token1] = ACTIONS(213), + [aux_sym_preproc_elifdef_token1] = ACTIONS(213), + [aux_sym_preproc_elifdef_token2] = ACTIONS(213), + [sym_preproc_directive] = ACTIONS(218), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(224), + [anon_sym_TILDE] = ACTIONS(224), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_STAR] = ACTIONS(230), + [anon_sym_AMP] = ACTIONS(230), + [anon_sym_SEMI] = ACTIONS(233), + [anon_sym___extension__] = ACTIONS(236), + [anon_sym_typedef] = ACTIONS(239), + [anon_sym_extern] = ACTIONS(242), + [anon_sym___attribute__] = ACTIONS(245), + [anon_sym_LBRACK_LBRACK] = ACTIONS(248), + [anon_sym___declspec] = ACTIONS(251), + [anon_sym___cdecl] = ACTIONS(254), + [anon_sym___clrcall] = ACTIONS(254), + [anon_sym___stdcall] = ACTIONS(254), + [anon_sym___fastcall] = ACTIONS(254), + [anon_sym___thiscall] = ACTIONS(254), + [anon_sym___vectorcall] = ACTIONS(254), + [anon_sym_LBRACE] = ACTIONS(257), + [anon_sym_signed] = ACTIONS(260), + [anon_sym_unsigned] = ACTIONS(260), + [anon_sym_long] = ACTIONS(260), + [anon_sym_short] = ACTIONS(260), + [anon_sym_static] = ACTIONS(263), + [anon_sym_auto] = ACTIONS(263), + [anon_sym_register] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(263), + [anon_sym___inline] = ACTIONS(263), + [anon_sym___inline__] = ACTIONS(263), + [anon_sym___forceinline] = ACTIONS(263), + [anon_sym_thread_local] = ACTIONS(263), + [anon_sym___thread] = ACTIONS(263), + [anon_sym_const] = ACTIONS(266), + [anon_sym_constexpr] = ACTIONS(266), + [anon_sym_volatile] = ACTIONS(266), + [anon_sym_restrict] = ACTIONS(266), + [anon_sym___restrict__] = ACTIONS(266), + [anon_sym__Atomic] = ACTIONS(266), + [anon_sym__Noreturn] = ACTIONS(266), + [anon_sym_noreturn] = ACTIONS(266), + [anon_sym_alignas] = ACTIONS(269), + [anon_sym__Alignas] = ACTIONS(269), + [sym_primitive_type] = ACTIONS(272), + [anon_sym_enum] = ACTIONS(275), + [anon_sym_struct] = ACTIONS(278), + [anon_sym_union] = ACTIONS(281), + [anon_sym_if] = ACTIONS(284), + [anon_sym_switch] = ACTIONS(287), + [anon_sym_case] = ACTIONS(290), + [anon_sym_default] = ACTIONS(293), + [anon_sym_while] = ACTIONS(296), + [anon_sym_do] = ACTIONS(299), + [anon_sym_for] = ACTIONS(302), + [anon_sym_return] = ACTIONS(305), + [anon_sym_break] = ACTIONS(308), + [anon_sym_continue] = ACTIONS(311), + [anon_sym_goto] = ACTIONS(314), + [anon_sym___try] = ACTIONS(317), + [anon_sym___leave] = ACTIONS(320), + [anon_sym_DASH_DASH] = ACTIONS(323), + [anon_sym_PLUS_PLUS] = ACTIONS(323), + [anon_sym_sizeof] = ACTIONS(326), + [anon_sym___alignof__] = ACTIONS(329), + [anon_sym___alignof] = ACTIONS(329), + [anon_sym__alignof] = ACTIONS(329), + [anon_sym_alignof] = ACTIONS(329), + [anon_sym__Alignof] = ACTIONS(329), + [anon_sym_offsetof] = ACTIONS(332), + [anon_sym__Generic] = ACTIONS(335), + [anon_sym_asm] = ACTIONS(338), + [anon_sym___asm__] = ACTIONS(338), + [sym_number_literal] = ACTIONS(341), + [anon_sym_L_SQUOTE] = ACTIONS(344), + [anon_sym_u_SQUOTE] = ACTIONS(344), + [anon_sym_U_SQUOTE] = ACTIONS(344), + [anon_sym_u8_SQUOTE] = ACTIONS(344), + [anon_sym_SQUOTE] = ACTIONS(344), + [anon_sym_L_DQUOTE] = ACTIONS(347), + [anon_sym_u_DQUOTE] = ACTIONS(347), + [anon_sym_U_DQUOTE] = ACTIONS(347), + [anon_sym_u8_DQUOTE] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [sym_true] = ACTIONS(350), + [sym_false] = ACTIONS(350), + [anon_sym_NULL] = ACTIONS(353), + [anon_sym_nullptr] = ACTIONS(353), [sym_comment] = ACTIONS(3), }, [23] = { - [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__old_style_function_definition] = STATE(367), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(28), - [sym_seh_leave_statement] = STATE(28), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(351), - [aux_sym_preproc_include_token1] = ACTIONS(353), - [aux_sym_preproc_def_token1] = ACTIONS(355), - [aux_sym_preproc_if_token1] = ACTIONS(357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [sym_preproc_directive] = ACTIONS(361), + [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__old_style_function_definition] = STATE(334), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1149), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(35), + [sym_seh_leave_statement] = STATE(35), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15475,10 +15599,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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -15488,8 +15612,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(371), - [anon_sym_RBRACE] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(378), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -15511,50 +15635,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [24] = { @@ -15565,24 +15691,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(25), [sym_preproc_ifdef] = STATE(25), [sym_function_definition] = STATE(25), - [sym__old_style_function_definition] = STATE(337), + [sym__old_style_function_definition] = STATE(334), [sym_declaration] = STATE(25), [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1135), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1149), [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(742), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(730), [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(25), [sym_labeled_statement] = STATE(25), [sym_expression_statement] = STATE(25), @@ -15598,45 +15725,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(25), [sym_seh_try_statement] = STATE(25), [sym_seh_leave_statement] = STATE(25), - [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(825), + [sym_macro_type_specifier] = STATE(822), [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(401), - [aux_sym_preproc_include_token1] = ACTIONS(403), - [aux_sym_preproc_def_token1] = ACTIONS(405), - [aux_sym_preproc_if_token1] = ACTIONS(407), - [aux_sym_preproc_if_token2] = ACTIONS(409), - [aux_sym_preproc_ifdef_token1] = ACTIONS(411), - [aux_sym_preproc_ifdef_token2] = ACTIONS(411), - [sym_preproc_directive] = ACTIONS(413), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15644,10 +15770,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(415), - [anon_sym___extension__] = ACTIONS(417), - [anon_sym_typedef] = ACTIONS(419), - [anon_sym_extern] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -15657,7 +15783,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(423), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(406), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -15679,299 +15806,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_case] = ACTIONS(429), - [anon_sym_default] = ACTIONS(431), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_return] = ACTIONS(439), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_goto] = ACTIONS(445), - [anon_sym___try] = ACTIONS(447), - [anon_sym___leave] = ACTIONS(449), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [25] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_function_definition] = STATE(25), - [sym__old_style_function_definition] = STATE(337), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1135), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(742), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym_seh_try_statement] = STATE(25), - [sym_seh_leave_statement] = STATE(25), - [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(451), - [aux_sym_preproc_include_token1] = ACTIONS(454), - [aux_sym_preproc_def_token1] = ACTIONS(457), - [aux_sym_preproc_if_token1] = ACTIONS(460), - [aux_sym_preproc_if_token2] = ACTIONS(211), - [aux_sym_preproc_ifdef_token1] = ACTIONS(463), - [aux_sym_preproc_ifdef_token2] = ACTIONS(463), - [sym_preproc_directive] = ACTIONS(466), - [anon_sym_LPAREN2] = ACTIONS(219), - [anon_sym_BANG] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_DASH] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(225), - [anon_sym_STAR] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(469), - [anon_sym___extension__] = ACTIONS(472), - [anon_sym_typedef] = ACTIONS(475), - [anon_sym_extern] = ACTIONS(478), - [anon_sym___attribute__] = ACTIONS(243), - [anon_sym_LBRACK_LBRACK] = ACTIONS(246), - [anon_sym___declspec] = ACTIONS(249), - [anon_sym___cdecl] = ACTIONS(252), - [anon_sym___clrcall] = ACTIONS(252), - [anon_sym___stdcall] = ACTIONS(252), - [anon_sym___fastcall] = ACTIONS(252), - [anon_sym___thiscall] = ACTIONS(252), - [anon_sym___vectorcall] = ACTIONS(252), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_signed] = ACTIONS(258), - [anon_sym_unsigned] = ACTIONS(258), - [anon_sym_long] = ACTIONS(258), - [anon_sym_short] = ACTIONS(258), - [anon_sym_static] = ACTIONS(261), - [anon_sym_auto] = ACTIONS(261), - [anon_sym_register] = ACTIONS(261), - [anon_sym_inline] = ACTIONS(261), - [anon_sym___inline] = ACTIONS(261), - [anon_sym___inline__] = ACTIONS(261), - [anon_sym___forceinline] = ACTIONS(261), - [anon_sym_thread_local] = ACTIONS(261), - [anon_sym___thread] = ACTIONS(261), - [anon_sym_const] = ACTIONS(264), - [anon_sym_constexpr] = ACTIONS(264), - [anon_sym_volatile] = ACTIONS(264), - [anon_sym_restrict] = ACTIONS(264), - [anon_sym___restrict__] = ACTIONS(264), - [anon_sym__Atomic] = ACTIONS(264), - [anon_sym__Noreturn] = ACTIONS(264), - [anon_sym_noreturn] = ACTIONS(264), - [sym_primitive_type] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(270), - [anon_sym_struct] = ACTIONS(273), - [anon_sym_union] = ACTIONS(276), - [anon_sym_if] = ACTIONS(484), - [anon_sym_switch] = ACTIONS(487), - [anon_sym_case] = ACTIONS(490), - [anon_sym_default] = ACTIONS(493), - [anon_sym_while] = ACTIONS(496), - [anon_sym_do] = ACTIONS(499), - [anon_sym_for] = ACTIONS(502), - [anon_sym_return] = ACTIONS(505), - [anon_sym_break] = ACTIONS(508), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_goto] = ACTIONS(514), - [anon_sym___try] = ACTIONS(517), - [anon_sym___leave] = ACTIONS(520), - [anon_sym_DASH_DASH] = ACTIONS(318), - [anon_sym_PLUS_PLUS] = ACTIONS(318), - [anon_sym_sizeof] = ACTIONS(321), - [anon_sym___alignof__] = ACTIONS(324), - [anon_sym___alignof] = ACTIONS(324), - [anon_sym__alignof] = ACTIONS(324), - [anon_sym_alignof] = ACTIONS(324), - [anon_sym__Alignof] = ACTIONS(324), - [anon_sym_offsetof] = ACTIONS(327), - [anon_sym__Generic] = ACTIONS(330), - [anon_sym_asm] = ACTIONS(333), - [anon_sym___asm__] = ACTIONS(333), - [sym_number_literal] = ACTIONS(336), - [anon_sym_L_SQUOTE] = ACTIONS(339), - [anon_sym_u_SQUOTE] = ACTIONS(339), - [anon_sym_U_SQUOTE] = ACTIONS(339), - [anon_sym_u8_SQUOTE] = ACTIONS(339), - [anon_sym_SQUOTE] = ACTIONS(339), - [anon_sym_L_DQUOTE] = ACTIONS(342), - [anon_sym_u_DQUOTE] = ACTIONS(342), - [anon_sym_U_DQUOTE] = ACTIONS(342), - [anon_sym_u8_DQUOTE] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(342), - [sym_true] = ACTIONS(345), - [sym_false] = ACTIONS(345), - [anon_sym_NULL] = ACTIONS(348), - [anon_sym_nullptr] = ACTIONS(348), - [sym_comment] = ACTIONS(3), - }, - [26] = { - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_function_definition] = STATE(34), - [sym__old_style_function_definition] = STATE(367), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym_attributed_statement] = STATE(34), - [sym_labeled_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_case_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym_seh_try_statement] = STATE(34), - [sym_seh_leave_statement] = STATE(34), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(351), - [aux_sym_preproc_include_token1] = ACTIONS(353), - [aux_sym_preproc_def_token1] = ACTIONS(355), - [aux_sym_preproc_if_token1] = ACTIONS(357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [sym_preproc_directive] = ACTIONS(361), + [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__old_style_function_definition] = STATE(334), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1149), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(35), + [sym_seh_leave_statement] = STATE(35), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15979,10 +15941,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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -15992,8 +15954,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(371), - [anon_sym_RBRACE] = ACTIONS(523), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(408), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -16015,132 +15977,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [27] = { - [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__old_style_function_definition] = STATE(337), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1135), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(742), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(24), - [sym_seh_leave_statement] = STATE(24), - [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(401), - [aux_sym_preproc_include_token1] = ACTIONS(403), - [aux_sym_preproc_def_token1] = ACTIONS(405), - [aux_sym_preproc_if_token1] = ACTIONS(407), - [aux_sym_preproc_if_token2] = ACTIONS(525), - [aux_sym_preproc_ifdef_token1] = ACTIONS(411), - [aux_sym_preproc_ifdef_token2] = ACTIONS(411), - [sym_preproc_directive] = ACTIONS(413), + [26] = { + [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__old_style_function_definition] = STATE(353), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1150), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(733), + [sym_compound_statement] = STATE(38), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(855), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(38), + [sym_seh_leave_statement] = STATE(38), + [sym__expression] = STATE(1054), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1853), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(38), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(410), + [aux_sym_preproc_include_token1] = ACTIONS(412), + [aux_sym_preproc_def_token1] = ACTIONS(414), + [aux_sym_preproc_if_token1] = ACTIONS(416), + [aux_sym_preproc_if_token2] = ACTIONS(418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(420), + [sym_preproc_directive] = ACTIONS(422), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16148,10 +16113,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(415), - [anon_sym___extension__] = ACTIONS(417), - [anon_sym_typedef] = ACTIONS(419), - [anon_sym_extern] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym___extension__] = ACTIONS(426), + [anon_sym_typedef] = ACTIONS(428), + [anon_sym_extern] = ACTIONS(430), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16161,7 +16126,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(423), + [anon_sym_LBRACE] = ACTIONS(432), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -16183,131 +16148,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_case] = ACTIONS(429), - [anon_sym_default] = ACTIONS(431), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_return] = ACTIONS(439), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_goto] = ACTIONS(445), - [anon_sym___try] = ACTIONS(447), - [anon_sym___leave] = ACTIONS(449), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [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__old_style_function_definition] = STATE(367), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(39), - [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(351), - [aux_sym_preproc_include_token1] = ACTIONS(353), - [aux_sym_preproc_def_token1] = ACTIONS(355), - [aux_sym_preproc_if_token1] = ACTIONS(357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [sym_preproc_directive] = ACTIONS(361), + [27] = { + [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__old_style_function_definition] = STATE(334), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1149), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(35), + [sym_seh_leave_statement] = STATE(35), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16315,10 +16283,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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16328,8 +16296,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(371), - [anon_sym_RBRACE] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(460), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -16351,131 +16319,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [29] = { - [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__old_style_function_definition] = STATE(367), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(39), - [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(351), - [aux_sym_preproc_include_token1] = ACTIONS(353), - [aux_sym_preproc_def_token1] = ACTIONS(355), - [aux_sym_preproc_if_token1] = ACTIONS(357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [sym_preproc_directive] = ACTIONS(361), + [28] = { + [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__old_style_function_definition] = STATE(334), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1149), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(35), + [sym_seh_leave_statement] = STATE(35), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16483,10 +16454,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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16496,8 +16467,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(371), - [anon_sym_RBRACE] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(462), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -16519,131 +16490,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [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__old_style_function_definition] = STATE(367), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(39), - [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(351), - [aux_sym_preproc_include_token1] = ACTIONS(353), - [aux_sym_preproc_def_token1] = ACTIONS(355), - [aux_sym_preproc_if_token1] = ACTIONS(357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [sym_preproc_directive] = ACTIONS(361), + [29] = { + [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__old_style_function_definition] = STATE(334), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1149), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(35), + [sym_seh_leave_statement] = STATE(35), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16651,10 +16625,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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16664,8 +16638,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(371), - [anon_sym_RBRACE] = ACTIONS(531), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(464), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -16687,131 +16661,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [31] = { - [sym_preproc_include] = STATE(30), - [sym_preproc_def] = STATE(30), - [sym_preproc_function_def] = STATE(30), - [sym_preproc_call] = STATE(30), - [sym_preproc_if] = STATE(30), - [sym_preproc_ifdef] = STATE(30), - [sym_function_definition] = STATE(30), - [sym__old_style_function_definition] = STATE(367), - [sym_declaration] = STATE(30), - [sym_type_definition] = STATE(30), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(30), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(30), - [sym_seh_leave_statement] = STATE(30), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(30), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(30), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(351), - [aux_sym_preproc_include_token1] = ACTIONS(353), - [aux_sym_preproc_def_token1] = ACTIONS(355), - [aux_sym_preproc_if_token1] = ACTIONS(357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [sym_preproc_directive] = ACTIONS(361), + [30] = { + [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__old_style_function_definition] = STATE(334), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1149), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(28), + [sym_seh_leave_statement] = STATE(28), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16819,10 +16796,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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16832,8 +16809,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(371), - [anon_sym_RBRACE] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(466), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -16855,131 +16832,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [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__old_style_function_definition] = STATE(367), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(39), - [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(351), - [aux_sym_preproc_include_token1] = ACTIONS(353), - [aux_sym_preproc_def_token1] = ACTIONS(355), - [aux_sym_preproc_if_token1] = ACTIONS(357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [sym_preproc_directive] = ACTIONS(361), + [31] = { + [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__old_style_function_definition] = STATE(334), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1149), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(35), + [sym_seh_leave_statement] = STATE(35), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16987,10 +16967,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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17000,8 +16980,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(371), - [anon_sym_RBRACE] = ACTIONS(535), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(468), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -17023,53 +17003,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [33] = { + [32] = { [sym_preproc_include] = STATE(29), [sym_preproc_def] = STATE(29), [sym_preproc_function_def] = STATE(29), @@ -17077,24 +17059,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(29), [sym_preproc_ifdef] = STATE(29), [sym_function_definition] = STATE(29), - [sym__old_style_function_definition] = STATE(367), + [sym__old_style_function_definition] = STATE(334), [sym_declaration] = STATE(29), [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1134), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1149), [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(743), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(730), [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(29), [sym_labeled_statement] = STATE(29), [sym_expression_statement] = STATE(29), @@ -17110,44 +17093,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(29), [sym_seh_try_statement] = STATE(29), [sym_seh_leave_statement] = STATE(29), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), [sym__empty_declaration] = STATE(29), - [sym_macro_type_specifier] = STATE(825), + [sym_macro_type_specifier] = STATE(822), [aux_sym_preproc_if_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(351), - [aux_sym_preproc_include_token1] = ACTIONS(353), - [aux_sym_preproc_def_token1] = ACTIONS(355), - [aux_sym_preproc_if_token1] = ACTIONS(357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [sym_preproc_directive] = ACTIONS(361), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17155,10 +17138,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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17168,8 +17151,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(371), - [anon_sym_RBRACE] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(470), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -17191,131 +17174,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [34] = { - [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__old_style_function_definition] = STATE(367), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(39), - [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(351), - [aux_sym_preproc_include_token1] = ACTIONS(353), - [aux_sym_preproc_def_token1] = ACTIONS(355), - [aux_sym_preproc_if_token1] = ACTIONS(357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [sym_preproc_directive] = ACTIONS(361), + [33] = { + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym__old_style_function_definition] = STATE(334), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1149), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym_seh_try_statement] = STATE(31), + [sym_seh_leave_statement] = STATE(31), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17323,10 +17309,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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17336,8 +17322,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(371), - [anon_sym_RBRACE] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(472), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -17359,131 +17345,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [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__old_style_function_definition] = STATE(367), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(39), - [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(351), - [aux_sym_preproc_include_token1] = ACTIONS(353), - [aux_sym_preproc_def_token1] = ACTIONS(355), - [aux_sym_preproc_if_token1] = ACTIONS(357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [sym_preproc_directive] = ACTIONS(361), + [34] = { + [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__old_style_function_definition] = STATE(334), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1149), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(23), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(23), + [sym_seh_leave_statement] = STATE(23), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17491,10 +17480,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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17504,8 +17493,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(371), - [anon_sym_RBRACE] = ACTIONS(541), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(474), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -17527,131 +17516,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [35] = { + [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__old_style_function_definition] = STATE(334), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1149), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(35), + [sym_seh_leave_statement] = STATE(35), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(476), + [aux_sym_preproc_include_token1] = ACTIONS(479), + [aux_sym_preproc_def_token1] = ACTIONS(482), + [aux_sym_preproc_if_token1] = ACTIONS(485), + [aux_sym_preproc_ifdef_token1] = ACTIONS(488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(488), + [sym_preproc_directive] = ACTIONS(491), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(224), + [anon_sym_TILDE] = ACTIONS(224), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_STAR] = ACTIONS(230), + [anon_sym_AMP] = ACTIONS(230), + [anon_sym_SEMI] = ACTIONS(494), + [anon_sym___extension__] = ACTIONS(497), + [anon_sym_typedef] = ACTIONS(500), + [anon_sym_extern] = ACTIONS(503), + [anon_sym___attribute__] = ACTIONS(245), + [anon_sym_LBRACK_LBRACK] = ACTIONS(248), + [anon_sym___declspec] = ACTIONS(251), + [anon_sym___cdecl] = ACTIONS(254), + [anon_sym___clrcall] = ACTIONS(254), + [anon_sym___stdcall] = ACTIONS(254), + [anon_sym___fastcall] = ACTIONS(254), + [anon_sym___thiscall] = ACTIONS(254), + [anon_sym___vectorcall] = ACTIONS(254), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(509), + [anon_sym_signed] = ACTIONS(260), + [anon_sym_unsigned] = ACTIONS(260), + [anon_sym_long] = ACTIONS(260), + [anon_sym_short] = ACTIONS(260), + [anon_sym_static] = ACTIONS(263), + [anon_sym_auto] = ACTIONS(263), + [anon_sym_register] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(263), + [anon_sym___inline] = ACTIONS(263), + [anon_sym___inline__] = ACTIONS(263), + [anon_sym___forceinline] = ACTIONS(263), + [anon_sym_thread_local] = ACTIONS(263), + [anon_sym___thread] = ACTIONS(263), + [anon_sym_const] = ACTIONS(266), + [anon_sym_constexpr] = ACTIONS(266), + [anon_sym_volatile] = ACTIONS(266), + [anon_sym_restrict] = ACTIONS(266), + [anon_sym___restrict__] = ACTIONS(266), + [anon_sym__Atomic] = ACTIONS(266), + [anon_sym__Noreturn] = ACTIONS(266), + [anon_sym_noreturn] = ACTIONS(266), + [anon_sym_alignas] = ACTIONS(269), + [anon_sym__Alignas] = ACTIONS(269), + [sym_primitive_type] = ACTIONS(272), + [anon_sym_enum] = ACTIONS(275), + [anon_sym_struct] = ACTIONS(278), + [anon_sym_union] = ACTIONS(281), + [anon_sym_if] = ACTIONS(511), + [anon_sym_switch] = ACTIONS(514), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(520), + [anon_sym_while] = ACTIONS(523), + [anon_sym_do] = ACTIONS(526), + [anon_sym_for] = ACTIONS(529), + [anon_sym_return] = ACTIONS(532), + [anon_sym_break] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(538), + [anon_sym_goto] = ACTIONS(541), + [anon_sym___try] = ACTIONS(544), + [anon_sym___leave] = ACTIONS(547), + [anon_sym_DASH_DASH] = ACTIONS(323), + [anon_sym_PLUS_PLUS] = ACTIONS(323), + [anon_sym_sizeof] = ACTIONS(326), + [anon_sym___alignof__] = ACTIONS(329), + [anon_sym___alignof] = ACTIONS(329), + [anon_sym__alignof] = ACTIONS(329), + [anon_sym_alignof] = ACTIONS(329), + [anon_sym__Alignof] = ACTIONS(329), + [anon_sym_offsetof] = ACTIONS(332), + [anon_sym__Generic] = ACTIONS(335), + [anon_sym_asm] = ACTIONS(338), + [anon_sym___asm__] = ACTIONS(338), + [sym_number_literal] = ACTIONS(341), + [anon_sym_L_SQUOTE] = ACTIONS(344), + [anon_sym_u_SQUOTE] = ACTIONS(344), + [anon_sym_U_SQUOTE] = ACTIONS(344), + [anon_sym_u8_SQUOTE] = ACTIONS(344), + [anon_sym_SQUOTE] = ACTIONS(344), + [anon_sym_L_DQUOTE] = ACTIONS(347), + [anon_sym_u_DQUOTE] = ACTIONS(347), + [anon_sym_U_DQUOTE] = ACTIONS(347), + [anon_sym_u8_DQUOTE] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [sym_true] = ACTIONS(350), + [sym_false] = ACTIONS(350), + [anon_sym_NULL] = ACTIONS(353), + [anon_sym_nullptr] = ACTIONS(353), [sym_comment] = ACTIONS(3), }, [36] = { - [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__old_style_function_definition] = STATE(367), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(39), - [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(351), - [aux_sym_preproc_include_token1] = ACTIONS(353), - [aux_sym_preproc_def_token1] = ACTIONS(355), - [aux_sym_preproc_if_token1] = ACTIONS(357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [sym_preproc_directive] = ACTIONS(361), + [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__old_style_function_definition] = STATE(334), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1149), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(40), + [sym_seh_leave_statement] = STATE(40), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17659,10 +17822,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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17672,8 +17835,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_RBRACE] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(550), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -17695,131 +17858,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [37] = { - [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__old_style_function_definition] = STATE(367), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(32), - [sym_seh_leave_statement] = STATE(32), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(351), - [aux_sym_preproc_include_token1] = ACTIONS(353), - [aux_sym_preproc_def_token1] = ACTIONS(355), - [aux_sym_preproc_if_token1] = ACTIONS(357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [sym_preproc_directive] = ACTIONS(361), + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_function_definition] = STATE(27), + [sym__old_style_function_definition] = STATE(334), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1149), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym_seh_try_statement] = STATE(27), + [sym_seh_leave_statement] = STATE(27), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17827,10 +17993,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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17840,8 +18006,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(371), - [anon_sym_RBRACE] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(552), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -17863,131 +18029,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [38] = { - [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__old_style_function_definition] = STATE(367), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(35), - [sym_seh_leave_statement] = STATE(35), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(351), - [aux_sym_preproc_include_token1] = ACTIONS(353), - [aux_sym_preproc_def_token1] = ACTIONS(355), - [aux_sym_preproc_if_token1] = ACTIONS(357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [sym_preproc_directive] = ACTIONS(361), + [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__old_style_function_definition] = STATE(353), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1150), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(733), + [sym_compound_statement] = STATE(38), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(855), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(38), + [sym_seh_leave_statement] = STATE(38), + [sym__expression] = STATE(1054), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1853), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(38), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(554), + [aux_sym_preproc_include_token1] = ACTIONS(557), + [aux_sym_preproc_def_token1] = ACTIONS(560), + [aux_sym_preproc_if_token1] = ACTIONS(563), + [aux_sym_preproc_if_token2] = ACTIONS(213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(566), + [sym_preproc_directive] = ACTIONS(569), + [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(224), + [anon_sym_TILDE] = ACTIONS(224), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_STAR] = ACTIONS(230), + [anon_sym_AMP] = ACTIONS(230), + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym___extension__] = ACTIONS(575), + [anon_sym_typedef] = ACTIONS(578), + [anon_sym_extern] = ACTIONS(581), + [anon_sym___attribute__] = ACTIONS(245), + [anon_sym_LBRACK_LBRACK] = ACTIONS(248), + [anon_sym___declspec] = ACTIONS(251), + [anon_sym___cdecl] = ACTIONS(254), + [anon_sym___clrcall] = ACTIONS(254), + [anon_sym___stdcall] = ACTIONS(254), + [anon_sym___fastcall] = ACTIONS(254), + [anon_sym___thiscall] = ACTIONS(254), + [anon_sym___vectorcall] = ACTIONS(254), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_signed] = ACTIONS(260), + [anon_sym_unsigned] = ACTIONS(260), + [anon_sym_long] = ACTIONS(260), + [anon_sym_short] = ACTIONS(260), + [anon_sym_static] = ACTIONS(263), + [anon_sym_auto] = ACTIONS(263), + [anon_sym_register] = ACTIONS(263), + [anon_sym_inline] = ACTIONS(263), + [anon_sym___inline] = ACTIONS(263), + [anon_sym___inline__] = ACTIONS(263), + [anon_sym___forceinline] = ACTIONS(263), + [anon_sym_thread_local] = ACTIONS(263), + [anon_sym___thread] = ACTIONS(263), + [anon_sym_const] = ACTIONS(266), + [anon_sym_constexpr] = ACTIONS(266), + [anon_sym_volatile] = ACTIONS(266), + [anon_sym_restrict] = ACTIONS(266), + [anon_sym___restrict__] = ACTIONS(266), + [anon_sym__Atomic] = ACTIONS(266), + [anon_sym__Noreturn] = ACTIONS(266), + [anon_sym_noreturn] = ACTIONS(266), + [anon_sym_alignas] = ACTIONS(269), + [anon_sym__Alignas] = ACTIONS(269), + [sym_primitive_type] = ACTIONS(272), + [anon_sym_enum] = ACTIONS(275), + [anon_sym_struct] = ACTIONS(278), + [anon_sym_union] = ACTIONS(281), + [anon_sym_if] = ACTIONS(587), + [anon_sym_switch] = ACTIONS(590), + [anon_sym_case] = ACTIONS(593), + [anon_sym_default] = ACTIONS(596), + [anon_sym_while] = ACTIONS(599), + [anon_sym_do] = ACTIONS(602), + [anon_sym_for] = ACTIONS(605), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_goto] = ACTIONS(617), + [anon_sym___try] = ACTIONS(620), + [anon_sym___leave] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(323), + [anon_sym_PLUS_PLUS] = ACTIONS(323), + [anon_sym_sizeof] = ACTIONS(326), + [anon_sym___alignof__] = ACTIONS(329), + [anon_sym___alignof] = ACTIONS(329), + [anon_sym__alignof] = ACTIONS(329), + [anon_sym_alignof] = ACTIONS(329), + [anon_sym__Alignof] = ACTIONS(329), + [anon_sym_offsetof] = ACTIONS(332), + [anon_sym__Generic] = ACTIONS(335), + [anon_sym_asm] = ACTIONS(338), + [anon_sym___asm__] = ACTIONS(338), + [sym_number_literal] = ACTIONS(341), + [anon_sym_L_SQUOTE] = ACTIONS(344), + [anon_sym_u_SQUOTE] = ACTIONS(344), + [anon_sym_U_SQUOTE] = ACTIONS(344), + [anon_sym_u8_SQUOTE] = ACTIONS(344), + [anon_sym_SQUOTE] = ACTIONS(344), + [anon_sym_L_DQUOTE] = ACTIONS(347), + [anon_sym_u_DQUOTE] = ACTIONS(347), + [anon_sym_U_DQUOTE] = ACTIONS(347), + [anon_sym_u8_DQUOTE] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(347), + [sym_true] = ACTIONS(350), + [sym_false] = ACTIONS(350), + [anon_sym_NULL] = ACTIONS(353), + [anon_sym_nullptr] = ACTIONS(353), + [sym_comment] = ACTIONS(3), + }, + [39] = { + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(353), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1150), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(733), + [sym_compound_statement] = STATE(26), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(855), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym_attributed_statement] = STATE(26), + [sym_labeled_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_switch_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym_seh_try_statement] = STATE(26), + [sym_seh_leave_statement] = STATE(26), + [sym__expression] = STATE(1054), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1853), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(410), + [aux_sym_preproc_include_token1] = ACTIONS(412), + [aux_sym_preproc_def_token1] = ACTIONS(414), + [aux_sym_preproc_if_token1] = ACTIONS(416), + [aux_sym_preproc_if_token2] = ACTIONS(626), + [aux_sym_preproc_ifdef_token1] = ACTIONS(420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(420), + [sym_preproc_directive] = ACTIONS(422), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17995,10 +18336,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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym___extension__] = ACTIONS(426), + [anon_sym_typedef] = ACTIONS(428), + [anon_sym_extern] = ACTIONS(430), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18008,8 +18349,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(371), - [anon_sym_RBRACE] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(432), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -18031,299 +18371,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [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__old_style_function_definition] = STATE(367), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(39), - [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(549), - [aux_sym_preproc_include_token1] = ACTIONS(552), - [aux_sym_preproc_def_token1] = ACTIONS(555), - [aux_sym_preproc_if_token1] = ACTIONS(558), - [aux_sym_preproc_ifdef_token1] = ACTIONS(561), - [aux_sym_preproc_ifdef_token2] = ACTIONS(561), - [sym_preproc_directive] = ACTIONS(564), - [anon_sym_LPAREN2] = ACTIONS(219), - [anon_sym_BANG] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(222), - [anon_sym_DASH] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(225), - [anon_sym_STAR] = ACTIONS(228), - [anon_sym_AMP] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym___extension__] = ACTIONS(570), - [anon_sym_typedef] = ACTIONS(573), - [anon_sym_extern] = ACTIONS(576), - [anon_sym___attribute__] = ACTIONS(243), - [anon_sym_LBRACK_LBRACK] = ACTIONS(246), - [anon_sym___declspec] = ACTIONS(249), - [anon_sym___cdecl] = ACTIONS(252), - [anon_sym___clrcall] = ACTIONS(252), - [anon_sym___stdcall] = ACTIONS(252), - [anon_sym___fastcall] = ACTIONS(252), - [anon_sym___thiscall] = ACTIONS(252), - [anon_sym___vectorcall] = ACTIONS(252), - [anon_sym_LBRACE] = ACTIONS(579), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_signed] = ACTIONS(258), - [anon_sym_unsigned] = ACTIONS(258), - [anon_sym_long] = ACTIONS(258), - [anon_sym_short] = ACTIONS(258), - [anon_sym_static] = ACTIONS(261), - [anon_sym_auto] = ACTIONS(261), - [anon_sym_register] = ACTIONS(261), - [anon_sym_inline] = ACTIONS(261), - [anon_sym___inline] = ACTIONS(261), - [anon_sym___inline__] = ACTIONS(261), - [anon_sym___forceinline] = ACTIONS(261), - [anon_sym_thread_local] = ACTIONS(261), - [anon_sym___thread] = ACTIONS(261), - [anon_sym_const] = ACTIONS(264), - [anon_sym_constexpr] = ACTIONS(264), - [anon_sym_volatile] = ACTIONS(264), - [anon_sym_restrict] = ACTIONS(264), - [anon_sym___restrict__] = ACTIONS(264), - [anon_sym__Atomic] = ACTIONS(264), - [anon_sym__Noreturn] = ACTIONS(264), - [anon_sym_noreturn] = ACTIONS(264), - [sym_primitive_type] = ACTIONS(267), - [anon_sym_enum] = ACTIONS(270), - [anon_sym_struct] = ACTIONS(273), - [anon_sym_union] = ACTIONS(276), - [anon_sym_if] = ACTIONS(584), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(590), - [anon_sym_default] = ACTIONS(593), - [anon_sym_while] = ACTIONS(596), - [anon_sym_do] = ACTIONS(599), - [anon_sym_for] = ACTIONS(602), - [anon_sym_return] = ACTIONS(605), - [anon_sym_break] = ACTIONS(608), - [anon_sym_continue] = ACTIONS(611), - [anon_sym_goto] = ACTIONS(614), - [anon_sym___try] = ACTIONS(617), - [anon_sym___leave] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(318), - [anon_sym_PLUS_PLUS] = ACTIONS(318), - [anon_sym_sizeof] = ACTIONS(321), - [anon_sym___alignof__] = ACTIONS(324), - [anon_sym___alignof] = ACTIONS(324), - [anon_sym__alignof] = ACTIONS(324), - [anon_sym_alignof] = ACTIONS(324), - [anon_sym__Alignof] = ACTIONS(324), - [anon_sym_offsetof] = ACTIONS(327), - [anon_sym__Generic] = ACTIONS(330), - [anon_sym_asm] = ACTIONS(333), - [anon_sym___asm__] = ACTIONS(333), - [sym_number_literal] = ACTIONS(336), - [anon_sym_L_SQUOTE] = ACTIONS(339), - [anon_sym_u_SQUOTE] = ACTIONS(339), - [anon_sym_U_SQUOTE] = ACTIONS(339), - [anon_sym_u8_SQUOTE] = ACTIONS(339), - [anon_sym_SQUOTE] = ACTIONS(339), - [anon_sym_L_DQUOTE] = ACTIONS(342), - [anon_sym_u_DQUOTE] = ACTIONS(342), - [anon_sym_U_DQUOTE] = ACTIONS(342), - [anon_sym_u8_DQUOTE] = ACTIONS(342), - [anon_sym_DQUOTE] = ACTIONS(342), - [sym_true] = ACTIONS(345), - [sym_false] = ACTIONS(345), - [anon_sym_NULL] = ACTIONS(348), - [anon_sym_nullptr] = ACTIONS(348), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [40] = { - [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__old_style_function_definition] = STATE(367), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(42), - [sym_seh_leave_statement] = STATE(42), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(42), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(351), - [aux_sym_preproc_include_token1] = ACTIONS(353), - [aux_sym_preproc_def_token1] = ACTIONS(355), - [aux_sym_preproc_if_token1] = ACTIONS(357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [sym_preproc_directive] = ACTIONS(361), + [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__old_style_function_definition] = STATE(334), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1149), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(35), + [sym_seh_leave_statement] = STATE(35), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18331,10 +18506,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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18344,8 +18519,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(371), - [anon_sym_RBRACE] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(628), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -18367,131 +18542,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [41] = { - [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__old_style_function_definition] = STATE(367), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(36), - [sym_seh_leave_statement] = STATE(36), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(351), - [aux_sym_preproc_include_token1] = ACTIONS(353), - [aux_sym_preproc_def_token1] = ACTIONS(355), - [aux_sym_preproc_if_token1] = ACTIONS(357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [sym_preproc_directive] = ACTIONS(361), + [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__old_style_function_definition] = STATE(334), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1149), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(35), + [sym_seh_leave_statement] = STATE(35), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18499,10 +18677,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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18512,8 +18690,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(371), - [anon_sym_RBRACE] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(630), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -18535,131 +18713,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [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__old_style_function_definition] = STATE(367), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1134), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(743), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(864), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(39), - [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(351), - [aux_sym_preproc_include_token1] = ACTIONS(353), - [aux_sym_preproc_def_token1] = ACTIONS(355), - [aux_sym_preproc_if_token1] = ACTIONS(357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(359), - [sym_preproc_directive] = ACTIONS(361), + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_function_definition] = STATE(41), + [sym__old_style_function_definition] = STATE(334), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1149), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(730), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(859), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(356), + [aux_sym_preproc_include_token1] = ACTIONS(358), + [aux_sym_preproc_def_token1] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(364), + [sym_preproc_directive] = ACTIONS(366), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18667,10 +18848,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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), - [anon_sym_extern] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(374), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18680,8 +18861,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(371), - [anon_sym_RBRACE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(632), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -18703,50 +18884,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [43] = { @@ -18757,24 +18940,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(44), [sym_preproc_ifdef] = STATE(44), [sym_function_definition] = STATE(44), - [sym__old_style_function_definition] = STATE(410), + [sym__old_style_function_definition] = STATE(429), [sym_declaration] = STATE(44), [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1129), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1147), [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(836), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(44), [sym_labeled_statement] = STATE(44), [sym__top_level_expression_statement] = STATE(44), @@ -18788,37 +18972,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(44), [sym_continue_statement] = STATE(44), [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(1118), - [sym__expression_not_binary] = STATE(1115), - [sym__string] = STATE(1115), - [sym_conditional_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1115), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(1115), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(1115), - [sym_cast_expression] = STATE(1115), - [sym_sizeof_expression] = STATE(1115), - [sym_alignof_expression] = STATE(1115), - [sym_offsetof_expression] = STATE(1115), - [sym_generic_expression] = STATE(1115), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(1115), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(1115), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(1115), - [sym_concatenated_string] = STATE(1115), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(1115), + [sym__expression] = STATE(1130), + [sym__expression_not_binary] = STATE(1128), + [sym__string] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1128), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(1128), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(1128), + [sym_cast_expression] = STATE(1128), + [sym_sizeof_expression] = STATE(1128), + [sym_alignof_expression] = STATE(1128), + [sym_offsetof_expression] = STATE(1128), + [sym_generic_expression] = STATE(1128), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(1128), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(1128), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(1128), + [sym_concatenated_string] = STATE(1128), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(1128), [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(825), + [sym_macro_type_specifier] = STATE(822), [aux_sym_translation_unit_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [ts_builtin_sym_end] = ACTIONS(629), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(403), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [ts_builtin_sym_end] = ACTIONS(634), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), [aux_sym_preproc_def_token1] = ACTIONS(11), @@ -18867,48 +19051,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(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___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(97), - [sym_false] = ACTIONS(97), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(93), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(99), + [sym_false] = ACTIONS(99), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [44] = { @@ -18919,24 +19105,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(44), [sym_preproc_ifdef] = STATE(44), [sym_function_definition] = STATE(44), - [sym__old_style_function_definition] = STATE(410), + [sym__old_style_function_definition] = STATE(429), [sym_declaration] = STATE(44), [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1129), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1147), [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(836), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(44), [sym_labeled_statement] = STATE(44), [sym__top_level_expression_statement] = STATE(44), @@ -18950,306 +19137,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(44), [sym_continue_statement] = STATE(44), [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(1118), - [sym__expression_not_binary] = STATE(1115), - [sym__string] = STATE(1115), - [sym_conditional_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1115), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(1115), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(1115), - [sym_cast_expression] = STATE(1115), - [sym_sizeof_expression] = STATE(1115), - [sym_alignof_expression] = STATE(1115), - [sym_offsetof_expression] = STATE(1115), - [sym_generic_expression] = STATE(1115), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(1115), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(1115), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(1115), - [sym_concatenated_string] = STATE(1115), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(1115), + [sym__expression] = STATE(1130), + [sym__expression_not_binary] = STATE(1128), + [sym__string] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_assignment_expression] = STATE(1128), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(1128), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(1128), + [sym_cast_expression] = STATE(1128), + [sym_sizeof_expression] = STATE(1128), + [sym_alignof_expression] = STATE(1128), + [sym_offsetof_expression] = STATE(1128), + [sym_generic_expression] = STATE(1128), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(1128), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(1128), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(1128), + [sym_concatenated_string] = STATE(1128), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(1128), [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(825), + [sym_macro_type_specifier] = STATE(822), [aux_sym_translation_unit_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [ts_builtin_sym_end] = ACTIONS(631), - [sym_identifier] = ACTIONS(633), - [aux_sym_preproc_include_token1] = ACTIONS(636), - [aux_sym_preproc_def_token1] = ACTIONS(639), - [aux_sym_preproc_if_token1] = ACTIONS(642), - [aux_sym_preproc_ifdef_token1] = ACTIONS(645), - [aux_sym_preproc_ifdef_token2] = ACTIONS(645), - [sym_preproc_directive] = ACTIONS(648), - [anon_sym_LPAREN2] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_TILDE] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_STAR] = ACTIONS(660), - [anon_sym_AMP] = ACTIONS(660), - [anon_sym___extension__] = ACTIONS(663), - [anon_sym_typedef] = ACTIONS(666), - [anon_sym_extern] = ACTIONS(669), - [anon_sym___attribute__] = ACTIONS(672), - [anon_sym_LBRACK_LBRACK] = ACTIONS(675), - [anon_sym___declspec] = ACTIONS(678), - [anon_sym___cdecl] = ACTIONS(681), - [anon_sym___clrcall] = ACTIONS(681), - [anon_sym___stdcall] = ACTIONS(681), - [anon_sym___fastcall] = ACTIONS(681), - [anon_sym___thiscall] = ACTIONS(681), - [anon_sym___vectorcall] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(684), - [anon_sym_signed] = ACTIONS(687), - [anon_sym_unsigned] = ACTIONS(687), - [anon_sym_long] = ACTIONS(687), - [anon_sym_short] = ACTIONS(687), - [anon_sym_static] = ACTIONS(690), - [anon_sym_auto] = ACTIONS(690), - [anon_sym_register] = ACTIONS(690), - [anon_sym_inline] = ACTIONS(690), - [anon_sym___inline] = ACTIONS(690), - [anon_sym___inline__] = ACTIONS(690), - [anon_sym___forceinline] = ACTIONS(690), - [anon_sym_thread_local] = ACTIONS(690), - [anon_sym___thread] = ACTIONS(690), - [anon_sym_const] = ACTIONS(693), - [anon_sym_constexpr] = ACTIONS(693), - [anon_sym_volatile] = ACTIONS(693), - [anon_sym_restrict] = ACTIONS(693), - [anon_sym___restrict__] = ACTIONS(693), - [anon_sym__Atomic] = ACTIONS(693), - [anon_sym__Noreturn] = ACTIONS(693), - [anon_sym_noreturn] = ACTIONS(693), - [sym_primitive_type] = ACTIONS(696), - [anon_sym_enum] = ACTIONS(699), - [anon_sym_struct] = ACTIONS(702), - [anon_sym_union] = ACTIONS(705), - [anon_sym_if] = ACTIONS(708), - [anon_sym_switch] = ACTIONS(711), - [anon_sym_case] = ACTIONS(714), - [anon_sym_default] = ACTIONS(717), - [anon_sym_while] = ACTIONS(720), - [anon_sym_do] = ACTIONS(723), - [anon_sym_for] = ACTIONS(726), - [anon_sym_return] = ACTIONS(729), - [anon_sym_break] = ACTIONS(732), - [anon_sym_continue] = ACTIONS(735), - [anon_sym_goto] = ACTIONS(738), - [anon_sym_DASH_DASH] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_sizeof] = ACTIONS(744), - [anon_sym___alignof__] = ACTIONS(747), - [anon_sym___alignof] = ACTIONS(747), - [anon_sym__alignof] = ACTIONS(747), - [anon_sym_alignof] = ACTIONS(747), - [anon_sym__Alignof] = ACTIONS(747), - [anon_sym_offsetof] = ACTIONS(750), - [anon_sym__Generic] = ACTIONS(753), - [anon_sym_asm] = ACTIONS(756), - [anon_sym___asm__] = ACTIONS(756), - [sym_number_literal] = ACTIONS(759), - [anon_sym_L_SQUOTE] = ACTIONS(762), - [anon_sym_u_SQUOTE] = ACTIONS(762), - [anon_sym_U_SQUOTE] = ACTIONS(762), - [anon_sym_u8_SQUOTE] = ACTIONS(762), - [anon_sym_SQUOTE] = ACTIONS(762), - [anon_sym_L_DQUOTE] = ACTIONS(765), - [anon_sym_u_DQUOTE] = ACTIONS(765), - [anon_sym_U_DQUOTE] = ACTIONS(765), - [anon_sym_u8_DQUOTE] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [sym_true] = ACTIONS(768), - [sym_false] = ACTIONS(768), - [anon_sym_NULL] = ACTIONS(771), - [anon_sym_nullptr] = ACTIONS(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(403), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [ts_builtin_sym_end] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), + [aux_sym_preproc_include_token1] = ACTIONS(641), + [aux_sym_preproc_def_token1] = ACTIONS(644), + [aux_sym_preproc_if_token1] = ACTIONS(647), + [aux_sym_preproc_ifdef_token1] = ACTIONS(650), + [aux_sym_preproc_ifdef_token2] = ACTIONS(650), + [sym_preproc_directive] = ACTIONS(653), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(665), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym___extension__] = ACTIONS(668), + [anon_sym_typedef] = ACTIONS(671), + [anon_sym_extern] = ACTIONS(674), + [anon_sym___attribute__] = ACTIONS(677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(680), + [anon_sym___declspec] = ACTIONS(683), + [anon_sym___cdecl] = ACTIONS(686), + [anon_sym___clrcall] = ACTIONS(686), + [anon_sym___stdcall] = ACTIONS(686), + [anon_sym___fastcall] = ACTIONS(686), + [anon_sym___thiscall] = ACTIONS(686), + [anon_sym___vectorcall] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_signed] = ACTIONS(692), + [anon_sym_unsigned] = ACTIONS(692), + [anon_sym_long] = ACTIONS(692), + [anon_sym_short] = ACTIONS(692), + [anon_sym_static] = ACTIONS(695), + [anon_sym_auto] = ACTIONS(695), + [anon_sym_register] = ACTIONS(695), + [anon_sym_inline] = ACTIONS(695), + [anon_sym___inline] = ACTIONS(695), + [anon_sym___inline__] = ACTIONS(695), + [anon_sym___forceinline] = ACTIONS(695), + [anon_sym_thread_local] = ACTIONS(695), + [anon_sym___thread] = ACTIONS(695), + [anon_sym_const] = ACTIONS(698), + [anon_sym_constexpr] = ACTIONS(698), + [anon_sym_volatile] = ACTIONS(698), + [anon_sym_restrict] = ACTIONS(698), + [anon_sym___restrict__] = ACTIONS(698), + [anon_sym__Atomic] = ACTIONS(698), + [anon_sym__Noreturn] = ACTIONS(698), + [anon_sym_noreturn] = ACTIONS(698), + [anon_sym_alignas] = ACTIONS(701), + [anon_sym__Alignas] = ACTIONS(701), + [sym_primitive_type] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_struct] = ACTIONS(710), + [anon_sym_union] = ACTIONS(713), + [anon_sym_if] = ACTIONS(716), + [anon_sym_switch] = ACTIONS(719), + [anon_sym_case] = ACTIONS(722), + [anon_sym_default] = ACTIONS(725), + [anon_sym_while] = ACTIONS(728), + [anon_sym_do] = ACTIONS(731), + [anon_sym_for] = ACTIONS(734), + [anon_sym_return] = ACTIONS(737), + [anon_sym_break] = ACTIONS(740), + [anon_sym_continue] = ACTIONS(743), + [anon_sym_goto] = ACTIONS(746), + [anon_sym_DASH_DASH] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_sizeof] = ACTIONS(752), + [anon_sym___alignof__] = ACTIONS(755), + [anon_sym___alignof] = ACTIONS(755), + [anon_sym__alignof] = ACTIONS(755), + [anon_sym_alignof] = ACTIONS(755), + [anon_sym__Alignof] = ACTIONS(755), + [anon_sym_offsetof] = ACTIONS(758), + [anon_sym__Generic] = ACTIONS(761), + [anon_sym_asm] = ACTIONS(764), + [anon_sym___asm__] = ACTIONS(764), + [sym_number_literal] = ACTIONS(767), + [anon_sym_L_SQUOTE] = ACTIONS(770), + [anon_sym_u_SQUOTE] = ACTIONS(770), + [anon_sym_U_SQUOTE] = ACTIONS(770), + [anon_sym_u8_SQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(770), + [anon_sym_L_DQUOTE] = ACTIONS(773), + [anon_sym_u_DQUOTE] = ACTIONS(773), + [anon_sym_U_DQUOTE] = ACTIONS(773), + [anon_sym_u8_DQUOTE] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(773), + [sym_true] = ACTIONS(776), + [sym_false] = ACTIONS(776), + [anon_sym_NULL] = ACTIONS(779), + [anon_sym_nullptr] = ACTIONS(779), [sym_comment] = ACTIONS(3), }, [45] = { - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1153), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(774), - [aux_sym_preproc_include_token1] = ACTIONS(776), - [aux_sym_preproc_def_token1] = ACTIONS(776), - [aux_sym_preproc_if_token1] = ACTIONS(776), - [aux_sym_preproc_if_token2] = ACTIONS(776), - [aux_sym_preproc_ifdef_token1] = ACTIONS(776), - [aux_sym_preproc_ifdef_token2] = ACTIONS(776), - [aux_sym_preproc_else_token1] = ACTIONS(776), - [aux_sym_preproc_elif_token1] = ACTIONS(776), - [aux_sym_preproc_elifdef_token1] = ACTIONS(776), - [aux_sym_preproc_elifdef_token2] = ACTIONS(776), - [sym_preproc_directive] = ACTIONS(776), - [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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(776), - [anon_sym___clrcall] = ACTIONS(776), - [anon_sym___stdcall] = ACTIONS(776), - [anon_sym___fastcall] = ACTIONS(776), - [anon_sym___thiscall] = ACTIONS(776), - [anon_sym___vectorcall] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = 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(131), - [anon_sym_else] = ACTIONS(776), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(776), - [anon_sym_default] = ACTIONS(776), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [46] = { [sym_declaration] = STATE(47), [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1153), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1164), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(47), [sym_labeled_statement] = STATE(47), [sym_expression_statement] = STATE(47), @@ -19264,48 +19293,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(47), [sym_seh_try_statement] = STATE(47), [sym_seh_leave_statement] = STATE(47), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [aux_sym_case_statement_repeat1] = STATE(47), - [sym_identifier] = ACTIONS(774), - [aux_sym_preproc_include_token1] = ACTIONS(778), - [aux_sym_preproc_def_token1] = ACTIONS(778), - [aux_sym_preproc_if_token1] = ACTIONS(778), - [aux_sym_preproc_if_token2] = ACTIONS(778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(778), - [aux_sym_preproc_else_token1] = ACTIONS(778), - [aux_sym_preproc_elif_token1] = ACTIONS(778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(778), - [sym_preproc_directive] = ACTIONS(778), + [sym_identifier] = ACTIONS(782), + [aux_sym_preproc_include_token1] = ACTIONS(784), + [aux_sym_preproc_def_token1] = ACTIONS(784), + [aux_sym_preproc_if_token1] = ACTIONS(784), + [aux_sym_preproc_if_token2] = ACTIONS(784), + [aux_sym_preproc_ifdef_token1] = ACTIONS(784), + [aux_sym_preproc_ifdef_token2] = ACTIONS(784), + [aux_sym_preproc_else_token1] = ACTIONS(784), + [aux_sym_preproc_elif_token1] = ACTIONS(784), + [aux_sym_preproc_elifdef_token1] = ACTIONS(784), + [aux_sym_preproc_elifdef_token2] = ACTIONS(784), + [sym_preproc_directive] = ACTIONS(784), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19313,20 +19342,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(778), - [anon_sym___clrcall] = ACTIONS(778), - [anon_sym___stdcall] = ACTIONS(778), - [anon_sym___fastcall] = ACTIONS(778), - [anon_sym___thiscall] = ACTIONS(778), - [anon_sym___vectorcall] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym___cdecl] = ACTIONS(784), + [anon_sym___clrcall] = ACTIONS(784), + [anon_sym___stdcall] = ACTIONS(784), + [anon_sym___fastcall] = ACTIONS(784), + [anon_sym___thiscall] = ACTIONS(784), + [anon_sym___vectorcall] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19348,286 +19377,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_else] = ACTIONS(778), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(778), - [anon_sym_default] = ACTIONS(778), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_else] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(784), + [anon_sym_default] = ACTIONS(784), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [47] = { - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1153), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(47), - [sym_seh_leave_statement] = STATE(47), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(47), - [sym_identifier] = ACTIONS(780), - [aux_sym_preproc_include_token1] = ACTIONS(783), - [aux_sym_preproc_def_token1] = ACTIONS(783), - [aux_sym_preproc_if_token1] = ACTIONS(783), - [aux_sym_preproc_if_token2] = ACTIONS(783), - [aux_sym_preproc_ifdef_token1] = ACTIONS(783), - [aux_sym_preproc_ifdef_token2] = ACTIONS(783), - [aux_sym_preproc_else_token1] = ACTIONS(783), - [aux_sym_preproc_elif_token1] = ACTIONS(783), - [aux_sym_preproc_elifdef_token1] = ACTIONS(783), - [aux_sym_preproc_elifdef_token2] = ACTIONS(783), - [sym_preproc_directive] = ACTIONS(783), - [anon_sym_LPAREN2] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(797), - [anon_sym___extension__] = ACTIONS(800), - [anon_sym_typedef] = ACTIONS(803), - [anon_sym_extern] = ACTIONS(806), - [anon_sym___attribute__] = ACTIONS(809), - [anon_sym_LBRACK_LBRACK] = ACTIONS(812), - [anon_sym___declspec] = ACTIONS(815), - [anon_sym___cdecl] = ACTIONS(783), - [anon_sym___clrcall] = ACTIONS(783), - [anon_sym___stdcall] = ACTIONS(783), - [anon_sym___fastcall] = ACTIONS(783), - [anon_sym___thiscall] = ACTIONS(783), - [anon_sym___vectorcall] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_signed] = ACTIONS(821), - [anon_sym_unsigned] = ACTIONS(821), - [anon_sym_long] = ACTIONS(821), - [anon_sym_short] = ACTIONS(821), - [anon_sym_static] = ACTIONS(806), - [anon_sym_auto] = ACTIONS(806), - [anon_sym_register] = ACTIONS(806), - [anon_sym_inline] = ACTIONS(806), - [anon_sym___inline] = ACTIONS(806), - [anon_sym___inline__] = ACTIONS(806), - [anon_sym___forceinline] = ACTIONS(806), - [anon_sym_thread_local] = ACTIONS(806), - [anon_sym___thread] = ACTIONS(806), - [anon_sym_const] = ACTIONS(824), - [anon_sym_constexpr] = ACTIONS(824), - [anon_sym_volatile] = ACTIONS(824), - [anon_sym_restrict] = ACTIONS(824), - [anon_sym___restrict__] = ACTIONS(824), - [anon_sym__Atomic] = ACTIONS(824), - [anon_sym__Noreturn] = ACTIONS(824), - [anon_sym_noreturn] = ACTIONS(824), - [sym_primitive_type] = ACTIONS(827), - [anon_sym_enum] = ACTIONS(830), - [anon_sym_struct] = ACTIONS(833), - [anon_sym_union] = ACTIONS(836), - [anon_sym_if] = ACTIONS(839), - [anon_sym_else] = ACTIONS(783), - [anon_sym_switch] = ACTIONS(842), - [anon_sym_case] = ACTIONS(783), - [anon_sym_default] = ACTIONS(783), - [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___try] = ACTIONS(866), - [anon_sym___leave] = ACTIONS(869), - [anon_sym_DASH_DASH] = ACTIONS(872), - [anon_sym_PLUS_PLUS] = ACTIONS(872), - [anon_sym_sizeof] = ACTIONS(875), - [anon_sym___alignof__] = ACTIONS(878), - [anon_sym___alignof] = ACTIONS(878), - [anon_sym__alignof] = ACTIONS(878), - [anon_sym_alignof] = ACTIONS(878), - [anon_sym__Alignof] = ACTIONS(878), - [anon_sym_offsetof] = ACTIONS(881), - [anon_sym__Generic] = ACTIONS(884), - [anon_sym_asm] = ACTIONS(887), - [anon_sym___asm__] = ACTIONS(887), - [sym_number_literal] = ACTIONS(890), - [anon_sym_L_SQUOTE] = ACTIONS(893), - [anon_sym_u_SQUOTE] = ACTIONS(893), - [anon_sym_U_SQUOTE] = ACTIONS(893), - [anon_sym_u8_SQUOTE] = ACTIONS(893), - [anon_sym_SQUOTE] = ACTIONS(893), - [anon_sym_L_DQUOTE] = ACTIONS(896), - [anon_sym_u_DQUOTE] = ACTIONS(896), - [anon_sym_U_DQUOTE] = ACTIONS(896), - [anon_sym_u8_DQUOTE] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(896), - [sym_true] = ACTIONS(899), - [sym_false] = ACTIONS(899), - [anon_sym_NULL] = ACTIONS(902), - [anon_sym_nullptr] = ACTIONS(902), - [sym_comment] = ACTIONS(3), - }, - [48] = { - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1153), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(47), - [sym_seh_leave_statement] = STATE(47), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(47), - [sym_identifier] = ACTIONS(774), - [aux_sym_preproc_include_token1] = ACTIONS(905), - [aux_sym_preproc_def_token1] = ACTIONS(905), - [aux_sym_preproc_if_token1] = ACTIONS(905), - [aux_sym_preproc_if_token2] = ACTIONS(905), - [aux_sym_preproc_ifdef_token1] = ACTIONS(905), - [aux_sym_preproc_ifdef_token2] = ACTIONS(905), - [aux_sym_preproc_else_token1] = ACTIONS(905), - [aux_sym_preproc_elif_token1] = ACTIONS(905), - [aux_sym_preproc_elifdef_token1] = ACTIONS(905), - [aux_sym_preproc_elifdef_token2] = ACTIONS(905), - [sym_preproc_directive] = ACTIONS(905), + [46] = { + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1164), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(48), + [sym_seh_leave_statement] = STATE(48), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(48), + [sym_identifier] = ACTIONS(782), + [aux_sym_preproc_include_token1] = ACTIONS(786), + [aux_sym_preproc_def_token1] = ACTIONS(786), + [aux_sym_preproc_if_token1] = ACTIONS(786), + [aux_sym_preproc_if_token2] = ACTIONS(786), + [aux_sym_preproc_ifdef_token1] = ACTIONS(786), + [aux_sym_preproc_ifdef_token2] = ACTIONS(786), + [aux_sym_preproc_else_token1] = ACTIONS(786), + [aux_sym_preproc_elif_token1] = ACTIONS(786), + [aux_sym_preproc_elifdef_token1] = ACTIONS(786), + [aux_sym_preproc_elifdef_token2] = ACTIONS(786), + [sym_preproc_directive] = ACTIONS(786), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19635,20 +19506,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(905), - [anon_sym___clrcall] = ACTIONS(905), - [anon_sym___stdcall] = ACTIONS(905), - [anon_sym___fastcall] = ACTIONS(905), - [anon_sym___thiscall] = ACTIONS(905), - [anon_sym___vectorcall] = ACTIONS(905), - [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym___cdecl] = ACTIONS(786), + [anon_sym___clrcall] = ACTIONS(786), + [anon_sym___stdcall] = ACTIONS(786), + [anon_sym___fastcall] = ACTIONS(786), + [anon_sym___thiscall] = ACTIONS(786), + [anon_sym___vectorcall] = ACTIONS(786), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19670,69 +19541,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_else] = ACTIONS(905), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(905), - [anon_sym_default] = ACTIONS(905), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_else] = ACTIONS(786), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(786), + [anon_sym_default] = ACTIONS(786), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [49] = { + [47] = { [sym_declaration] = STATE(48), [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1153), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1164), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(48), [sym_labeled_statement] = STATE(48), [sym_expression_statement] = STATE(48), @@ -19747,48 +19621,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(48), [sym_seh_try_statement] = STATE(48), [sym_seh_leave_statement] = STATE(48), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [aux_sym_case_statement_repeat1] = STATE(48), - [sym_identifier] = ACTIONS(774), - [aux_sym_preproc_include_token1] = ACTIONS(907), - [aux_sym_preproc_def_token1] = ACTIONS(907), - [aux_sym_preproc_if_token1] = ACTIONS(907), - [aux_sym_preproc_if_token2] = ACTIONS(907), - [aux_sym_preproc_ifdef_token1] = ACTIONS(907), - [aux_sym_preproc_ifdef_token2] = ACTIONS(907), - [aux_sym_preproc_else_token1] = ACTIONS(907), - [aux_sym_preproc_elif_token1] = ACTIONS(907), - [aux_sym_preproc_elifdef_token1] = ACTIONS(907), - [aux_sym_preproc_elifdef_token2] = ACTIONS(907), - [sym_preproc_directive] = ACTIONS(907), + [sym_identifier] = ACTIONS(782), + [aux_sym_preproc_include_token1] = ACTIONS(788), + [aux_sym_preproc_def_token1] = ACTIONS(788), + [aux_sym_preproc_if_token1] = ACTIONS(788), + [aux_sym_preproc_if_token2] = ACTIONS(788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(788), + [aux_sym_preproc_else_token1] = ACTIONS(788), + [aux_sym_preproc_elif_token1] = ACTIONS(788), + [aux_sym_preproc_elifdef_token1] = ACTIONS(788), + [aux_sym_preproc_elifdef_token2] = ACTIONS(788), + [sym_preproc_directive] = ACTIONS(788), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19796,20 +19670,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(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(907), - [anon_sym___clrcall] = ACTIONS(907), - [anon_sym___stdcall] = ACTIONS(907), - [anon_sym___fastcall] = ACTIONS(907), - [anon_sym___thiscall] = ACTIONS(907), - [anon_sym___vectorcall] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym___cdecl] = ACTIONS(788), + [anon_sym___clrcall] = ACTIONS(788), + [anon_sym___stdcall] = ACTIONS(788), + [anon_sym___fastcall] = ACTIONS(788), + [anon_sym___thiscall] = ACTIONS(788), + [anon_sym___vectorcall] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19831,121 +19705,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(131), - [anon_sym_else] = ACTIONS(907), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(907), - [anon_sym_default] = ACTIONS(907), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_else] = ACTIONS(788), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(788), + [anon_sym_default] = ACTIONS(788), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [50] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym_attributed_statement] = STATE(60), - [sym_labeled_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_goto_statement] = STATE(60), - [sym_seh_try_statement] = STATE(60), - [sym_seh_leave_statement] = STATE(60), - [sym__expression] = STATE(1084), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(60), - [ts_builtin_sym_end] = ACTIONS(909), - [sym_identifier] = ACTIONS(911), - [aux_sym_preproc_include_token1] = ACTIONS(905), - [aux_sym_preproc_def_token1] = ACTIONS(905), - [aux_sym_preproc_if_token1] = ACTIONS(905), - [aux_sym_preproc_ifdef_token1] = ACTIONS(905), - [aux_sym_preproc_ifdef_token2] = ACTIONS(905), - [sym_preproc_directive] = ACTIONS(905), + [48] = { + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1164), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(48), + [sym_seh_leave_statement] = STATE(48), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(48), + [sym_identifier] = ACTIONS(790), + [aux_sym_preproc_include_token1] = ACTIONS(793), + [aux_sym_preproc_def_token1] = ACTIONS(793), + [aux_sym_preproc_if_token1] = ACTIONS(793), + [aux_sym_preproc_if_token2] = ACTIONS(793), + [aux_sym_preproc_ifdef_token1] = ACTIONS(793), + [aux_sym_preproc_ifdef_token2] = ACTIONS(793), + [aux_sym_preproc_else_token1] = ACTIONS(793), + [aux_sym_preproc_elif_token1] = ACTIONS(793), + [aux_sym_preproc_elifdef_token1] = ACTIONS(793), + [aux_sym_preproc_elifdef_token2] = ACTIONS(793), + [sym_preproc_directive] = ACTIONS(793), + [anon_sym_LPAREN2] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(807), + [anon_sym___extension__] = ACTIONS(810), + [anon_sym_typedef] = ACTIONS(813), + [anon_sym_extern] = ACTIONS(816), + [anon_sym___attribute__] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(822), + [anon_sym___declspec] = ACTIONS(825), + [anon_sym___cdecl] = ACTIONS(793), + [anon_sym___clrcall] = ACTIONS(793), + [anon_sym___stdcall] = ACTIONS(793), + [anon_sym___fastcall] = ACTIONS(793), + [anon_sym___thiscall] = ACTIONS(793), + [anon_sym___vectorcall] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_signed] = ACTIONS(831), + [anon_sym_unsigned] = ACTIONS(831), + [anon_sym_long] = ACTIONS(831), + [anon_sym_short] = ACTIONS(831), + [anon_sym_static] = ACTIONS(816), + [anon_sym_auto] = ACTIONS(816), + [anon_sym_register] = ACTIONS(816), + [anon_sym_inline] = ACTIONS(816), + [anon_sym___inline] = ACTIONS(816), + [anon_sym___inline__] = ACTIONS(816), + [anon_sym___forceinline] = ACTIONS(816), + [anon_sym_thread_local] = ACTIONS(816), + [anon_sym___thread] = ACTIONS(816), + [anon_sym_const] = ACTIONS(834), + [anon_sym_constexpr] = ACTIONS(834), + [anon_sym_volatile] = ACTIONS(834), + [anon_sym_restrict] = ACTIONS(834), + [anon_sym___restrict__] = ACTIONS(834), + [anon_sym__Atomic] = ACTIONS(834), + [anon_sym__Noreturn] = ACTIONS(834), + [anon_sym_noreturn] = ACTIONS(834), + [anon_sym_alignas] = ACTIONS(837), + [anon_sym__Alignas] = ACTIONS(837), + [sym_primitive_type] = ACTIONS(840), + [anon_sym_enum] = ACTIONS(843), + [anon_sym_struct] = ACTIONS(846), + [anon_sym_union] = ACTIONS(849), + [anon_sym_if] = ACTIONS(852), + [anon_sym_else] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(855), + [anon_sym_case] = ACTIONS(793), + [anon_sym_default] = ACTIONS(793), + [anon_sym_while] = ACTIONS(858), + [anon_sym_do] = ACTIONS(861), + [anon_sym_for] = ACTIONS(864), + [anon_sym_return] = ACTIONS(867), + [anon_sym_break] = ACTIONS(870), + [anon_sym_continue] = ACTIONS(873), + [anon_sym_goto] = ACTIONS(876), + [anon_sym___try] = ACTIONS(879), + [anon_sym___leave] = ACTIONS(882), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_sizeof] = ACTIONS(888), + [anon_sym___alignof__] = ACTIONS(891), + [anon_sym___alignof] = ACTIONS(891), + [anon_sym__alignof] = ACTIONS(891), + [anon_sym_alignof] = ACTIONS(891), + [anon_sym__Alignof] = ACTIONS(891), + [anon_sym_offsetof] = ACTIONS(894), + [anon_sym__Generic] = ACTIONS(897), + [anon_sym_asm] = ACTIONS(900), + [anon_sym___asm__] = ACTIONS(900), + [sym_number_literal] = ACTIONS(903), + [anon_sym_L_SQUOTE] = ACTIONS(906), + [anon_sym_u_SQUOTE] = ACTIONS(906), + [anon_sym_U_SQUOTE] = ACTIONS(906), + [anon_sym_u8_SQUOTE] = ACTIONS(906), + [anon_sym_SQUOTE] = ACTIONS(906), + [anon_sym_L_DQUOTE] = ACTIONS(909), + [anon_sym_u_DQUOTE] = ACTIONS(909), + [anon_sym_U_DQUOTE] = ACTIONS(909), + [anon_sym_u8_DQUOTE] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym_true] = ACTIONS(912), + [sym_false] = ACTIONS(912), + [anon_sym_NULL] = ACTIONS(915), + [anon_sym_nullptr] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + }, + [49] = { + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1164), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym_attributed_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym_seh_try_statement] = STATE(46), + [sym_seh_leave_statement] = STATE(46), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(782), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_if_token2] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [aux_sym_preproc_else_token1] = ACTIONS(918), + [aux_sym_preproc_elif_token1] = ACTIONS(918), + [aux_sym_preproc_elifdef_token1] = ACTIONS(918), + [aux_sym_preproc_elifdef_token2] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19953,20 +19998,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(913), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(905), - [anon_sym___clrcall] = ACTIONS(905), - [anon_sym___stdcall] = ACTIONS(905), - [anon_sym___fastcall] = ACTIONS(905), - [anon_sym___thiscall] = ACTIONS(905), - [anon_sym___vectorcall] = ACTIONS(905), - [anon_sym_LBRACE] = ACTIONS(41), + [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(131), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -19988,277 +20033,443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(57), - [anon_sym_else] = ACTIONS(905), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(905), - [anon_sym_default] = ACTIONS(905), - [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___try] = ACTIONS(915), - [anon_sym___leave] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(133), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [50] = { + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1163), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(50), + [sym_seh_leave_statement] = STATE(50), + [sym__expression] = STATE(1054), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1853), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(793), + [aux_sym_preproc_def_token1] = ACTIONS(793), + [aux_sym_preproc_if_token1] = ACTIONS(793), + [aux_sym_preproc_if_token2] = ACTIONS(793), + [aux_sym_preproc_ifdef_token1] = ACTIONS(793), + [aux_sym_preproc_ifdef_token2] = ACTIONS(793), + [sym_preproc_directive] = ACTIONS(793), + [anon_sym_LPAREN2] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(923), + [anon_sym___extension__] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(929), + [anon_sym_extern] = ACTIONS(816), + [anon_sym___attribute__] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(822), + [anon_sym___declspec] = ACTIONS(825), + [anon_sym___cdecl] = ACTIONS(793), + [anon_sym___clrcall] = ACTIONS(793), + [anon_sym___stdcall] = ACTIONS(793), + [anon_sym___fastcall] = ACTIONS(793), + [anon_sym___thiscall] = ACTIONS(793), + [anon_sym___vectorcall] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(932), + [anon_sym_signed] = ACTIONS(831), + [anon_sym_unsigned] = ACTIONS(831), + [anon_sym_long] = ACTIONS(831), + [anon_sym_short] = ACTIONS(831), + [anon_sym_static] = ACTIONS(816), + [anon_sym_auto] = ACTIONS(816), + [anon_sym_register] = ACTIONS(816), + [anon_sym_inline] = ACTIONS(816), + [anon_sym___inline] = ACTIONS(816), + [anon_sym___inline__] = ACTIONS(816), + [anon_sym___forceinline] = ACTIONS(816), + [anon_sym_thread_local] = ACTIONS(816), + [anon_sym___thread] = ACTIONS(816), + [anon_sym_const] = ACTIONS(834), + [anon_sym_constexpr] = ACTIONS(834), + [anon_sym_volatile] = ACTIONS(834), + [anon_sym_restrict] = ACTIONS(834), + [anon_sym___restrict__] = ACTIONS(834), + [anon_sym__Atomic] = ACTIONS(834), + [anon_sym__Noreturn] = ACTIONS(834), + [anon_sym_noreturn] = ACTIONS(834), + [anon_sym_alignas] = ACTIONS(837), + [anon_sym__Alignas] = ACTIONS(837), + [sym_primitive_type] = ACTIONS(840), + [anon_sym_enum] = ACTIONS(843), + [anon_sym_struct] = ACTIONS(846), + [anon_sym_union] = ACTIONS(849), + [anon_sym_if] = ACTIONS(935), + [anon_sym_else] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(938), + [anon_sym_case] = ACTIONS(793), + [anon_sym_default] = ACTIONS(793), + [anon_sym_while] = ACTIONS(941), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(947), + [anon_sym_return] = ACTIONS(950), + [anon_sym_break] = ACTIONS(953), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_goto] = ACTIONS(959), + [anon_sym___try] = ACTIONS(962), + [anon_sym___leave] = ACTIONS(965), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_sizeof] = ACTIONS(888), + [anon_sym___alignof__] = ACTIONS(891), + [anon_sym___alignof] = ACTIONS(891), + [anon_sym__alignof] = ACTIONS(891), + [anon_sym_alignof] = ACTIONS(891), + [anon_sym__Alignof] = ACTIONS(891), + [anon_sym_offsetof] = ACTIONS(894), + [anon_sym__Generic] = ACTIONS(897), + [anon_sym_asm] = ACTIONS(900), + [anon_sym___asm__] = ACTIONS(900), + [sym_number_literal] = ACTIONS(903), + [anon_sym_L_SQUOTE] = ACTIONS(906), + [anon_sym_u_SQUOTE] = ACTIONS(906), + [anon_sym_U_SQUOTE] = ACTIONS(906), + [anon_sym_u8_SQUOTE] = ACTIONS(906), + [anon_sym_SQUOTE] = ACTIONS(906), + [anon_sym_L_DQUOTE] = ACTIONS(909), + [anon_sym_u_DQUOTE] = ACTIONS(909), + [anon_sym_U_DQUOTE] = ACTIONS(909), + [anon_sym_u8_DQUOTE] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym_true] = ACTIONS(912), + [sym_false] = ACTIONS(912), + [anon_sym_NULL] = ACTIONS(915), + [anon_sym_nullptr] = ACTIONS(915), [sym_comment] = ACTIONS(3), }, [51] = { - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1144), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(51), - [sym_seh_leave_statement] = STATE(51), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(919), - [aux_sym_preproc_include_token1] = ACTIONS(783), - [aux_sym_preproc_def_token1] = ACTIONS(783), - [aux_sym_preproc_if_token1] = ACTIONS(783), - [aux_sym_preproc_ifdef_token1] = ACTIONS(783), - [aux_sym_preproc_ifdef_token2] = ACTIONS(783), - [sym_preproc_directive] = ACTIONS(783), - [anon_sym_LPAREN2] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym___extension__] = ACTIONS(925), - [anon_sym_typedef] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(806), - [anon_sym___attribute__] = ACTIONS(809), - [anon_sym_LBRACK_LBRACK] = ACTIONS(812), - [anon_sym___declspec] = ACTIONS(815), - [anon_sym___cdecl] = ACTIONS(783), - [anon_sym___clrcall] = ACTIONS(783), - [anon_sym___stdcall] = ACTIONS(783), - [anon_sym___fastcall] = ACTIONS(783), - [anon_sym___thiscall] = ACTIONS(783), - [anon_sym___vectorcall] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_signed] = ACTIONS(821), - [anon_sym_unsigned] = ACTIONS(821), - [anon_sym_long] = ACTIONS(821), - [anon_sym_short] = ACTIONS(821), - [anon_sym_static] = ACTIONS(806), - [anon_sym_auto] = ACTIONS(806), - [anon_sym_register] = ACTIONS(806), - [anon_sym_inline] = ACTIONS(806), - [anon_sym___inline] = ACTIONS(806), - [anon_sym___inline__] = ACTIONS(806), - [anon_sym___forceinline] = ACTIONS(806), - [anon_sym_thread_local] = ACTIONS(806), - [anon_sym___thread] = ACTIONS(806), - [anon_sym_const] = ACTIONS(824), - [anon_sym_constexpr] = ACTIONS(824), - [anon_sym_volatile] = ACTIONS(824), - [anon_sym_restrict] = ACTIONS(824), - [anon_sym___restrict__] = ACTIONS(824), - [anon_sym__Atomic] = ACTIONS(824), - [anon_sym__Noreturn] = ACTIONS(824), - [anon_sym_noreturn] = ACTIONS(824), - [sym_primitive_type] = ACTIONS(827), - [anon_sym_enum] = ACTIONS(830), - [anon_sym_struct] = ACTIONS(833), - [anon_sym_union] = ACTIONS(836), - [anon_sym_if] = ACTIONS(936), - [anon_sym_else] = ACTIONS(783), - [anon_sym_switch] = ACTIONS(939), - [anon_sym_case] = ACTIONS(783), - [anon_sym_default] = ACTIONS(783), - [anon_sym_while] = ACTIONS(942), - [anon_sym_do] = ACTIONS(945), - [anon_sym_for] = ACTIONS(948), - [anon_sym_return] = ACTIONS(951), - [anon_sym_break] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(957), - [anon_sym_goto] = ACTIONS(960), - [anon_sym___try] = ACTIONS(963), - [anon_sym___leave] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(872), - [anon_sym_PLUS_PLUS] = ACTIONS(872), - [anon_sym_sizeof] = ACTIONS(875), - [anon_sym___alignof__] = ACTIONS(878), - [anon_sym___alignof] = ACTIONS(878), - [anon_sym__alignof] = ACTIONS(878), - [anon_sym_alignof] = ACTIONS(878), - [anon_sym__Alignof] = ACTIONS(878), - [anon_sym_offsetof] = ACTIONS(881), - [anon_sym__Generic] = ACTIONS(884), - [anon_sym_asm] = ACTIONS(887), - [anon_sym___asm__] = ACTIONS(887), - [sym_number_literal] = ACTIONS(890), - [anon_sym_L_SQUOTE] = ACTIONS(893), - [anon_sym_u_SQUOTE] = ACTIONS(893), - [anon_sym_U_SQUOTE] = ACTIONS(893), - [anon_sym_u8_SQUOTE] = ACTIONS(893), - [anon_sym_SQUOTE] = ACTIONS(893), - [anon_sym_L_DQUOTE] = ACTIONS(896), - [anon_sym_u_DQUOTE] = ACTIONS(896), - [anon_sym_U_DQUOTE] = ACTIONS(896), - [anon_sym_u8_DQUOTE] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(896), - [sym_true] = ACTIONS(899), - [sym_false] = ACTIONS(899), - [anon_sym_NULL] = ACTIONS(902), - [anon_sym_nullptr] = ACTIONS(902), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1168), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(55), + [sym_seh_leave_statement] = STATE(55), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(968), + [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(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(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [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(376), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [52] = { - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1144), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(51), - [sym_seh_leave_statement] = STATE(51), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(969), - [aux_sym_preproc_include_token1] = ACTIONS(778), - [aux_sym_preproc_def_token1] = ACTIONS(778), - [aux_sym_preproc_if_token1] = ACTIONS(778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(778), - [sym_preproc_directive] = ACTIONS(778), + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1168), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(62), + [sym_seh_leave_statement] = STATE(62), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(788), + [aux_sym_preproc_def_token1] = ACTIONS(788), + [aux_sym_preproc_if_token1] = ACTIONS(788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(788), + [sym_preproc_directive] = ACTIONS(788), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20266,21 +20477,21 @@ 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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(778), - [anon_sym___clrcall] = ACTIONS(778), - [anon_sym___stdcall] = ACTIONS(778), - [anon_sym___fastcall] = ACTIONS(778), - [anon_sym___thiscall] = ACTIONS(778), - [anon_sym___vectorcall] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym___cdecl] = ACTIONS(788), + [anon_sym___clrcall] = ACTIONS(788), + [anon_sym___stdcall] = ACTIONS(788), + [anon_sym___fastcall] = ACTIONS(788), + [anon_sym___thiscall] = ACTIONS(788), + [anon_sym___vectorcall] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(972), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20302,120 +20513,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_else] = ACTIONS(778), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(778), - [anon_sym_default] = ACTIONS(778), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_else] = ACTIONS(788), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(788), + [anon_sym_default] = ACTIONS(788), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [53] = { - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1144), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(51), - [sym_seh_leave_statement] = STATE(51), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(969), - [aux_sym_preproc_include_token1] = ACTIONS(905), - [aux_sym_preproc_def_token1] = ACTIONS(905), - [aux_sym_preproc_if_token1] = ACTIONS(905), - [aux_sym_preproc_ifdef_token1] = ACTIONS(905), - [aux_sym_preproc_ifdef_token2] = ACTIONS(905), - [sym_preproc_directive] = ACTIONS(905), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1163), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(50), + [sym_seh_leave_statement] = STATE(50), + [sym__expression] = STATE(1054), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1853), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(974), + [aux_sym_preproc_include_token1] = ACTIONS(786), + [aux_sym_preproc_def_token1] = ACTIONS(786), + [aux_sym_preproc_if_token1] = ACTIONS(786), + [aux_sym_preproc_if_token2] = ACTIONS(786), + [aux_sym_preproc_ifdef_token1] = ACTIONS(786), + [aux_sym_preproc_ifdef_token2] = ACTIONS(786), + [sym_preproc_directive] = ACTIONS(786), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20423,21 +20638,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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym___extension__] = ACTIONS(426), + [anon_sym_typedef] = ACTIONS(428), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(905), - [anon_sym___clrcall] = ACTIONS(905), - [anon_sym___stdcall] = ACTIONS(905), - [anon_sym___fastcall] = ACTIONS(905), - [anon_sym___thiscall] = ACTIONS(905), - [anon_sym___vectorcall] = ACTIONS(905), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym___cdecl] = ACTIONS(786), + [anon_sym___clrcall] = ACTIONS(786), + [anon_sym___stdcall] = ACTIONS(786), + [anon_sym___fastcall] = ACTIONS(786), + [anon_sym___thiscall] = ACTIONS(786), + [anon_sym___vectorcall] = ACTIONS(786), + [anon_sym_LBRACE] = ACTIONS(432), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20459,278 +20673,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_else] = ACTIONS(905), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(905), - [anon_sym_default] = ACTIONS(905), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(434), + [anon_sym_else] = ACTIONS(786), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(786), + [anon_sym_default] = ACTIONS(786), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [54] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(54), - [sym_seh_leave_statement] = STATE(54), - [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(973), - [aux_sym_preproc_include_token1] = ACTIONS(783), - [aux_sym_preproc_def_token1] = ACTIONS(783), - [aux_sym_preproc_if_token1] = ACTIONS(783), - [aux_sym_preproc_if_token2] = ACTIONS(783), - [aux_sym_preproc_ifdef_token1] = ACTIONS(783), - [aux_sym_preproc_ifdef_token2] = ACTIONS(783), - [sym_preproc_directive] = ACTIONS(783), - [anon_sym_LPAREN2] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym___extension__] = ACTIONS(979), - [anon_sym_typedef] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(806), - [anon_sym___attribute__] = ACTIONS(809), - [anon_sym_LBRACK_LBRACK] = ACTIONS(812), - [anon_sym___declspec] = ACTIONS(815), - [anon_sym___cdecl] = ACTIONS(783), - [anon_sym___clrcall] = ACTIONS(783), - [anon_sym___stdcall] = ACTIONS(783), - [anon_sym___fastcall] = ACTIONS(783), - [anon_sym___thiscall] = ACTIONS(783), - [anon_sym___vectorcall] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_signed] = ACTIONS(821), - [anon_sym_unsigned] = ACTIONS(821), - [anon_sym_long] = ACTIONS(821), - [anon_sym_short] = ACTIONS(821), - [anon_sym_static] = ACTIONS(806), - [anon_sym_auto] = ACTIONS(806), - [anon_sym_register] = ACTIONS(806), - [anon_sym_inline] = ACTIONS(806), - [anon_sym___inline] = ACTIONS(806), - [anon_sym___inline__] = ACTIONS(806), - [anon_sym___forceinline] = ACTIONS(806), - [anon_sym_thread_local] = ACTIONS(806), - [anon_sym___thread] = ACTIONS(806), - [anon_sym_const] = ACTIONS(824), - [anon_sym_constexpr] = ACTIONS(824), - [anon_sym_volatile] = ACTIONS(824), - [anon_sym_restrict] = ACTIONS(824), - [anon_sym___restrict__] = ACTIONS(824), - [anon_sym__Atomic] = ACTIONS(824), - [anon_sym__Noreturn] = ACTIONS(824), - [anon_sym_noreturn] = ACTIONS(824), - [sym_primitive_type] = ACTIONS(827), - [anon_sym_enum] = ACTIONS(830), - [anon_sym_struct] = ACTIONS(833), - [anon_sym_union] = ACTIONS(836), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(783), - [anon_sym_switch] = ACTIONS(991), - [anon_sym_case] = ACTIONS(783), - [anon_sym_default] = ACTIONS(783), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(997), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1009), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym___try] = ACTIONS(1015), - [anon_sym___leave] = ACTIONS(1018), - [anon_sym_DASH_DASH] = ACTIONS(872), - [anon_sym_PLUS_PLUS] = ACTIONS(872), - [anon_sym_sizeof] = ACTIONS(875), - [anon_sym___alignof__] = ACTIONS(878), - [anon_sym___alignof] = ACTIONS(878), - [anon_sym__alignof] = ACTIONS(878), - [anon_sym_alignof] = ACTIONS(878), - [anon_sym__Alignof] = ACTIONS(878), - [anon_sym_offsetof] = ACTIONS(881), - [anon_sym__Generic] = ACTIONS(884), - [anon_sym_asm] = ACTIONS(887), - [anon_sym___asm__] = ACTIONS(887), - [sym_number_literal] = ACTIONS(890), - [anon_sym_L_SQUOTE] = ACTIONS(893), - [anon_sym_u_SQUOTE] = ACTIONS(893), - [anon_sym_U_SQUOTE] = ACTIONS(893), - [anon_sym_u8_SQUOTE] = ACTIONS(893), - [anon_sym_SQUOTE] = ACTIONS(893), - [anon_sym_L_DQUOTE] = ACTIONS(896), - [anon_sym_u_DQUOTE] = ACTIONS(896), - [anon_sym_U_DQUOTE] = ACTIONS(896), - [anon_sym_u8_DQUOTE] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(896), - [sym_true] = ACTIONS(899), - [sym_false] = ACTIONS(899), - [anon_sym_NULL] = ACTIONS(902), - [anon_sym_nullptr] = ACTIONS(902), - [sym_comment] = ACTIONS(3), - }, - [55] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(57), - [sym_seh_leave_statement] = STATE(57), - [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(1021), - [aux_sym_preproc_include_token1] = ACTIONS(776), - [aux_sym_preproc_def_token1] = ACTIONS(776), - [aux_sym_preproc_if_token1] = ACTIONS(776), - [aux_sym_preproc_if_token2] = ACTIONS(776), - [aux_sym_preproc_ifdef_token1] = ACTIONS(776), - [aux_sym_preproc_ifdef_token2] = ACTIONS(776), - [sym_preproc_directive] = ACTIONS(776), + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1173), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(59), + [sym_seh_leave_statement] = STATE(59), + [sym__expression] = STATE(1088), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1880), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(403), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(59), + [ts_builtin_sym_end] = ACTIONS(976), + [sym_identifier] = ACTIONS(978), + [aux_sym_preproc_include_token1] = ACTIONS(784), + [aux_sym_preproc_def_token1] = ACTIONS(784), + [aux_sym_preproc_if_token1] = ACTIONS(784), + [aux_sym_preproc_ifdef_token1] = ACTIONS(784), + [aux_sym_preproc_ifdef_token2] = ACTIONS(784), + [sym_preproc_directive] = ACTIONS(784), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20738,20 +20798,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(415), - [anon_sym___extension__] = ACTIONS(417), - [anon_sym_typedef] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(776), - [anon_sym___clrcall] = ACTIONS(776), - [anon_sym___stdcall] = ACTIONS(776), - [anon_sym___fastcall] = ACTIONS(776), - [anon_sym___thiscall] = ACTIONS(776), - [anon_sym___vectorcall] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym___cdecl] = ACTIONS(784), + [anon_sym___clrcall] = ACTIONS(784), + [anon_sym___stdcall] = ACTIONS(784), + [anon_sym___fastcall] = ACTIONS(784), + [anon_sym___thiscall] = ACTIONS(784), + [anon_sym___vectorcall] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20773,120 +20833,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(425), - [anon_sym_else] = ACTIONS(776), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_case] = ACTIONS(776), - [anon_sym_default] = ACTIONS(776), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_return] = ACTIONS(439), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_goto] = ACTIONS(445), - [anon_sym___try] = ACTIONS(447), - [anon_sym___leave] = ACTIONS(449), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_else] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(784), + [anon_sym_default] = ACTIONS(784), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(982), + [anon_sym___leave] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [56] = { - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1144), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(52), - [sym_seh_leave_statement] = STATE(52), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(52), - [sym_identifier] = ACTIONS(969), - [aux_sym_preproc_include_token1] = ACTIONS(776), - [aux_sym_preproc_def_token1] = ACTIONS(776), - [aux_sym_preproc_if_token1] = ACTIONS(776), - [aux_sym_preproc_ifdef_token1] = ACTIONS(776), - [aux_sym_preproc_ifdef_token2] = ACTIONS(776), - [sym_preproc_directive] = ACTIONS(776), + [55] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1168), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(62), + [sym_seh_leave_statement] = STATE(62), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(786), + [aux_sym_preproc_def_token1] = ACTIONS(786), + [aux_sym_preproc_if_token1] = ACTIONS(786), + [aux_sym_preproc_ifdef_token1] = ACTIONS(786), + [aux_sym_preproc_ifdef_token2] = ACTIONS(786), + [sym_preproc_directive] = ACTIONS(786), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20894,21 +20957,21 @@ 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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(776), - [anon_sym___clrcall] = ACTIONS(776), - [anon_sym___stdcall] = ACTIONS(776), - [anon_sym___fastcall] = ACTIONS(776), - [anon_sym___thiscall] = ACTIONS(776), - [anon_sym___vectorcall] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym___cdecl] = ACTIONS(786), + [anon_sym___clrcall] = ACTIONS(786), + [anon_sym___stdcall] = ACTIONS(786), + [anon_sym___fastcall] = ACTIONS(786), + [anon_sym___thiscall] = ACTIONS(786), + [anon_sym___vectorcall] = ACTIONS(786), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(986), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20930,121 +20993,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_else] = ACTIONS(776), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(776), - [anon_sym_default] = ACTIONS(776), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_else] = ACTIONS(786), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(786), + [anon_sym_default] = ACTIONS(786), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [57] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(54), - [sym_seh_leave_statement] = STATE(54), - [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(1021), - [aux_sym_preproc_include_token1] = ACTIONS(778), - [aux_sym_preproc_def_token1] = ACTIONS(778), - [aux_sym_preproc_if_token1] = ACTIONS(778), - [aux_sym_preproc_if_token2] = ACTIONS(778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(778), - [sym_preproc_directive] = ACTIONS(778), + [56] = { + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1168), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(52), + [sym_seh_leave_statement] = STATE(52), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(52), + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(784), + [aux_sym_preproc_def_token1] = ACTIONS(784), + [aux_sym_preproc_if_token1] = ACTIONS(784), + [aux_sym_preproc_ifdef_token1] = ACTIONS(784), + [aux_sym_preproc_ifdef_token2] = ACTIONS(784), + [sym_preproc_directive] = ACTIONS(784), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21052,20 +21117,21 @@ 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(415), - [anon_sym___extension__] = ACTIONS(417), - [anon_sym_typedef] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(778), - [anon_sym___clrcall] = ACTIONS(778), - [anon_sym___stdcall] = ACTIONS(778), - [anon_sym___fastcall] = ACTIONS(778), - [anon_sym___thiscall] = ACTIONS(778), - [anon_sym___vectorcall] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym___cdecl] = ACTIONS(784), + [anon_sym___clrcall] = ACTIONS(784), + [anon_sym___stdcall] = ACTIONS(784), + [anon_sym___fastcall] = ACTIONS(784), + [anon_sym___thiscall] = ACTIONS(784), + [anon_sym___vectorcall] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(976), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21087,121 +21153,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(425), - [anon_sym_else] = ACTIONS(778), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_case] = ACTIONS(778), - [anon_sym_default] = ACTIONS(778), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_return] = ACTIONS(439), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_goto] = ACTIONS(445), - [anon_sym___try] = ACTIONS(447), - [anon_sym___leave] = ACTIONS(449), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(380), + [anon_sym_else] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(784), + [anon_sym_default] = ACTIONS(784), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [58] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(54), - [sym_seh_leave_statement] = STATE(54), - [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(1021), - [aux_sym_preproc_include_token1] = ACTIONS(905), - [aux_sym_preproc_def_token1] = ACTIONS(905), - [aux_sym_preproc_if_token1] = ACTIONS(905), - [aux_sym_preproc_if_token2] = ACTIONS(905), - [aux_sym_preproc_ifdef_token1] = ACTIONS(905), - [aux_sym_preproc_ifdef_token2] = ACTIONS(905), - [sym_preproc_directive] = ACTIONS(905), + [57] = { + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1163), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym_seh_try_statement] = STATE(64), + [sym_seh_leave_statement] = STATE(64), + [sym__expression] = STATE(1054), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1853), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(974), + [aux_sym_preproc_include_token1] = ACTIONS(784), + [aux_sym_preproc_def_token1] = ACTIONS(784), + [aux_sym_preproc_if_token1] = ACTIONS(784), + [aux_sym_preproc_if_token2] = ACTIONS(784), + [aux_sym_preproc_ifdef_token1] = ACTIONS(784), + [aux_sym_preproc_ifdef_token2] = ACTIONS(784), + [sym_preproc_directive] = ACTIONS(784), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21209,20 +21278,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(415), - [anon_sym___extension__] = ACTIONS(417), - [anon_sym_typedef] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym___extension__] = ACTIONS(426), + [anon_sym_typedef] = ACTIONS(428), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(905), - [anon_sym___clrcall] = ACTIONS(905), - [anon_sym___stdcall] = ACTIONS(905), - [anon_sym___fastcall] = ACTIONS(905), - [anon_sym___thiscall] = ACTIONS(905), - [anon_sym___vectorcall] = ACTIONS(905), - [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym___cdecl] = ACTIONS(784), + [anon_sym___clrcall] = ACTIONS(784), + [anon_sym___stdcall] = ACTIONS(784), + [anon_sym___fastcall] = ACTIONS(784), + [anon_sym___thiscall] = ACTIONS(784), + [anon_sym___vectorcall] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(432), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21244,120 +21313,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(425), - [anon_sym_else] = ACTIONS(905), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_case] = ACTIONS(905), - [anon_sym_default] = ACTIONS(905), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_return] = ACTIONS(439), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_goto] = ACTIONS(445), - [anon_sym___try] = ACTIONS(447), - [anon_sym___leave] = ACTIONS(449), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(434), + [anon_sym_else] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(784), + [anon_sym_default] = ACTIONS(784), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [58] = { + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1173), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym__expression] = STATE(1088), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1880), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(403), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(58), + [ts_builtin_sym_end] = ACTIONS(988), + [sym_identifier] = ACTIONS(990), + [aux_sym_preproc_include_token1] = ACTIONS(793), + [aux_sym_preproc_def_token1] = ACTIONS(793), + [aux_sym_preproc_if_token1] = ACTIONS(793), + [aux_sym_preproc_ifdef_token1] = ACTIONS(793), + [aux_sym_preproc_ifdef_token2] = ACTIONS(793), + [sym_preproc_directive] = ACTIONS(793), + [anon_sym_LPAREN2] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(993), + [anon_sym___extension__] = ACTIONS(996), + [anon_sym_typedef] = ACTIONS(999), + [anon_sym_extern] = ACTIONS(816), + [anon_sym___attribute__] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(822), + [anon_sym___declspec] = ACTIONS(825), + [anon_sym___cdecl] = ACTIONS(793), + [anon_sym___clrcall] = ACTIONS(793), + [anon_sym___stdcall] = ACTIONS(793), + [anon_sym___fastcall] = ACTIONS(793), + [anon_sym___thiscall] = ACTIONS(793), + [anon_sym___vectorcall] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_signed] = ACTIONS(831), + [anon_sym_unsigned] = ACTIONS(831), + [anon_sym_long] = ACTIONS(831), + [anon_sym_short] = ACTIONS(831), + [anon_sym_static] = ACTIONS(816), + [anon_sym_auto] = ACTIONS(816), + [anon_sym_register] = ACTIONS(816), + [anon_sym_inline] = ACTIONS(816), + [anon_sym___inline] = ACTIONS(816), + [anon_sym___inline__] = ACTIONS(816), + [anon_sym___forceinline] = ACTIONS(816), + [anon_sym_thread_local] = ACTIONS(816), + [anon_sym___thread] = ACTIONS(816), + [anon_sym_const] = ACTIONS(834), + [anon_sym_constexpr] = ACTIONS(834), + [anon_sym_volatile] = ACTIONS(834), + [anon_sym_restrict] = ACTIONS(834), + [anon_sym___restrict__] = ACTIONS(834), + [anon_sym__Atomic] = ACTIONS(834), + [anon_sym__Noreturn] = ACTIONS(834), + [anon_sym_noreturn] = ACTIONS(834), + [anon_sym_alignas] = ACTIONS(837), + [anon_sym__Alignas] = ACTIONS(837), + [sym_primitive_type] = ACTIONS(840), + [anon_sym_enum] = ACTIONS(843), + [anon_sym_struct] = ACTIONS(846), + [anon_sym_union] = ACTIONS(849), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(793), + [anon_sym_default] = ACTIONS(793), + [anon_sym_while] = ACTIONS(1011), + [anon_sym_do] = ACTIONS(1014), + [anon_sym_for] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1023), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1029), + [anon_sym___try] = ACTIONS(1032), + [anon_sym___leave] = ACTIONS(1035), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_sizeof] = ACTIONS(888), + [anon_sym___alignof__] = ACTIONS(891), + [anon_sym___alignof] = ACTIONS(891), + [anon_sym__alignof] = ACTIONS(891), + [anon_sym_alignof] = ACTIONS(891), + [anon_sym__Alignof] = ACTIONS(891), + [anon_sym_offsetof] = ACTIONS(894), + [anon_sym__Generic] = ACTIONS(897), + [anon_sym_asm] = ACTIONS(900), + [anon_sym___asm__] = ACTIONS(900), + [sym_number_literal] = ACTIONS(903), + [anon_sym_L_SQUOTE] = ACTIONS(906), + [anon_sym_u_SQUOTE] = ACTIONS(906), + [anon_sym_U_SQUOTE] = ACTIONS(906), + [anon_sym_u8_SQUOTE] = ACTIONS(906), + [anon_sym_SQUOTE] = ACTIONS(906), + [anon_sym_L_DQUOTE] = ACTIONS(909), + [anon_sym_u_DQUOTE] = ACTIONS(909), + [anon_sym_U_DQUOTE] = ACTIONS(909), + [anon_sym_u8_DQUOTE] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym_true] = ACTIONS(912), + [sym_false] = ACTIONS(912), + [anon_sym_NULL] = ACTIONS(915), + [anon_sym_nullptr] = ACTIONS(915), [sym_comment] = ACTIONS(3), }, [59] = { - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1144), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(53), - [sym_seh_leave_statement] = STATE(53), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(969), - [aux_sym_preproc_include_token1] = ACTIONS(907), - [aux_sym_preproc_def_token1] = ACTIONS(907), - [aux_sym_preproc_if_token1] = ACTIONS(907), - [aux_sym_preproc_ifdef_token1] = ACTIONS(907), - [aux_sym_preproc_ifdef_token2] = ACTIONS(907), - [sym_preproc_directive] = ACTIONS(907), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1173), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym__expression] = STATE(1088), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1880), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(403), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(58), + [ts_builtin_sym_end] = ACTIONS(972), + [sym_identifier] = ACTIONS(978), + [aux_sym_preproc_include_token1] = ACTIONS(788), + [aux_sym_preproc_def_token1] = ACTIONS(788), + [aux_sym_preproc_if_token1] = ACTIONS(788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(788), + [sym_preproc_directive] = ACTIONS(788), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21365,21 +21598,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(363), - [anon_sym___extension__] = ACTIONS(365), - [anon_sym_typedef] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(907), - [anon_sym___clrcall] = ACTIONS(907), - [anon_sym___stdcall] = ACTIONS(907), - [anon_sym___fastcall] = ACTIONS(907), - [anon_sym___thiscall] = ACTIONS(907), - [anon_sym___vectorcall] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym___cdecl] = ACTIONS(788), + [anon_sym___clrcall] = ACTIONS(788), + [anon_sym___stdcall] = ACTIONS(788), + [anon_sym___fastcall] = ACTIONS(788), + [anon_sym___thiscall] = ACTIONS(788), + [anon_sym___vectorcall] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21401,278 +21633,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(375), - [anon_sym_else] = ACTIONS(907), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(907), - [anon_sym_default] = ACTIONS(907), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_else] = ACTIONS(788), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(788), + [anon_sym_default] = ACTIONS(788), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(982), + [anon_sym___leave] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [60] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym_attributed_statement] = STATE(60), - [sym_labeled_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_goto_statement] = STATE(60), - [sym_seh_try_statement] = STATE(60), - [sym_seh_leave_statement] = STATE(60), - [sym__expression] = STATE(1084), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(60), - [ts_builtin_sym_end] = ACTIONS(934), - [sym_identifier] = ACTIONS(1027), - [aux_sym_preproc_include_token1] = ACTIONS(783), - [aux_sym_preproc_def_token1] = ACTIONS(783), - [aux_sym_preproc_if_token1] = ACTIONS(783), - [aux_sym_preproc_ifdef_token1] = ACTIONS(783), - [aux_sym_preproc_ifdef_token2] = ACTIONS(783), - [sym_preproc_directive] = ACTIONS(783), - [anon_sym_LPAREN2] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym___extension__] = ACTIONS(1033), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(806), - [anon_sym___attribute__] = ACTIONS(809), - [anon_sym_LBRACK_LBRACK] = ACTIONS(812), - [anon_sym___declspec] = ACTIONS(815), - [anon_sym___cdecl] = ACTIONS(783), - [anon_sym___clrcall] = ACTIONS(783), - [anon_sym___stdcall] = ACTIONS(783), - [anon_sym___fastcall] = ACTIONS(783), - [anon_sym___thiscall] = ACTIONS(783), - [anon_sym___vectorcall] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_signed] = ACTIONS(821), - [anon_sym_unsigned] = ACTIONS(821), - [anon_sym_long] = ACTIONS(821), - [anon_sym_short] = ACTIONS(821), - [anon_sym_static] = ACTIONS(806), - [anon_sym_auto] = ACTIONS(806), - [anon_sym_register] = ACTIONS(806), - [anon_sym_inline] = ACTIONS(806), - [anon_sym___inline] = ACTIONS(806), - [anon_sym___inline__] = ACTIONS(806), - [anon_sym___forceinline] = ACTIONS(806), - [anon_sym_thread_local] = ACTIONS(806), - [anon_sym___thread] = ACTIONS(806), - [anon_sym_const] = ACTIONS(824), - [anon_sym_constexpr] = ACTIONS(824), - [anon_sym_volatile] = ACTIONS(824), - [anon_sym_restrict] = ACTIONS(824), - [anon_sym___restrict__] = ACTIONS(824), - [anon_sym__Atomic] = ACTIONS(824), - [anon_sym__Noreturn] = ACTIONS(824), - [anon_sym_noreturn] = ACTIONS(824), - [sym_primitive_type] = ACTIONS(827), - [anon_sym_enum] = ACTIONS(830), - [anon_sym_struct] = ACTIONS(833), - [anon_sym_union] = ACTIONS(836), - [anon_sym_if] = ACTIONS(1042), - [anon_sym_else] = ACTIONS(783), - [anon_sym_switch] = ACTIONS(1045), - [anon_sym_case] = ACTIONS(783), - [anon_sym_default] = ACTIONS(783), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1051), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1057), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_goto] = ACTIONS(1066), - [anon_sym___try] = ACTIONS(1069), - [anon_sym___leave] = ACTIONS(1072), - [anon_sym_DASH_DASH] = ACTIONS(872), - [anon_sym_PLUS_PLUS] = ACTIONS(872), - [anon_sym_sizeof] = ACTIONS(875), - [anon_sym___alignof__] = ACTIONS(878), - [anon_sym___alignof] = ACTIONS(878), - [anon_sym__alignof] = ACTIONS(878), - [anon_sym_alignof] = ACTIONS(878), - [anon_sym__Alignof] = ACTIONS(878), - [anon_sym_offsetof] = ACTIONS(881), - [anon_sym__Generic] = ACTIONS(884), - [anon_sym_asm] = ACTIONS(887), - [anon_sym___asm__] = ACTIONS(887), - [sym_number_literal] = ACTIONS(890), - [anon_sym_L_SQUOTE] = ACTIONS(893), - [anon_sym_u_SQUOTE] = ACTIONS(893), - [anon_sym_U_SQUOTE] = ACTIONS(893), - [anon_sym_u8_SQUOTE] = ACTIONS(893), - [anon_sym_SQUOTE] = ACTIONS(893), - [anon_sym_L_DQUOTE] = ACTIONS(896), - [anon_sym_u_DQUOTE] = ACTIONS(896), - [anon_sym_U_DQUOTE] = ACTIONS(896), - [anon_sym_u8_DQUOTE] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(896), - [sym_true] = ACTIONS(899), - [sym_false] = ACTIONS(899), - [anon_sym_NULL] = ACTIONS(902), - [anon_sym_nullptr] = ACTIONS(902), - [sym_comment] = ACTIONS(3), - }, - [61] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [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_seh_try_statement] = STATE(62), - [sym_seh_leave_statement] = STATE(62), - [sym__expression] = STATE(1084), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(62), - [ts_builtin_sym_end] = ACTIONS(1023), - [sym_identifier] = ACTIONS(911), - [aux_sym_preproc_include_token1] = ACTIONS(776), - [aux_sym_preproc_def_token1] = ACTIONS(776), - [aux_sym_preproc_if_token1] = ACTIONS(776), - [aux_sym_preproc_ifdef_token1] = ACTIONS(776), - [aux_sym_preproc_ifdef_token2] = ACTIONS(776), - [sym_preproc_directive] = ACTIONS(776), + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1173), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym_attributed_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym_seh_try_statement] = STATE(63), + [sym_seh_leave_statement] = STATE(63), + [sym__expression] = STATE(1088), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1880), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(403), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(63), + [ts_builtin_sym_end] = ACTIONS(970), + [sym_identifier] = ACTIONS(978), + [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(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21680,19 +21758,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(913), + [anon_sym_SEMI] = ACTIONS(980), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(776), - [anon_sym___clrcall] = ACTIONS(776), - [anon_sym___stdcall] = ACTIONS(776), - [anon_sym___fastcall] = ACTIONS(776), - [anon_sym___thiscall] = ACTIONS(776), - [anon_sym___vectorcall] = ACTIONS(776), + [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(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -21715,121 +21793,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(57), - [anon_sym_else] = ACTIONS(776), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(776), - [anon_sym_default] = ACTIONS(776), - [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___try] = ACTIONS(915), - [anon_sym___leave] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(982), + [anon_sym___leave] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [62] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym_attributed_statement] = STATE(60), - [sym_labeled_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_goto_statement] = STATE(60), - [sym_seh_try_statement] = STATE(60), - [sym_seh_leave_statement] = STATE(60), - [sym__expression] = STATE(1084), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(60), - [ts_builtin_sym_end] = ACTIONS(971), - [sym_identifier] = ACTIONS(911), - [aux_sym_preproc_include_token1] = ACTIONS(778), - [aux_sym_preproc_def_token1] = ACTIONS(778), - [aux_sym_preproc_if_token1] = ACTIONS(778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(778), - [sym_preproc_directive] = ACTIONS(778), + [61] = { + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1163), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(53), + [sym_seh_leave_statement] = STATE(53), + [sym__expression] = STATE(1054), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1853), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(53), + [sym_identifier] = ACTIONS(974), + [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(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21837,20 +21918,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(913), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym___extension__] = ACTIONS(426), + [anon_sym_typedef] = ACTIONS(428), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(778), - [anon_sym___clrcall] = ACTIONS(778), - [anon_sym___stdcall] = ACTIONS(778), - [anon_sym___fastcall] = ACTIONS(778), - [anon_sym___thiscall] = ACTIONS(778), - [anon_sym___vectorcall] = ACTIONS(778), - [anon_sym_LBRACE] = ACTIONS(41), + [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(432), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21872,69 +21953,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(57), - [anon_sym_else] = ACTIONS(778), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(778), - [anon_sym_default] = ACTIONS(778), - [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___try] = ACTIONS(915), - [anon_sym___leave] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(434), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [62] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1168), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [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_seh_try_statement] = STATE(62), + [sym_seh_leave_statement] = STATE(62), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(1038), + [aux_sym_preproc_include_token1] = ACTIONS(793), + [aux_sym_preproc_def_token1] = ACTIONS(793), + [aux_sym_preproc_if_token1] = ACTIONS(793), + [aux_sym_preproc_ifdef_token1] = ACTIONS(793), + [aux_sym_preproc_ifdef_token2] = ACTIONS(793), + [sym_preproc_directive] = ACTIONS(793), + [anon_sym_LPAREN2] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym___extension__] = ACTIONS(1044), + [anon_sym_typedef] = ACTIONS(1047), + [anon_sym_extern] = ACTIONS(816), + [anon_sym___attribute__] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(822), + [anon_sym___declspec] = ACTIONS(825), + [anon_sym___cdecl] = ACTIONS(793), + [anon_sym___clrcall] = ACTIONS(793), + [anon_sym___stdcall] = ACTIONS(793), + [anon_sym___fastcall] = ACTIONS(793), + [anon_sym___thiscall] = ACTIONS(793), + [anon_sym___vectorcall] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(831), + [anon_sym_unsigned] = ACTIONS(831), + [anon_sym_long] = ACTIONS(831), + [anon_sym_short] = ACTIONS(831), + [anon_sym_static] = ACTIONS(816), + [anon_sym_auto] = ACTIONS(816), + [anon_sym_register] = ACTIONS(816), + [anon_sym_inline] = ACTIONS(816), + [anon_sym___inline] = ACTIONS(816), + [anon_sym___inline__] = ACTIONS(816), + [anon_sym___forceinline] = ACTIONS(816), + [anon_sym_thread_local] = ACTIONS(816), + [anon_sym___thread] = ACTIONS(816), + [anon_sym_const] = ACTIONS(834), + [anon_sym_constexpr] = ACTIONS(834), + [anon_sym_volatile] = ACTIONS(834), + [anon_sym_restrict] = ACTIONS(834), + [anon_sym___restrict__] = ACTIONS(834), + [anon_sym__Atomic] = ACTIONS(834), + [anon_sym__Noreturn] = ACTIONS(834), + [anon_sym_noreturn] = ACTIONS(834), + [anon_sym_alignas] = ACTIONS(837), + [anon_sym__Alignas] = ACTIONS(837), + [sym_primitive_type] = ACTIONS(840), + [anon_sym_enum] = ACTIONS(843), + [anon_sym_struct] = ACTIONS(846), + [anon_sym_union] = ACTIONS(849), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_else] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(793), + [anon_sym_default] = ACTIONS(793), + [anon_sym_while] = ACTIONS(1059), + [anon_sym_do] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1065), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1071), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_goto] = ACTIONS(1077), + [anon_sym___try] = ACTIONS(1080), + [anon_sym___leave] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_sizeof] = ACTIONS(888), + [anon_sym___alignof__] = ACTIONS(891), + [anon_sym___alignof] = ACTIONS(891), + [anon_sym__alignof] = ACTIONS(891), + [anon_sym_alignof] = ACTIONS(891), + [anon_sym__Alignof] = ACTIONS(891), + [anon_sym_offsetof] = ACTIONS(894), + [anon_sym__Generic] = ACTIONS(897), + [anon_sym_asm] = ACTIONS(900), + [anon_sym___asm__] = ACTIONS(900), + [sym_number_literal] = ACTIONS(903), + [anon_sym_L_SQUOTE] = ACTIONS(906), + [anon_sym_u_SQUOTE] = ACTIONS(906), + [anon_sym_U_SQUOTE] = ACTIONS(906), + [anon_sym_u8_SQUOTE] = ACTIONS(906), + [anon_sym_SQUOTE] = ACTIONS(906), + [anon_sym_L_DQUOTE] = ACTIONS(909), + [anon_sym_u_DQUOTE] = ACTIONS(909), + [anon_sym_U_DQUOTE] = ACTIONS(909), + [anon_sym_u8_DQUOTE] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym_true] = ACTIONS(912), + [sym_false] = ACTIONS(912), + [anon_sym_NULL] = ACTIONS(915), + [anon_sym_nullptr] = ACTIONS(915), [sym_comment] = ACTIONS(3), }, [63] = { [sym_declaration] = STATE(58), [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1173), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(58), [sym_labeled_statement] = STATE(58), [sym_expression_statement] = STATE(58), @@ -21949,44 +22193,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(58), [sym_seh_try_statement] = STATE(58), [sym_seh_leave_statement] = STATE(58), - [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), + [sym__expression] = STATE(1088), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1880), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(403), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [aux_sym_case_statement_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(1021), - [aux_sym_preproc_include_token1] = ACTIONS(907), - [aux_sym_preproc_def_token1] = ACTIONS(907), - [aux_sym_preproc_if_token1] = ACTIONS(907), - [aux_sym_preproc_if_token2] = ACTIONS(907), - [aux_sym_preproc_ifdef_token1] = ACTIONS(907), - [aux_sym_preproc_ifdef_token2] = ACTIONS(907), - [sym_preproc_directive] = ACTIONS(907), + [ts_builtin_sym_end] = ACTIONS(986), + [sym_identifier] = ACTIONS(978), + [aux_sym_preproc_include_token1] = ACTIONS(786), + [aux_sym_preproc_def_token1] = ACTIONS(786), + [aux_sym_preproc_if_token1] = ACTIONS(786), + [aux_sym_preproc_ifdef_token1] = ACTIONS(786), + [aux_sym_preproc_ifdef_token2] = ACTIONS(786), + [sym_preproc_directive] = ACTIONS(786), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21994,20 +22238,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(415), - [anon_sym___extension__] = ACTIONS(417), - [anon_sym_typedef] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(907), - [anon_sym___clrcall] = ACTIONS(907), - [anon_sym___stdcall] = ACTIONS(907), - [anon_sym___fastcall] = ACTIONS(907), - [anon_sym___thiscall] = ACTIONS(907), - [anon_sym___vectorcall] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym___cdecl] = ACTIONS(786), + [anon_sym___clrcall] = ACTIONS(786), + [anon_sym___stdcall] = ACTIONS(786), + [anon_sym___fastcall] = ACTIONS(786), + [anon_sym___thiscall] = ACTIONS(786), + [anon_sym___vectorcall] = ACTIONS(786), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22029,69 +22273,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(425), - [anon_sym_else] = ACTIONS(907), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_case] = ACTIONS(907), - [anon_sym_default] = ACTIONS(907), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_return] = ACTIONS(439), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_goto] = ACTIONS(445), - [anon_sym___try] = ACTIONS(447), - [anon_sym___leave] = ACTIONS(449), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_else] = ACTIONS(786), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(786), + [anon_sym_default] = ACTIONS(786), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(982), + [anon_sym___leave] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [64] = { [sym_declaration] = STATE(50), [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1163), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(50), [sym_labeled_statement] = STATE(50), [sym_expression_statement] = STATE(50), @@ -22106,44 +22353,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(50), [sym_seh_try_statement] = STATE(50), [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1084), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), + [sym__expression] = STATE(1054), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1853), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [aux_sym_case_statement_repeat1] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(1025), - [sym_identifier] = ACTIONS(911), - [aux_sym_preproc_include_token1] = ACTIONS(907), - [aux_sym_preproc_def_token1] = ACTIONS(907), - [aux_sym_preproc_if_token1] = ACTIONS(907), - [aux_sym_preproc_ifdef_token1] = ACTIONS(907), - [aux_sym_preproc_ifdef_token2] = ACTIONS(907), - [sym_preproc_directive] = ACTIONS(907), + [sym_identifier] = ACTIONS(974), + [aux_sym_preproc_include_token1] = ACTIONS(788), + [aux_sym_preproc_def_token1] = ACTIONS(788), + [aux_sym_preproc_if_token1] = ACTIONS(788), + [aux_sym_preproc_if_token2] = ACTIONS(788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(788), + [sym_preproc_directive] = ACTIONS(788), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22151,20 +22398,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(913), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym___extension__] = ACTIONS(426), + [anon_sym_typedef] = ACTIONS(428), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(907), - [anon_sym___clrcall] = ACTIONS(907), - [anon_sym___stdcall] = ACTIONS(907), - [anon_sym___fastcall] = ACTIONS(907), - [anon_sym___thiscall] = ACTIONS(907), - [anon_sym___vectorcall] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(788), + [anon_sym___clrcall] = ACTIONS(788), + [anon_sym___stdcall] = ACTIONS(788), + [anon_sym___fastcall] = ACTIONS(788), + [anon_sym___thiscall] = ACTIONS(788), + [anon_sym___vectorcall] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(432), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22186,69 +22433,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(57), - [anon_sym_else] = ACTIONS(907), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(907), - [anon_sym_default] = ACTIONS(907), - [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___try] = ACTIONS(915), - [anon_sym___leave] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(434), + [anon_sym_else] = ACTIONS(788), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(788), + [anon_sym_default] = ACTIONS(788), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [65] = { [sym_declaration] = STATE(67), [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1173), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(67), [sym_labeled_statement] = STATE(67), [sym_expression_statement] = STATE(67), @@ -22263,37 +22513,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(67), [sym_seh_try_statement] = STATE(67), [sym_seh_leave_statement] = STATE(67), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(358), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(381), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [aux_sym_case_statement_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(1075), + [sym_identifier] = ACTIONS(1086), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22301,7 +22551,7 @@ 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(363), + [anon_sym_SEMI] = ACTIONS(368), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), @@ -22330,67 +22580,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(1077), - [anon_sym_else] = ACTIONS(905), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1079), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1083), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_else] = ACTIONS(788), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [66] = { [sym_declaration] = STATE(67), [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1173), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(67), [sym_labeled_statement] = STATE(67), [sym_expression_statement] = STATE(67), @@ -22405,37 +22658,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(67), [sym_seh_try_statement] = STATE(67), [sym_seh_leave_statement] = STATE(67), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(358), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(381), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [aux_sym_case_statement_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(1075), + [sym_identifier] = ACTIONS(1086), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22443,7 +22696,7 @@ 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(363), + [anon_sym_SEMI] = ACTIONS(368), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), @@ -22472,67 +22725,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(1077), - [anon_sym_else] = ACTIONS(778), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1079), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1083), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_else] = ACTIONS(786), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [67] = { [sym_declaration] = STATE(67), [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1173), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_attributed_statement] = STATE(67), [sym_labeled_statement] = STATE(67), [sym_expression_statement] = STATE(67), @@ -22547,179 +22803,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(67), [sym_seh_try_statement] = STATE(67), [sym_seh_leave_statement] = STATE(67), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(358), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(381), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), [aux_sym_case_statement_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(1085), - [anon_sym_LPAREN2] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym___extension__] = ACTIONS(1033), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(806), - [anon_sym___attribute__] = ACTIONS(809), - [anon_sym_LBRACK_LBRACK] = ACTIONS(812), - [anon_sym___declspec] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_signed] = ACTIONS(821), - [anon_sym_unsigned] = ACTIONS(821), - [anon_sym_long] = ACTIONS(821), - [anon_sym_short] = ACTIONS(821), - [anon_sym_static] = ACTIONS(806), - [anon_sym_auto] = ACTIONS(806), - [anon_sym_register] = ACTIONS(806), - [anon_sym_inline] = ACTIONS(806), - [anon_sym___inline] = ACTIONS(806), - [anon_sym___inline__] = ACTIONS(806), - [anon_sym___forceinline] = ACTIONS(806), - [anon_sym_thread_local] = ACTIONS(806), - [anon_sym___thread] = ACTIONS(806), - [anon_sym_const] = ACTIONS(824), - [anon_sym_constexpr] = ACTIONS(824), - [anon_sym_volatile] = ACTIONS(824), - [anon_sym_restrict] = ACTIONS(824), - [anon_sym___restrict__] = ACTIONS(824), - [anon_sym__Atomic] = ACTIONS(824), - [anon_sym__Noreturn] = ACTIONS(824), - [anon_sym_noreturn] = ACTIONS(824), - [sym_primitive_type] = ACTIONS(827), - [anon_sym_enum] = ACTIONS(830), - [anon_sym_struct] = ACTIONS(833), - [anon_sym_union] = ACTIONS(836), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_else] = ACTIONS(783), - [anon_sym_switch] = ACTIONS(1045), - [anon_sym_while] = ACTIONS(1091), - [anon_sym_do] = ACTIONS(1051), - [anon_sym_for] = ACTIONS(1094), - [anon_sym_return] = ACTIONS(1057), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_goto] = ACTIONS(1066), - [anon_sym___try] = ACTIONS(1097), - [anon_sym___leave] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(872), - [anon_sym_PLUS_PLUS] = ACTIONS(872), - [anon_sym_sizeof] = ACTIONS(875), - [anon_sym___alignof__] = ACTIONS(878), - [anon_sym___alignof] = ACTIONS(878), - [anon_sym__alignof] = ACTIONS(878), - [anon_sym_alignof] = ACTIONS(878), - [anon_sym__Alignof] = ACTIONS(878), - [anon_sym_offsetof] = ACTIONS(881), - [anon_sym__Generic] = ACTIONS(884), - [anon_sym_asm] = ACTIONS(887), - [anon_sym___asm__] = ACTIONS(887), - [sym_number_literal] = ACTIONS(890), - [anon_sym_L_SQUOTE] = ACTIONS(893), - [anon_sym_u_SQUOTE] = ACTIONS(893), - [anon_sym_U_SQUOTE] = ACTIONS(893), - [anon_sym_u8_SQUOTE] = ACTIONS(893), - [anon_sym_SQUOTE] = ACTIONS(893), - [anon_sym_L_DQUOTE] = ACTIONS(896), - [anon_sym_u_DQUOTE] = ACTIONS(896), - [anon_sym_U_DQUOTE] = ACTIONS(896), - [anon_sym_u8_DQUOTE] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(896), - [sym_true] = ACTIONS(899), - [sym_false] = ACTIONS(899), - [anon_sym_NULL] = ACTIONS(902), - [anon_sym_nullptr] = ACTIONS(902), + [sym_identifier] = ACTIONS(1096), + [anon_sym_LPAREN2] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(798), + [anon_sym_TILDE] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym___extension__] = ACTIONS(996), + [anon_sym_typedef] = ACTIONS(999), + [anon_sym_extern] = ACTIONS(816), + [anon_sym___attribute__] = ACTIONS(819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(822), + [anon_sym___declspec] = ACTIONS(825), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_signed] = ACTIONS(831), + [anon_sym_unsigned] = ACTIONS(831), + [anon_sym_long] = ACTIONS(831), + [anon_sym_short] = ACTIONS(831), + [anon_sym_static] = ACTIONS(816), + [anon_sym_auto] = ACTIONS(816), + [anon_sym_register] = ACTIONS(816), + [anon_sym_inline] = ACTIONS(816), + [anon_sym___inline] = ACTIONS(816), + [anon_sym___inline__] = ACTIONS(816), + [anon_sym___forceinline] = ACTIONS(816), + [anon_sym_thread_local] = ACTIONS(816), + [anon_sym___thread] = ACTIONS(816), + [anon_sym_const] = ACTIONS(834), + [anon_sym_constexpr] = ACTIONS(834), + [anon_sym_volatile] = ACTIONS(834), + [anon_sym_restrict] = ACTIONS(834), + [anon_sym___restrict__] = ACTIONS(834), + [anon_sym__Atomic] = ACTIONS(834), + [anon_sym__Noreturn] = ACTIONS(834), + [anon_sym_noreturn] = ACTIONS(834), + [anon_sym_alignas] = ACTIONS(837), + [anon_sym__Alignas] = ACTIONS(837), + [sym_primitive_type] = ACTIONS(840), + [anon_sym_enum] = ACTIONS(843), + [anon_sym_struct] = ACTIONS(846), + [anon_sym_union] = ACTIONS(849), + [anon_sym_if] = ACTIONS(1099), + [anon_sym_else] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1102), + [anon_sym_do] = ACTIONS(1014), + [anon_sym_for] = ACTIONS(1105), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1023), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1029), + [anon_sym___try] = ACTIONS(1108), + [anon_sym___leave] = ACTIONS(1083), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_sizeof] = ACTIONS(888), + [anon_sym___alignof__] = ACTIONS(891), + [anon_sym___alignof] = ACTIONS(891), + [anon_sym__alignof] = ACTIONS(891), + [anon_sym_alignof] = ACTIONS(891), + [anon_sym__Alignof] = ACTIONS(891), + [anon_sym_offsetof] = ACTIONS(894), + [anon_sym__Generic] = ACTIONS(897), + [anon_sym_asm] = ACTIONS(900), + [anon_sym___asm__] = ACTIONS(900), + [sym_number_literal] = ACTIONS(903), + [anon_sym_L_SQUOTE] = ACTIONS(906), + [anon_sym_u_SQUOTE] = ACTIONS(906), + [anon_sym_U_SQUOTE] = ACTIONS(906), + [anon_sym_u8_SQUOTE] = ACTIONS(906), + [anon_sym_SQUOTE] = ACTIONS(906), + [anon_sym_L_DQUOTE] = ACTIONS(909), + [anon_sym_u_DQUOTE] = ACTIONS(909), + [anon_sym_U_DQUOTE] = ACTIONS(909), + [anon_sym_u8_DQUOTE] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym_true] = ACTIONS(912), + [sym_false] = ACTIONS(912), + [anon_sym_NULL] = ACTIONS(915), + [anon_sym_nullptr] = ACTIONS(915), [sym_comment] = ACTIONS(3), }, [68] = { - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym_attributed_statement] = STATE(66), - [sym_labeled_statement] = STATE(66), - [sym_expression_statement] = STATE(66), - [sym_if_statement] = STATE(66), - [sym_switch_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_do_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_return_statement] = STATE(66), - [sym_break_statement] = STATE(66), - [sym_continue_statement] = STATE(66), - [sym_goto_statement] = STATE(66), - [sym_seh_try_statement] = STATE(66), - [sym_seh_leave_statement] = STATE(66), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(358), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(1075), + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1173), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym_attributed_statement] = STATE(65), + [sym_labeled_statement] = STATE(65), + [sym_expression_statement] = STATE(65), + [sym_if_statement] = STATE(65), + [sym_switch_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_do_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_return_statement] = STATE(65), + [sym_break_statement] = STATE(65), + [sym_continue_statement] = STATE(65), + [sym_goto_statement] = STATE(65), + [sym_seh_try_statement] = STATE(65), + [sym_seh_leave_statement] = STATE(65), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(381), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(65), + [sym_identifier] = ACTIONS(1086), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22727,7 +22986,7 @@ 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(363), + [anon_sym_SEMI] = ACTIONS(368), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), @@ -22756,112 +23015,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(1077), - [anon_sym_else] = ACTIONS(776), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1079), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1083), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_else] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [69] = { - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(456), - [sym_ms_declspec_modifier] = STATE(750), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym_attributed_statement] = STATE(65), - [sym_labeled_statement] = STATE(65), - [sym_expression_statement] = STATE(65), - [sym_if_statement] = STATE(65), - [sym_switch_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_do_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_return_statement] = STATE(65), - [sym_break_statement] = STATE(65), - [sym_continue_statement] = STATE(65), - [sym_goto_statement] = STATE(65), - [sym_seh_try_statement] = STATE(65), - [sym_seh_leave_statement] = STATE(65), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_attributed_declarator_repeat1] = STATE(358), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [aux_sym_case_statement_repeat1] = STATE(65), - [sym_identifier] = ACTIONS(1075), + [sym_declaration] = STATE(66), + [sym_type_definition] = STATE(66), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1173), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(455), + [sym_ms_declspec_modifier] = STATE(752), + [sym_compound_statement] = STATE(66), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym_attributed_statement] = STATE(66), + [sym_labeled_statement] = STATE(66), + [sym_expression_statement] = STATE(66), + [sym_if_statement] = STATE(66), + [sym_switch_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_do_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_return_statement] = STATE(66), + [sym_break_statement] = STATE(66), + [sym_continue_statement] = STATE(66), + [sym_goto_statement] = STATE(66), + [sym_seh_try_statement] = STATE(66), + [sym_seh_leave_statement] = STATE(66), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_attributed_declarator_repeat1] = STATE(381), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [aux_sym_case_statement_repeat1] = STATE(66), + [sym_identifier] = ACTIONS(1086), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22869,7 +23131,7 @@ 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(363), + [anon_sym_SEMI] = ACTIONS(368), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), @@ -22898,95 +23160,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = 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(1077), - [anon_sym_else] = ACTIONS(907), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1079), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1083), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [70] = { - [sym_declaration] = STATE(503), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__for_statement_body] = STATE(1886), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1100), + [sym_declaration] = STATE(519), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1156), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__for_statement_body] = STATE(1879), + [sym__expression] = STATE(1079), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1878), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22994,11 +23259,11 @@ 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(1102), + [anon_sym_SEMI] = ACTIONS(1113), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -23021,83 +23286,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [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___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [71] = { - [sym_declaration] = STATE(503), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__for_statement_body] = STATE(1940), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1100), + [sym_declaration] = STATE(519), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1156), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__for_statement_body] = STATE(1806), + [sym__expression] = STATE(1079), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1878), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23105,11 +23373,11 @@ 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(1102), + [anon_sym_SEMI] = ACTIONS(1113), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -23132,83 +23400,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [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___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [72] = { - [sym_declaration] = STATE(503), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__for_statement_body] = STATE(1951), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1100), + [sym_declaration] = STATE(519), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1156), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__for_statement_body] = STATE(1949), + [sym__expression] = STATE(1079), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1878), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23216,11 +23487,11 @@ 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(1102), + [anon_sym_SEMI] = ACTIONS(1113), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -23243,83 +23514,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [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___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [73] = { - [sym_declaration] = STATE(503), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__for_statement_body] = STATE(1972), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1100), + [sym_declaration] = STATE(519), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1156), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__for_statement_body] = STATE(1895), + [sym__expression] = STATE(1079), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1878), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23327,11 +23601,11 @@ 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(1102), + [anon_sym_SEMI] = ACTIONS(1113), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -23354,83 +23628,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [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___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [74] = { - [sym_declaration] = STATE(503), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__for_statement_body] = STATE(1882), - [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1100), + [sym_declaration] = STATE(519), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1156), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__for_statement_body] = STATE(2017), + [sym__expression] = STATE(1079), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1878), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23438,11 +23715,11 @@ 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(1102), + [anon_sym_SEMI] = ACTIONS(1113), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -23465,27295 +23742,29524 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [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___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [75] = { - [sym_else_clause] = STATE(87), - [sym_identifier] = ACTIONS(1106), - [aux_sym_preproc_include_token1] = ACTIONS(1106), - [aux_sym_preproc_def_token1] = ACTIONS(1106), - [aux_sym_preproc_if_token1] = ACTIONS(1106), - [aux_sym_preproc_if_token2] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1106), - [aux_sym_preproc_else_token1] = ACTIONS(1106), - [aux_sym_preproc_elif_token1] = ACTIONS(1106), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1106), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1106), - [sym_preproc_directive] = ACTIONS(1106), - [anon_sym_LPAREN2] = ACTIONS(1108), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1108), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym___extension__] = ACTIONS(1106), - [anon_sym_typedef] = ACTIONS(1106), - [anon_sym_extern] = ACTIONS(1106), - [anon_sym___attribute__] = ACTIONS(1106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1108), - [anon_sym___declspec] = ACTIONS(1106), - [anon_sym___cdecl] = ACTIONS(1106), - [anon_sym___clrcall] = ACTIONS(1106), - [anon_sym___stdcall] = ACTIONS(1106), - [anon_sym___fastcall] = ACTIONS(1106), - [anon_sym___thiscall] = ACTIONS(1106), - [anon_sym___vectorcall] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_signed] = ACTIONS(1106), - [anon_sym_unsigned] = ACTIONS(1106), - [anon_sym_long] = ACTIONS(1106), - [anon_sym_short] = ACTIONS(1106), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_auto] = ACTIONS(1106), - [anon_sym_register] = ACTIONS(1106), - [anon_sym_inline] = ACTIONS(1106), - [anon_sym___inline] = ACTIONS(1106), - [anon_sym___inline__] = ACTIONS(1106), - [anon_sym___forceinline] = ACTIONS(1106), - [anon_sym_thread_local] = ACTIONS(1106), - [anon_sym___thread] = ACTIONS(1106), - [anon_sym_const] = ACTIONS(1106), - [anon_sym_constexpr] = ACTIONS(1106), - [anon_sym_volatile] = ACTIONS(1106), - [anon_sym_restrict] = ACTIONS(1106), - [anon_sym___restrict__] = ACTIONS(1106), - [anon_sym__Atomic] = ACTIONS(1106), - [anon_sym__Noreturn] = ACTIONS(1106), - [anon_sym_noreturn] = ACTIONS(1106), - [sym_primitive_type] = ACTIONS(1106), - [anon_sym_enum] = ACTIONS(1106), - [anon_sym_struct] = ACTIONS(1106), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_if] = ACTIONS(1106), - [anon_sym_else] = ACTIONS(1110), - [anon_sym_switch] = ACTIONS(1106), - [anon_sym_case] = ACTIONS(1106), - [anon_sym_default] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1106), - [anon_sym_do] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(1106), - [anon_sym_return] = ACTIONS(1106), - [anon_sym_break] = ACTIONS(1106), - [anon_sym_continue] = ACTIONS(1106), - [anon_sym_goto] = ACTIONS(1106), - [anon_sym___try] = ACTIONS(1106), - [anon_sym___leave] = ACTIONS(1106), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_sizeof] = ACTIONS(1106), - [anon_sym___alignof__] = ACTIONS(1106), - [anon_sym___alignof] = ACTIONS(1106), - [anon_sym__alignof] = ACTIONS(1106), - [anon_sym_alignof] = ACTIONS(1106), - [anon_sym__Alignof] = ACTIONS(1106), - [anon_sym_offsetof] = ACTIONS(1106), - [anon_sym__Generic] = ACTIONS(1106), - [anon_sym_asm] = ACTIONS(1106), - [anon_sym___asm__] = ACTIONS(1106), - [sym_number_literal] = ACTIONS(1108), - [anon_sym_L_SQUOTE] = ACTIONS(1108), - [anon_sym_u_SQUOTE] = ACTIONS(1108), - [anon_sym_U_SQUOTE] = ACTIONS(1108), - [anon_sym_u8_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_L_DQUOTE] = ACTIONS(1108), - [anon_sym_u_DQUOTE] = ACTIONS(1108), - [anon_sym_U_DQUOTE] = ACTIONS(1108), - [anon_sym_u8_DQUOTE] = ACTIONS(1108), - [anon_sym_DQUOTE] = ACTIONS(1108), - [sym_true] = ACTIONS(1106), - [sym_false] = ACTIONS(1106), - [anon_sym_NULL] = ACTIONS(1106), - [anon_sym_nullptr] = ACTIONS(1106), + [sym_else_clause] = STATE(113), + [sym_identifier] = ACTIONS(1117), + [aux_sym_preproc_include_token1] = ACTIONS(1117), + [aux_sym_preproc_def_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token2] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1117), + [aux_sym_preproc_else_token1] = ACTIONS(1117), + [aux_sym_preproc_elif_token1] = ACTIONS(1117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1117), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1117), + [sym_preproc_directive] = ACTIONS(1117), + [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym___extension__] = ACTIONS(1117), + [anon_sym_typedef] = ACTIONS(1117), + [anon_sym_extern] = ACTIONS(1117), + [anon_sym___attribute__] = ACTIONS(1117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1119), + [anon_sym___declspec] = ACTIONS(1117), + [anon_sym___cdecl] = ACTIONS(1117), + [anon_sym___clrcall] = ACTIONS(1117), + [anon_sym___stdcall] = ACTIONS(1117), + [anon_sym___fastcall] = ACTIONS(1117), + [anon_sym___thiscall] = ACTIONS(1117), + [anon_sym___vectorcall] = ACTIONS(1117), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_signed] = ACTIONS(1117), + [anon_sym_unsigned] = ACTIONS(1117), + [anon_sym_long] = ACTIONS(1117), + [anon_sym_short] = ACTIONS(1117), + [anon_sym_static] = ACTIONS(1117), + [anon_sym_auto] = ACTIONS(1117), + [anon_sym_register] = ACTIONS(1117), + [anon_sym_inline] = ACTIONS(1117), + [anon_sym___inline] = ACTIONS(1117), + [anon_sym___inline__] = ACTIONS(1117), + [anon_sym___forceinline] = ACTIONS(1117), + [anon_sym_thread_local] = ACTIONS(1117), + [anon_sym___thread] = ACTIONS(1117), + [anon_sym_const] = ACTIONS(1117), + [anon_sym_constexpr] = ACTIONS(1117), + [anon_sym_volatile] = ACTIONS(1117), + [anon_sym_restrict] = ACTIONS(1117), + [anon_sym___restrict__] = ACTIONS(1117), + [anon_sym__Atomic] = ACTIONS(1117), + [anon_sym__Noreturn] = ACTIONS(1117), + [anon_sym_noreturn] = ACTIONS(1117), + [anon_sym_alignas] = ACTIONS(1117), + [anon_sym__Alignas] = ACTIONS(1117), + [sym_primitive_type] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_union] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1121), + [anon_sym_switch] = ACTIONS(1117), + [anon_sym_case] = ACTIONS(1117), + [anon_sym_default] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_goto] = ACTIONS(1117), + [anon_sym___try] = ACTIONS(1117), + [anon_sym___leave] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_sizeof] = ACTIONS(1117), + [anon_sym___alignof__] = ACTIONS(1117), + [anon_sym___alignof] = ACTIONS(1117), + [anon_sym__alignof] = ACTIONS(1117), + [anon_sym_alignof] = ACTIONS(1117), + [anon_sym__Alignof] = ACTIONS(1117), + [anon_sym_offsetof] = ACTIONS(1117), + [anon_sym__Generic] = ACTIONS(1117), + [anon_sym_asm] = ACTIONS(1117), + [anon_sym___asm__] = ACTIONS(1117), + [sym_number_literal] = ACTIONS(1119), + [anon_sym_L_SQUOTE] = ACTIONS(1119), + [anon_sym_u_SQUOTE] = ACTIONS(1119), + [anon_sym_U_SQUOTE] = ACTIONS(1119), + [anon_sym_u8_SQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_L_DQUOTE] = ACTIONS(1119), + [anon_sym_u_DQUOTE] = ACTIONS(1119), + [anon_sym_U_DQUOTE] = ACTIONS(1119), + [anon_sym_u8_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [anon_sym_NULL] = ACTIONS(1117), + [anon_sym_nullptr] = ACTIONS(1117), [sym_comment] = ACTIONS(3), }, [76] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1112), - [aux_sym_preproc_elif_token1] = ACTIONS(1112), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1112), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1112), - [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_signed] = ACTIONS(1112), - [anon_sym_unsigned] = ACTIONS(1112), - [anon_sym_long] = ACTIONS(1112), - [anon_sym_short] = ACTIONS(1112), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_auto] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym___inline] = ACTIONS(1112), - [anon_sym___inline__] = ACTIONS(1112), - [anon_sym___forceinline] = ACTIONS(1112), - [anon_sym_thread_local] = ACTIONS(1112), - [anon_sym___thread] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1112), - [anon_sym___leave] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1114), - [anon_sym_PLUS_PLUS] = ACTIONS(1114), - [anon_sym_sizeof] = ACTIONS(1112), - [anon_sym___alignof__] = ACTIONS(1112), - [anon_sym___alignof] = ACTIONS(1112), - [anon_sym__alignof] = ACTIONS(1112), - [anon_sym_alignof] = ACTIONS(1112), - [anon_sym__Alignof] = ACTIONS(1112), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1112), - [anon_sym_nullptr] = ACTIONS(1112), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [aux_sym_preproc_else_token1] = ACTIONS(1123), + [aux_sym_preproc_elif_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [77] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1116), - [aux_sym_preproc_elif_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1127), + [aux_sym_preproc_include_token1] = ACTIONS(1127), + [aux_sym_preproc_def_token1] = ACTIONS(1127), + [aux_sym_preproc_if_token1] = ACTIONS(1127), + [aux_sym_preproc_if_token2] = ACTIONS(1127), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1127), + [aux_sym_preproc_else_token1] = ACTIONS(1127), + [aux_sym_preproc_elif_token1] = ACTIONS(1127), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1127), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1127), + [sym_preproc_directive] = ACTIONS(1127), + [anon_sym_LPAREN2] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1129), + [anon_sym___extension__] = ACTIONS(1127), + [anon_sym_typedef] = ACTIONS(1127), + [anon_sym_extern] = ACTIONS(1127), + [anon_sym___attribute__] = ACTIONS(1127), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1129), + [anon_sym___declspec] = ACTIONS(1127), + [anon_sym___cdecl] = ACTIONS(1127), + [anon_sym___clrcall] = ACTIONS(1127), + [anon_sym___stdcall] = ACTIONS(1127), + [anon_sym___fastcall] = ACTIONS(1127), + [anon_sym___thiscall] = ACTIONS(1127), + [anon_sym___vectorcall] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_signed] = ACTIONS(1127), + [anon_sym_unsigned] = ACTIONS(1127), + [anon_sym_long] = ACTIONS(1127), + [anon_sym_short] = ACTIONS(1127), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_auto] = ACTIONS(1127), + [anon_sym_register] = ACTIONS(1127), + [anon_sym_inline] = ACTIONS(1127), + [anon_sym___inline] = ACTIONS(1127), + [anon_sym___inline__] = ACTIONS(1127), + [anon_sym___forceinline] = ACTIONS(1127), + [anon_sym_thread_local] = ACTIONS(1127), + [anon_sym___thread] = ACTIONS(1127), + [anon_sym_const] = ACTIONS(1127), + [anon_sym_constexpr] = ACTIONS(1127), + [anon_sym_volatile] = ACTIONS(1127), + [anon_sym_restrict] = ACTIONS(1127), + [anon_sym___restrict__] = ACTIONS(1127), + [anon_sym__Atomic] = ACTIONS(1127), + [anon_sym__Noreturn] = ACTIONS(1127), + [anon_sym_noreturn] = ACTIONS(1127), + [anon_sym_alignas] = ACTIONS(1127), + [anon_sym__Alignas] = ACTIONS(1127), + [sym_primitive_type] = ACTIONS(1127), + [anon_sym_enum] = ACTIONS(1127), + [anon_sym_struct] = ACTIONS(1127), + [anon_sym_union] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1127), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_switch] = ACTIONS(1127), + [anon_sym_case] = ACTIONS(1127), + [anon_sym_default] = ACTIONS(1127), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1127), + [anon_sym_for] = ACTIONS(1127), + [anon_sym_return] = ACTIONS(1127), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1127), + [anon_sym_goto] = ACTIONS(1127), + [anon_sym___try] = ACTIONS(1127), + [anon_sym___leave] = ACTIONS(1127), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_sizeof] = ACTIONS(1127), + [anon_sym___alignof__] = ACTIONS(1127), + [anon_sym___alignof] = ACTIONS(1127), + [anon_sym__alignof] = ACTIONS(1127), + [anon_sym_alignof] = ACTIONS(1127), + [anon_sym__Alignof] = ACTIONS(1127), + [anon_sym_offsetof] = ACTIONS(1127), + [anon_sym__Generic] = ACTIONS(1127), + [anon_sym_asm] = ACTIONS(1127), + [anon_sym___asm__] = ACTIONS(1127), + [sym_number_literal] = ACTIONS(1129), + [anon_sym_L_SQUOTE] = ACTIONS(1129), + [anon_sym_u_SQUOTE] = ACTIONS(1129), + [anon_sym_U_SQUOTE] = ACTIONS(1129), + [anon_sym_u8_SQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1129), + [anon_sym_L_DQUOTE] = ACTIONS(1129), + [anon_sym_u_DQUOTE] = ACTIONS(1129), + [anon_sym_U_DQUOTE] = ACTIONS(1129), + [anon_sym_u8_DQUOTE] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [anon_sym_NULL] = ACTIONS(1127), + [anon_sym_nullptr] = ACTIONS(1127), [sym_comment] = ACTIONS(3), }, [78] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1120), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1120), - [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_signed] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1120), - [anon_sym_long] = ACTIONS(1120), - [anon_sym_short] = ACTIONS(1120), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_auto] = ACTIONS(1120), - [anon_sym_register] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym___inline] = ACTIONS(1120), - [anon_sym___inline__] = ACTIONS(1120), - [anon_sym___forceinline] = ACTIONS(1120), - [anon_sym_thread_local] = ACTIONS(1120), - [anon_sym___thread] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1120), - [anon_sym___leave] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_sizeof] = ACTIONS(1120), - [anon_sym___alignof__] = ACTIONS(1120), - [anon_sym___alignof] = ACTIONS(1120), - [anon_sym__alignof] = ACTIONS(1120), - [anon_sym_alignof] = ACTIONS(1120), - [anon_sym__Alignof] = ACTIONS(1120), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1120), - [anon_sym_nullptr] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token2] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [aux_sym_preproc_else_token1] = ACTIONS(1131), + [aux_sym_preproc_elif_token1] = ACTIONS(1131), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), [sym_comment] = ACTIONS(3), }, [79] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1124), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1124), - [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_signed] = ACTIONS(1124), - [anon_sym_unsigned] = ACTIONS(1124), - [anon_sym_long] = ACTIONS(1124), - [anon_sym_short] = ACTIONS(1124), - [anon_sym_static] = ACTIONS(1124), - [anon_sym_auto] = ACTIONS(1124), - [anon_sym_register] = ACTIONS(1124), - [anon_sym_inline] = ACTIONS(1124), - [anon_sym___inline] = ACTIONS(1124), - [anon_sym___inline__] = ACTIONS(1124), - [anon_sym___forceinline] = ACTIONS(1124), - [anon_sym_thread_local] = ACTIONS(1124), - [anon_sym___thread] = ACTIONS(1124), - [anon_sym_const] = ACTIONS(1124), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1124), - [anon_sym___leave] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_sizeof] = ACTIONS(1124), - [anon_sym___alignof__] = ACTIONS(1124), - [anon_sym___alignof] = ACTIONS(1124), - [anon_sym__alignof] = ACTIONS(1124), - [anon_sym_alignof] = ACTIONS(1124), - [anon_sym__Alignof] = ACTIONS(1124), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1124), - [anon_sym_nullptr] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1135), + [aux_sym_preproc_include_token1] = ACTIONS(1135), + [aux_sym_preproc_def_token1] = ACTIONS(1135), + [aux_sym_preproc_if_token1] = ACTIONS(1135), + [aux_sym_preproc_if_token2] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1135), + [aux_sym_preproc_else_token1] = ACTIONS(1135), + [aux_sym_preproc_elif_token1] = ACTIONS(1135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1135), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1135), + [sym_preproc_directive] = ACTIONS(1135), + [anon_sym_LPAREN2] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1137), + [anon_sym___extension__] = ACTIONS(1135), + [anon_sym_typedef] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym___attribute__] = ACTIONS(1135), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___declspec] = ACTIONS(1135), + [anon_sym___cdecl] = ACTIONS(1135), + [anon_sym___clrcall] = ACTIONS(1135), + [anon_sym___stdcall] = ACTIONS(1135), + [anon_sym___fastcall] = ACTIONS(1135), + [anon_sym___thiscall] = ACTIONS(1135), + [anon_sym___vectorcall] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_signed] = ACTIONS(1135), + [anon_sym_unsigned] = ACTIONS(1135), + [anon_sym_long] = ACTIONS(1135), + [anon_sym_short] = ACTIONS(1135), + [anon_sym_static] = ACTIONS(1135), + [anon_sym_auto] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_inline] = ACTIONS(1135), + [anon_sym___inline] = ACTIONS(1135), + [anon_sym___inline__] = ACTIONS(1135), + [anon_sym___forceinline] = ACTIONS(1135), + [anon_sym_thread_local] = ACTIONS(1135), + [anon_sym___thread] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_constexpr] = ACTIONS(1135), + [anon_sym_volatile] = ACTIONS(1135), + [anon_sym_restrict] = ACTIONS(1135), + [anon_sym___restrict__] = ACTIONS(1135), + [anon_sym__Atomic] = ACTIONS(1135), + [anon_sym__Noreturn] = ACTIONS(1135), + [anon_sym_noreturn] = ACTIONS(1135), + [anon_sym_alignas] = ACTIONS(1135), + [anon_sym__Alignas] = ACTIONS(1135), + [sym_primitive_type] = ACTIONS(1135), + [anon_sym_enum] = ACTIONS(1135), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_union] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_switch] = ACTIONS(1135), + [anon_sym_case] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_goto] = ACTIONS(1135), + [anon_sym___try] = ACTIONS(1135), + [anon_sym___leave] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_sizeof] = ACTIONS(1135), + [anon_sym___alignof__] = ACTIONS(1135), + [anon_sym___alignof] = ACTIONS(1135), + [anon_sym__alignof] = ACTIONS(1135), + [anon_sym_alignof] = ACTIONS(1135), + [anon_sym__Alignof] = ACTIONS(1135), + [anon_sym_offsetof] = ACTIONS(1135), + [anon_sym__Generic] = ACTIONS(1135), + [anon_sym_asm] = ACTIONS(1135), + [anon_sym___asm__] = ACTIONS(1135), + [sym_number_literal] = ACTIONS(1137), + [anon_sym_L_SQUOTE] = ACTIONS(1137), + [anon_sym_u_SQUOTE] = ACTIONS(1137), + [anon_sym_U_SQUOTE] = ACTIONS(1137), + [anon_sym_u8_SQUOTE] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1137), + [anon_sym_L_DQUOTE] = ACTIONS(1137), + [anon_sym_u_DQUOTE] = ACTIONS(1137), + [anon_sym_U_DQUOTE] = ACTIONS(1137), + [anon_sym_u8_DQUOTE] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym_true] = ACTIONS(1135), + [sym_false] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [anon_sym_nullptr] = ACTIONS(1135), [sym_comment] = ACTIONS(3), }, [80] = { - [sym_identifier] = ACTIONS(1128), - [aux_sym_preproc_include_token1] = ACTIONS(1128), - [aux_sym_preproc_def_token1] = ACTIONS(1128), - [aux_sym_preproc_if_token1] = ACTIONS(1128), - [aux_sym_preproc_if_token2] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), - [aux_sym_preproc_else_token1] = ACTIONS(1128), - [aux_sym_preproc_elif_token1] = ACTIONS(1128), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1128), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1128), - [sym_preproc_directive] = ACTIONS(1128), - [anon_sym_LPAREN2] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_TILDE] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym___extension__] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym___attribute__] = ACTIONS(1128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1130), - [anon_sym___declspec] = ACTIONS(1128), - [anon_sym___cdecl] = ACTIONS(1128), - [anon_sym___clrcall] = ACTIONS(1128), - [anon_sym___stdcall] = ACTIONS(1128), - [anon_sym___fastcall] = ACTIONS(1128), - [anon_sym___thiscall] = ACTIONS(1128), - [anon_sym___vectorcall] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_signed] = ACTIONS(1128), - [anon_sym_unsigned] = ACTIONS(1128), - [anon_sym_long] = ACTIONS(1128), - [anon_sym_short] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_auto] = ACTIONS(1128), - [anon_sym_register] = ACTIONS(1128), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym___inline] = ACTIONS(1128), - [anon_sym___inline__] = ACTIONS(1128), - [anon_sym___forceinline] = ACTIONS(1128), - [anon_sym_thread_local] = ACTIONS(1128), - [anon_sym___thread] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_constexpr] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [anon_sym___restrict__] = ACTIONS(1128), - [anon_sym__Atomic] = ACTIONS(1128), - [anon_sym__Noreturn] = ACTIONS(1128), - [anon_sym_noreturn] = ACTIONS(1128), - [sym_primitive_type] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_union] = ACTIONS(1128), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_else] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_case] = ACTIONS(1128), - [anon_sym_default] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_goto] = ACTIONS(1128), - [anon_sym___try] = ACTIONS(1128), - [anon_sym___leave] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1130), - [anon_sym_PLUS_PLUS] = ACTIONS(1130), - [anon_sym_sizeof] = ACTIONS(1128), - [anon_sym___alignof__] = ACTIONS(1128), - [anon_sym___alignof] = ACTIONS(1128), - [anon_sym__alignof] = ACTIONS(1128), - [anon_sym_alignof] = ACTIONS(1128), - [anon_sym__Alignof] = ACTIONS(1128), - [anon_sym_offsetof] = ACTIONS(1128), - [anon_sym__Generic] = ACTIONS(1128), - [anon_sym_asm] = ACTIONS(1128), - [anon_sym___asm__] = ACTIONS(1128), - [sym_number_literal] = ACTIONS(1130), - [anon_sym_L_SQUOTE] = ACTIONS(1130), - [anon_sym_u_SQUOTE] = ACTIONS(1130), - [anon_sym_U_SQUOTE] = ACTIONS(1130), - [anon_sym_u8_SQUOTE] = ACTIONS(1130), - [anon_sym_SQUOTE] = ACTIONS(1130), - [anon_sym_L_DQUOTE] = ACTIONS(1130), - [anon_sym_u_DQUOTE] = ACTIONS(1130), - [anon_sym_U_DQUOTE] = ACTIONS(1130), - [anon_sym_u8_DQUOTE] = ACTIONS(1130), - [anon_sym_DQUOTE] = ACTIONS(1130), - [sym_true] = ACTIONS(1128), - [sym_false] = ACTIONS(1128), - [anon_sym_NULL] = ACTIONS(1128), - [anon_sym_nullptr] = ACTIONS(1128), + [sym_identifier] = ACTIONS(1139), + [aux_sym_preproc_include_token1] = ACTIONS(1139), + [aux_sym_preproc_def_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token2] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), + [aux_sym_preproc_else_token1] = ACTIONS(1139), + [aux_sym_preproc_elif_token1] = ACTIONS(1139), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1139), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1139), + [sym_preproc_directive] = ACTIONS(1139), + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym___extension__] = ACTIONS(1139), + [anon_sym_typedef] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym___attribute__] = ACTIONS(1139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), + [anon_sym___declspec] = ACTIONS(1139), + [anon_sym___cdecl] = ACTIONS(1139), + [anon_sym___clrcall] = ACTIONS(1139), + [anon_sym___stdcall] = ACTIONS(1139), + [anon_sym___fastcall] = ACTIONS(1139), + [anon_sym___thiscall] = ACTIONS(1139), + [anon_sym___vectorcall] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1139), + [anon_sym_unsigned] = ACTIONS(1139), + [anon_sym_long] = ACTIONS(1139), + [anon_sym_short] = ACTIONS(1139), + [anon_sym_static] = ACTIONS(1139), + [anon_sym_auto] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_inline] = ACTIONS(1139), + [anon_sym___inline] = ACTIONS(1139), + [anon_sym___inline__] = ACTIONS(1139), + [anon_sym___forceinline] = ACTIONS(1139), + [anon_sym_thread_local] = ACTIONS(1139), + [anon_sym___thread] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_constexpr] = ACTIONS(1139), + [anon_sym_volatile] = ACTIONS(1139), + [anon_sym_restrict] = ACTIONS(1139), + [anon_sym___restrict__] = ACTIONS(1139), + [anon_sym__Atomic] = ACTIONS(1139), + [anon_sym__Noreturn] = ACTIONS(1139), + [anon_sym_noreturn] = ACTIONS(1139), + [anon_sym_alignas] = ACTIONS(1139), + [anon_sym__Alignas] = ACTIONS(1139), + [sym_primitive_type] = ACTIONS(1139), + [anon_sym_enum] = ACTIONS(1139), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_union] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_switch] = ACTIONS(1139), + [anon_sym_case] = ACTIONS(1139), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1139), + [anon_sym___leave] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_sizeof] = ACTIONS(1139), + [anon_sym___alignof__] = ACTIONS(1139), + [anon_sym___alignof] = ACTIONS(1139), + [anon_sym__alignof] = ACTIONS(1139), + [anon_sym_alignof] = ACTIONS(1139), + [anon_sym__Alignof] = ACTIONS(1139), + [anon_sym_offsetof] = ACTIONS(1139), + [anon_sym__Generic] = ACTIONS(1139), + [anon_sym_asm] = ACTIONS(1139), + [anon_sym___asm__] = ACTIONS(1139), + [sym_number_literal] = ACTIONS(1141), + [anon_sym_L_SQUOTE] = ACTIONS(1141), + [anon_sym_u_SQUOTE] = ACTIONS(1141), + [anon_sym_U_SQUOTE] = ACTIONS(1141), + [anon_sym_u8_SQUOTE] = ACTIONS(1141), + [anon_sym_SQUOTE] = ACTIONS(1141), + [anon_sym_L_DQUOTE] = ACTIONS(1141), + [anon_sym_u_DQUOTE] = ACTIONS(1141), + [anon_sym_U_DQUOTE] = ACTIONS(1141), + [anon_sym_u8_DQUOTE] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1141), + [sym_true] = ACTIONS(1139), + [sym_false] = ACTIONS(1139), + [anon_sym_NULL] = ACTIONS(1139), + [anon_sym_nullptr] = ACTIONS(1139), [sym_comment] = ACTIONS(3), }, [81] = { - [sym_identifier] = ACTIONS(1132), - [aux_sym_preproc_include_token1] = ACTIONS(1132), - [aux_sym_preproc_def_token1] = ACTIONS(1132), - [aux_sym_preproc_if_token1] = ACTIONS(1132), - [aux_sym_preproc_if_token2] = ACTIONS(1132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1132), - [aux_sym_preproc_else_token1] = ACTIONS(1132), - [aux_sym_preproc_elif_token1] = ACTIONS(1132), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1132), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1132), - [sym_preproc_directive] = ACTIONS(1132), - [anon_sym_LPAREN2] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1132), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1134), - [anon_sym_SEMI] = ACTIONS(1134), - [anon_sym___extension__] = ACTIONS(1132), - [anon_sym_typedef] = ACTIONS(1132), - [anon_sym_extern] = ACTIONS(1132), - [anon_sym___attribute__] = ACTIONS(1132), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1134), - [anon_sym___declspec] = ACTIONS(1132), - [anon_sym___cdecl] = ACTIONS(1132), - [anon_sym___clrcall] = ACTIONS(1132), - [anon_sym___stdcall] = ACTIONS(1132), - [anon_sym___fastcall] = ACTIONS(1132), - [anon_sym___thiscall] = ACTIONS(1132), - [anon_sym___vectorcall] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_signed] = ACTIONS(1132), - [anon_sym_unsigned] = ACTIONS(1132), - [anon_sym_long] = ACTIONS(1132), - [anon_sym_short] = ACTIONS(1132), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_auto] = ACTIONS(1132), - [anon_sym_register] = ACTIONS(1132), - [anon_sym_inline] = ACTIONS(1132), - [anon_sym___inline] = ACTIONS(1132), - [anon_sym___inline__] = ACTIONS(1132), - [anon_sym___forceinline] = ACTIONS(1132), - [anon_sym_thread_local] = ACTIONS(1132), - [anon_sym___thread] = ACTIONS(1132), - [anon_sym_const] = ACTIONS(1132), - [anon_sym_constexpr] = ACTIONS(1132), - [anon_sym_volatile] = ACTIONS(1132), - [anon_sym_restrict] = ACTIONS(1132), - [anon_sym___restrict__] = ACTIONS(1132), - [anon_sym__Atomic] = ACTIONS(1132), - [anon_sym__Noreturn] = ACTIONS(1132), - [anon_sym_noreturn] = ACTIONS(1132), - [sym_primitive_type] = ACTIONS(1132), - [anon_sym_enum] = ACTIONS(1132), - [anon_sym_struct] = ACTIONS(1132), - [anon_sym_union] = ACTIONS(1132), - [anon_sym_if] = ACTIONS(1132), - [anon_sym_else] = ACTIONS(1132), - [anon_sym_switch] = ACTIONS(1132), - [anon_sym_case] = ACTIONS(1132), - [anon_sym_default] = ACTIONS(1132), - [anon_sym_while] = ACTIONS(1132), - [anon_sym_do] = ACTIONS(1132), - [anon_sym_for] = ACTIONS(1132), - [anon_sym_return] = ACTIONS(1132), - [anon_sym_break] = ACTIONS(1132), - [anon_sym_continue] = ACTIONS(1132), - [anon_sym_goto] = ACTIONS(1132), - [anon_sym___try] = ACTIONS(1132), - [anon_sym___leave] = ACTIONS(1132), - [anon_sym_DASH_DASH] = ACTIONS(1134), - [anon_sym_PLUS_PLUS] = ACTIONS(1134), - [anon_sym_sizeof] = ACTIONS(1132), - [anon_sym___alignof__] = ACTIONS(1132), - [anon_sym___alignof] = ACTIONS(1132), - [anon_sym__alignof] = ACTIONS(1132), - [anon_sym_alignof] = ACTIONS(1132), - [anon_sym__Alignof] = ACTIONS(1132), - [anon_sym_offsetof] = ACTIONS(1132), - [anon_sym__Generic] = ACTIONS(1132), - [anon_sym_asm] = ACTIONS(1132), - [anon_sym___asm__] = ACTIONS(1132), - [sym_number_literal] = ACTIONS(1134), - [anon_sym_L_SQUOTE] = ACTIONS(1134), - [anon_sym_u_SQUOTE] = ACTIONS(1134), - [anon_sym_U_SQUOTE] = ACTIONS(1134), - [anon_sym_u8_SQUOTE] = ACTIONS(1134), - [anon_sym_SQUOTE] = ACTIONS(1134), - [anon_sym_L_DQUOTE] = ACTIONS(1134), - [anon_sym_u_DQUOTE] = ACTIONS(1134), - [anon_sym_U_DQUOTE] = ACTIONS(1134), - [anon_sym_u8_DQUOTE] = ACTIONS(1134), - [anon_sym_DQUOTE] = ACTIONS(1134), - [sym_true] = ACTIONS(1132), - [sym_false] = ACTIONS(1132), - [anon_sym_NULL] = ACTIONS(1132), - [anon_sym_nullptr] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1143), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token2] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [aux_sym_preproc_else_token1] = ACTIONS(1143), + [aux_sym_preproc_elif_token1] = ACTIONS(1143), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym___extension__] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym___attribute__] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), + [anon_sym___declspec] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1143), + [anon_sym_unsigned] = ACTIONS(1143), + [anon_sym_long] = ACTIONS(1143), + [anon_sym_short] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_auto] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym___inline] = ACTIONS(1143), + [anon_sym___inline__] = ACTIONS(1143), + [anon_sym___forceinline] = ACTIONS(1143), + [anon_sym_thread_local] = ACTIONS(1143), + [anon_sym___thread] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym___restrict__] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym__Noreturn] = ACTIONS(1143), + [anon_sym_noreturn] = ACTIONS(1143), + [anon_sym_alignas] = ACTIONS(1143), + [anon_sym__Alignas] = ACTIONS(1143), + [sym_primitive_type] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_union] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(1143), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1143), + [anon_sym___try] = ACTIONS(1143), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_sizeof] = ACTIONS(1143), + [anon_sym___alignof__] = ACTIONS(1143), + [anon_sym___alignof] = ACTIONS(1143), + [anon_sym__alignof] = ACTIONS(1143), + [anon_sym_alignof] = ACTIONS(1143), + [anon_sym__Alignof] = ACTIONS(1143), + [anon_sym_offsetof] = ACTIONS(1143), + [anon_sym__Generic] = ACTIONS(1143), + [anon_sym_asm] = ACTIONS(1143), + [anon_sym___asm__] = ACTIONS(1143), + [sym_number_literal] = ACTIONS(1145), + [anon_sym_L_SQUOTE] = ACTIONS(1145), + [anon_sym_u_SQUOTE] = ACTIONS(1145), + [anon_sym_U_SQUOTE] = ACTIONS(1145), + [anon_sym_u8_SQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_L_DQUOTE] = ACTIONS(1145), + [anon_sym_u_DQUOTE] = ACTIONS(1145), + [anon_sym_U_DQUOTE] = ACTIONS(1145), + [anon_sym_u8_DQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_true] = ACTIONS(1143), + [sym_false] = ACTIONS(1143), + [anon_sym_NULL] = ACTIONS(1143), + [anon_sym_nullptr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), }, [82] = { - [sym_identifier] = ACTIONS(1136), - [aux_sym_preproc_include_token1] = ACTIONS(1136), - [aux_sym_preproc_def_token1] = ACTIONS(1136), - [aux_sym_preproc_if_token1] = ACTIONS(1136), - [aux_sym_preproc_if_token2] = ACTIONS(1136), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1136), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1136), - [aux_sym_preproc_else_token1] = ACTIONS(1136), - [aux_sym_preproc_elif_token1] = ACTIONS(1136), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1136), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1136), - [sym_preproc_directive] = ACTIONS(1136), - [anon_sym_LPAREN2] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1138), - [anon_sym_TILDE] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1136), - [anon_sym_PLUS] = ACTIONS(1136), - [anon_sym_STAR] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym___extension__] = ACTIONS(1136), - [anon_sym_typedef] = ACTIONS(1136), - [anon_sym_extern] = ACTIONS(1136), - [anon_sym___attribute__] = ACTIONS(1136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1138), - [anon_sym___declspec] = ACTIONS(1136), - [anon_sym___cdecl] = ACTIONS(1136), - [anon_sym___clrcall] = ACTIONS(1136), - [anon_sym___stdcall] = ACTIONS(1136), - [anon_sym___fastcall] = ACTIONS(1136), - [anon_sym___thiscall] = ACTIONS(1136), - [anon_sym___vectorcall] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_signed] = ACTIONS(1136), - [anon_sym_unsigned] = ACTIONS(1136), - [anon_sym_long] = ACTIONS(1136), - [anon_sym_short] = ACTIONS(1136), - [anon_sym_static] = ACTIONS(1136), - [anon_sym_auto] = ACTIONS(1136), - [anon_sym_register] = ACTIONS(1136), - [anon_sym_inline] = ACTIONS(1136), - [anon_sym___inline] = ACTIONS(1136), - [anon_sym___inline__] = ACTIONS(1136), - [anon_sym___forceinline] = ACTIONS(1136), - [anon_sym_thread_local] = ACTIONS(1136), - [anon_sym___thread] = ACTIONS(1136), - [anon_sym_const] = ACTIONS(1136), - [anon_sym_constexpr] = ACTIONS(1136), - [anon_sym_volatile] = ACTIONS(1136), - [anon_sym_restrict] = ACTIONS(1136), - [anon_sym___restrict__] = ACTIONS(1136), - [anon_sym__Atomic] = ACTIONS(1136), - [anon_sym__Noreturn] = ACTIONS(1136), - [anon_sym_noreturn] = ACTIONS(1136), - [sym_primitive_type] = ACTIONS(1136), - [anon_sym_enum] = ACTIONS(1136), - [anon_sym_struct] = ACTIONS(1136), - [anon_sym_union] = ACTIONS(1136), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_else] = ACTIONS(1136), - [anon_sym_switch] = ACTIONS(1136), - [anon_sym_case] = ACTIONS(1136), - [anon_sym_default] = ACTIONS(1136), - [anon_sym_while] = ACTIONS(1136), - [anon_sym_do] = ACTIONS(1136), - [anon_sym_for] = ACTIONS(1136), - [anon_sym_return] = ACTIONS(1136), - [anon_sym_break] = ACTIONS(1136), - [anon_sym_continue] = ACTIONS(1136), - [anon_sym_goto] = ACTIONS(1136), - [anon_sym___try] = ACTIONS(1136), - [anon_sym___leave] = ACTIONS(1136), - [anon_sym_DASH_DASH] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1138), - [anon_sym_sizeof] = ACTIONS(1136), - [anon_sym___alignof__] = ACTIONS(1136), - [anon_sym___alignof] = ACTIONS(1136), - [anon_sym__alignof] = ACTIONS(1136), - [anon_sym_alignof] = ACTIONS(1136), - [anon_sym__Alignof] = ACTIONS(1136), - [anon_sym_offsetof] = ACTIONS(1136), - [anon_sym__Generic] = ACTIONS(1136), - [anon_sym_asm] = ACTIONS(1136), - [anon_sym___asm__] = ACTIONS(1136), - [sym_number_literal] = ACTIONS(1138), - [anon_sym_L_SQUOTE] = ACTIONS(1138), - [anon_sym_u_SQUOTE] = ACTIONS(1138), - [anon_sym_U_SQUOTE] = ACTIONS(1138), - [anon_sym_u8_SQUOTE] = ACTIONS(1138), - [anon_sym_SQUOTE] = ACTIONS(1138), - [anon_sym_L_DQUOTE] = ACTIONS(1138), - [anon_sym_u_DQUOTE] = ACTIONS(1138), - [anon_sym_U_DQUOTE] = ACTIONS(1138), - [anon_sym_u8_DQUOTE] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(1138), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [anon_sym_NULL] = ACTIONS(1136), - [anon_sym_nullptr] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token2] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [aux_sym_preproc_elif_token1] = ACTIONS(1147), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1147), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, [83] = { - [sym_identifier] = ACTIONS(1140), - [aux_sym_preproc_include_token1] = ACTIONS(1140), - [aux_sym_preproc_def_token1] = ACTIONS(1140), - [aux_sym_preproc_if_token1] = ACTIONS(1140), - [aux_sym_preproc_if_token2] = ACTIONS(1140), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1140), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1140), - [aux_sym_preproc_else_token1] = ACTIONS(1140), - [aux_sym_preproc_elif_token1] = ACTIONS(1140), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1140), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1140), - [sym_preproc_directive] = ACTIONS(1140), - [anon_sym_LPAREN2] = ACTIONS(1142), - [anon_sym_BANG] = ACTIONS(1142), - [anon_sym_TILDE] = ACTIONS(1142), - [anon_sym_DASH] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(1140), - [anon_sym_STAR] = ACTIONS(1142), - [anon_sym_AMP] = ACTIONS(1142), - [anon_sym_SEMI] = ACTIONS(1142), - [anon_sym___extension__] = ACTIONS(1140), - [anon_sym_typedef] = ACTIONS(1140), - [anon_sym_extern] = ACTIONS(1140), - [anon_sym___attribute__] = ACTIONS(1140), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), - [anon_sym___declspec] = ACTIONS(1140), - [anon_sym___cdecl] = ACTIONS(1140), - [anon_sym___clrcall] = ACTIONS(1140), - [anon_sym___stdcall] = ACTIONS(1140), - [anon_sym___fastcall] = ACTIONS(1140), - [anon_sym___thiscall] = ACTIONS(1140), - [anon_sym___vectorcall] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(1142), - [anon_sym_signed] = ACTIONS(1140), - [anon_sym_unsigned] = ACTIONS(1140), - [anon_sym_long] = ACTIONS(1140), - [anon_sym_short] = ACTIONS(1140), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_auto] = ACTIONS(1140), - [anon_sym_register] = ACTIONS(1140), - [anon_sym_inline] = ACTIONS(1140), - [anon_sym___inline] = ACTIONS(1140), - [anon_sym___inline__] = ACTIONS(1140), - [anon_sym___forceinline] = ACTIONS(1140), - [anon_sym_thread_local] = ACTIONS(1140), - [anon_sym___thread] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1140), - [anon_sym_constexpr] = ACTIONS(1140), - [anon_sym_volatile] = ACTIONS(1140), - [anon_sym_restrict] = ACTIONS(1140), - [anon_sym___restrict__] = ACTIONS(1140), - [anon_sym__Atomic] = ACTIONS(1140), - [anon_sym__Noreturn] = ACTIONS(1140), - [anon_sym_noreturn] = ACTIONS(1140), - [sym_primitive_type] = ACTIONS(1140), - [anon_sym_enum] = ACTIONS(1140), - [anon_sym_struct] = ACTIONS(1140), - [anon_sym_union] = ACTIONS(1140), - [anon_sym_if] = ACTIONS(1140), - [anon_sym_else] = ACTIONS(1140), - [anon_sym_switch] = ACTIONS(1140), - [anon_sym_case] = ACTIONS(1140), - [anon_sym_default] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1140), - [anon_sym_return] = ACTIONS(1140), - [anon_sym_break] = ACTIONS(1140), - [anon_sym_continue] = ACTIONS(1140), - [anon_sym_goto] = ACTIONS(1140), - [anon_sym___try] = ACTIONS(1140), - [anon_sym___leave] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1142), - [anon_sym_PLUS_PLUS] = ACTIONS(1142), - [anon_sym_sizeof] = ACTIONS(1140), - [anon_sym___alignof__] = ACTIONS(1140), - [anon_sym___alignof] = ACTIONS(1140), - [anon_sym__alignof] = ACTIONS(1140), - [anon_sym_alignof] = ACTIONS(1140), - [anon_sym__Alignof] = ACTIONS(1140), - [anon_sym_offsetof] = ACTIONS(1140), - [anon_sym__Generic] = ACTIONS(1140), - [anon_sym_asm] = ACTIONS(1140), - [anon_sym___asm__] = ACTIONS(1140), - [sym_number_literal] = ACTIONS(1142), - [anon_sym_L_SQUOTE] = ACTIONS(1142), - [anon_sym_u_SQUOTE] = ACTIONS(1142), - [anon_sym_U_SQUOTE] = ACTIONS(1142), - [anon_sym_u8_SQUOTE] = ACTIONS(1142), - [anon_sym_SQUOTE] = ACTIONS(1142), - [anon_sym_L_DQUOTE] = ACTIONS(1142), - [anon_sym_u_DQUOTE] = ACTIONS(1142), - [anon_sym_U_DQUOTE] = ACTIONS(1142), - [anon_sym_u8_DQUOTE] = ACTIONS(1142), - [anon_sym_DQUOTE] = ACTIONS(1142), - [sym_true] = ACTIONS(1140), - [sym_false] = ACTIONS(1140), - [anon_sym_NULL] = ACTIONS(1140), - [anon_sym_nullptr] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token2] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [aux_sym_preproc_elif_token1] = ACTIONS(1147), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1147), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, [84] = { - [sym_identifier] = ACTIONS(1144), - [aux_sym_preproc_include_token1] = ACTIONS(1144), - [aux_sym_preproc_def_token1] = ACTIONS(1144), - [aux_sym_preproc_if_token1] = ACTIONS(1144), - [aux_sym_preproc_if_token2] = ACTIONS(1144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1144), - [aux_sym_preproc_else_token1] = ACTIONS(1144), - [aux_sym_preproc_elif_token1] = ACTIONS(1144), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1144), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1144), - [sym_preproc_directive] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(1146), - [anon_sym_BANG] = ACTIONS(1146), - [anon_sym_TILDE] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_STAR] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1146), - [anon_sym_SEMI] = ACTIONS(1146), - [anon_sym___extension__] = ACTIONS(1144), - [anon_sym_typedef] = ACTIONS(1144), - [anon_sym_extern] = ACTIONS(1144), - [anon_sym___attribute__] = ACTIONS(1144), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1146), - [anon_sym___declspec] = ACTIONS(1144), - [anon_sym___cdecl] = ACTIONS(1144), - [anon_sym___clrcall] = ACTIONS(1144), - [anon_sym___stdcall] = ACTIONS(1144), - [anon_sym___fastcall] = ACTIONS(1144), - [anon_sym___thiscall] = ACTIONS(1144), - [anon_sym___vectorcall] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(1146), - [anon_sym_signed] = ACTIONS(1144), - [anon_sym_unsigned] = ACTIONS(1144), - [anon_sym_long] = ACTIONS(1144), - [anon_sym_short] = ACTIONS(1144), - [anon_sym_static] = ACTIONS(1144), - [anon_sym_auto] = ACTIONS(1144), - [anon_sym_register] = ACTIONS(1144), - [anon_sym_inline] = ACTIONS(1144), - [anon_sym___inline] = ACTIONS(1144), - [anon_sym___inline__] = ACTIONS(1144), - [anon_sym___forceinline] = ACTIONS(1144), - [anon_sym_thread_local] = ACTIONS(1144), - [anon_sym___thread] = ACTIONS(1144), - [anon_sym_const] = ACTIONS(1144), - [anon_sym_constexpr] = ACTIONS(1144), - [anon_sym_volatile] = ACTIONS(1144), - [anon_sym_restrict] = ACTIONS(1144), - [anon_sym___restrict__] = ACTIONS(1144), - [anon_sym__Atomic] = ACTIONS(1144), - [anon_sym__Noreturn] = ACTIONS(1144), - [anon_sym_noreturn] = ACTIONS(1144), - [sym_primitive_type] = ACTIONS(1144), - [anon_sym_enum] = ACTIONS(1144), - [anon_sym_struct] = ACTIONS(1144), - [anon_sym_union] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(1144), - [anon_sym_else] = ACTIONS(1144), - [anon_sym_switch] = ACTIONS(1144), - [anon_sym_case] = ACTIONS(1144), - [anon_sym_default] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1144), - [anon_sym_do] = ACTIONS(1144), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_return] = ACTIONS(1144), - [anon_sym_break] = ACTIONS(1144), - [anon_sym_continue] = ACTIONS(1144), - [anon_sym_goto] = ACTIONS(1144), - [anon_sym___try] = ACTIONS(1144), - [anon_sym___leave] = ACTIONS(1144), - [anon_sym_DASH_DASH] = ACTIONS(1146), - [anon_sym_PLUS_PLUS] = ACTIONS(1146), - [anon_sym_sizeof] = ACTIONS(1144), - [anon_sym___alignof__] = ACTIONS(1144), - [anon_sym___alignof] = ACTIONS(1144), - [anon_sym__alignof] = ACTIONS(1144), - [anon_sym_alignof] = ACTIONS(1144), - [anon_sym__Alignof] = ACTIONS(1144), - [anon_sym_offsetof] = ACTIONS(1144), - [anon_sym__Generic] = ACTIONS(1144), - [anon_sym_asm] = ACTIONS(1144), - [anon_sym___asm__] = ACTIONS(1144), - [sym_number_literal] = ACTIONS(1146), - [anon_sym_L_SQUOTE] = ACTIONS(1146), - [anon_sym_u_SQUOTE] = ACTIONS(1146), - [anon_sym_U_SQUOTE] = ACTIONS(1146), - [anon_sym_u8_SQUOTE] = ACTIONS(1146), - [anon_sym_SQUOTE] = ACTIONS(1146), - [anon_sym_L_DQUOTE] = ACTIONS(1146), - [anon_sym_u_DQUOTE] = ACTIONS(1146), - [anon_sym_U_DQUOTE] = ACTIONS(1146), - [anon_sym_u8_DQUOTE] = ACTIONS(1146), - [anon_sym_DQUOTE] = ACTIONS(1146), - [sym_true] = ACTIONS(1144), - [sym_false] = ACTIONS(1144), - [anon_sym_NULL] = ACTIONS(1144), - [anon_sym_nullptr] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1151), + [aux_sym_preproc_include_token1] = ACTIONS(1151), + [aux_sym_preproc_def_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token2] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), + [aux_sym_preproc_else_token1] = ACTIONS(1151), + [aux_sym_preproc_elif_token1] = ACTIONS(1151), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1151), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1151), + [sym_preproc_directive] = ACTIONS(1151), + [anon_sym_LPAREN2] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_TILDE] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym___extension__] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1151), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym___attribute__] = ACTIONS(1151), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), + [anon_sym___declspec] = ACTIONS(1151), + [anon_sym___cdecl] = ACTIONS(1151), + [anon_sym___clrcall] = ACTIONS(1151), + [anon_sym___stdcall] = ACTIONS(1151), + [anon_sym___fastcall] = ACTIONS(1151), + [anon_sym___thiscall] = ACTIONS(1151), + [anon_sym___vectorcall] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_signed] = ACTIONS(1151), + [anon_sym_unsigned] = ACTIONS(1151), + [anon_sym_long] = ACTIONS(1151), + [anon_sym_short] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1151), + [anon_sym_auto] = ACTIONS(1151), + [anon_sym_register] = ACTIONS(1151), + [anon_sym_inline] = ACTIONS(1151), + [anon_sym___inline] = ACTIONS(1151), + [anon_sym___inline__] = ACTIONS(1151), + [anon_sym___forceinline] = ACTIONS(1151), + [anon_sym_thread_local] = ACTIONS(1151), + [anon_sym___thread] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_constexpr] = ACTIONS(1151), + [anon_sym_volatile] = ACTIONS(1151), + [anon_sym_restrict] = ACTIONS(1151), + [anon_sym___restrict__] = ACTIONS(1151), + [anon_sym__Atomic] = ACTIONS(1151), + [anon_sym__Noreturn] = ACTIONS(1151), + [anon_sym_noreturn] = ACTIONS(1151), + [anon_sym_alignas] = ACTIONS(1151), + [anon_sym__Alignas] = ACTIONS(1151), + [sym_primitive_type] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1151), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_else] = ACTIONS(1151), + [anon_sym_switch] = ACTIONS(1151), + [anon_sym_case] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1151), + [anon_sym_do] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1151), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_break] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1151), + [anon_sym_goto] = ACTIONS(1151), + [anon_sym___try] = ACTIONS(1151), + [anon_sym___leave] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1153), + [anon_sym_PLUS_PLUS] = ACTIONS(1153), + [anon_sym_sizeof] = ACTIONS(1151), + [anon_sym___alignof__] = ACTIONS(1151), + [anon_sym___alignof] = ACTIONS(1151), + [anon_sym__alignof] = ACTIONS(1151), + [anon_sym_alignof] = ACTIONS(1151), + [anon_sym__Alignof] = ACTIONS(1151), + [anon_sym_offsetof] = ACTIONS(1151), + [anon_sym__Generic] = ACTIONS(1151), + [anon_sym_asm] = ACTIONS(1151), + [anon_sym___asm__] = ACTIONS(1151), + [sym_number_literal] = ACTIONS(1153), + [anon_sym_L_SQUOTE] = ACTIONS(1153), + [anon_sym_u_SQUOTE] = ACTIONS(1153), + [anon_sym_U_SQUOTE] = ACTIONS(1153), + [anon_sym_u8_SQUOTE] = ACTIONS(1153), + [anon_sym_SQUOTE] = ACTIONS(1153), + [anon_sym_L_DQUOTE] = ACTIONS(1153), + [anon_sym_u_DQUOTE] = ACTIONS(1153), + [anon_sym_U_DQUOTE] = ACTIONS(1153), + [anon_sym_u8_DQUOTE] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [sym_true] = ACTIONS(1151), + [sym_false] = ACTIONS(1151), + [anon_sym_NULL] = ACTIONS(1151), + [anon_sym_nullptr] = ACTIONS(1151), [sym_comment] = ACTIONS(3), }, [85] = { - [sym_identifier] = ACTIONS(1148), - [aux_sym_preproc_include_token1] = ACTIONS(1148), - [aux_sym_preproc_def_token1] = ACTIONS(1148), - [aux_sym_preproc_if_token1] = ACTIONS(1148), - [aux_sym_preproc_if_token2] = ACTIONS(1148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1148), - [aux_sym_preproc_else_token1] = ACTIONS(1148), - [aux_sym_preproc_elif_token1] = ACTIONS(1148), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1148), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1148), - [sym_preproc_directive] = ACTIONS(1148), - [anon_sym_LPAREN2] = ACTIONS(1150), - [anon_sym_BANG] = ACTIONS(1150), - [anon_sym_TILDE] = ACTIONS(1150), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym___extension__] = ACTIONS(1148), - [anon_sym_typedef] = ACTIONS(1148), - [anon_sym_extern] = ACTIONS(1148), - [anon_sym___attribute__] = ACTIONS(1148), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1150), - [anon_sym___declspec] = ACTIONS(1148), - [anon_sym___cdecl] = ACTIONS(1148), - [anon_sym___clrcall] = ACTIONS(1148), - [anon_sym___stdcall] = ACTIONS(1148), - [anon_sym___fastcall] = ACTIONS(1148), - [anon_sym___thiscall] = ACTIONS(1148), - [anon_sym___vectorcall] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_signed] = ACTIONS(1148), - [anon_sym_unsigned] = ACTIONS(1148), - [anon_sym_long] = ACTIONS(1148), - [anon_sym_short] = ACTIONS(1148), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_auto] = ACTIONS(1148), - [anon_sym_register] = ACTIONS(1148), - [anon_sym_inline] = ACTIONS(1148), - [anon_sym___inline] = ACTIONS(1148), - [anon_sym___inline__] = ACTIONS(1148), - [anon_sym___forceinline] = ACTIONS(1148), - [anon_sym_thread_local] = ACTIONS(1148), - [anon_sym___thread] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1148), - [anon_sym_constexpr] = ACTIONS(1148), - [anon_sym_volatile] = ACTIONS(1148), - [anon_sym_restrict] = ACTIONS(1148), - [anon_sym___restrict__] = ACTIONS(1148), - [anon_sym__Atomic] = ACTIONS(1148), - [anon_sym__Noreturn] = ACTIONS(1148), - [anon_sym_noreturn] = ACTIONS(1148), - [sym_primitive_type] = ACTIONS(1148), - [anon_sym_enum] = ACTIONS(1148), - [anon_sym_struct] = ACTIONS(1148), - [anon_sym_union] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_else] = ACTIONS(1148), - [anon_sym_switch] = ACTIONS(1148), - [anon_sym_case] = ACTIONS(1148), - [anon_sym_default] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_goto] = ACTIONS(1148), - [anon_sym___try] = ACTIONS(1148), - [anon_sym___leave] = ACTIONS(1148), - [anon_sym_DASH_DASH] = ACTIONS(1150), - [anon_sym_PLUS_PLUS] = ACTIONS(1150), - [anon_sym_sizeof] = ACTIONS(1148), - [anon_sym___alignof__] = ACTIONS(1148), - [anon_sym___alignof] = ACTIONS(1148), - [anon_sym__alignof] = ACTIONS(1148), - [anon_sym_alignof] = ACTIONS(1148), - [anon_sym__Alignof] = ACTIONS(1148), - [anon_sym_offsetof] = ACTIONS(1148), - [anon_sym__Generic] = ACTIONS(1148), - [anon_sym_asm] = ACTIONS(1148), - [anon_sym___asm__] = ACTIONS(1148), - [sym_number_literal] = ACTIONS(1150), - [anon_sym_L_SQUOTE] = ACTIONS(1150), - [anon_sym_u_SQUOTE] = ACTIONS(1150), - [anon_sym_U_SQUOTE] = ACTIONS(1150), - [anon_sym_u8_SQUOTE] = ACTIONS(1150), - [anon_sym_SQUOTE] = ACTIONS(1150), - [anon_sym_L_DQUOTE] = ACTIONS(1150), - [anon_sym_u_DQUOTE] = ACTIONS(1150), - [anon_sym_U_DQUOTE] = ACTIONS(1150), - [anon_sym_u8_DQUOTE] = ACTIONS(1150), - [anon_sym_DQUOTE] = ACTIONS(1150), - [sym_true] = ACTIONS(1148), - [sym_false] = ACTIONS(1148), - [anon_sym_NULL] = ACTIONS(1148), - [anon_sym_nullptr] = ACTIONS(1148), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [aux_sym_preproc_else_token1] = ACTIONS(1123), + [aux_sym_preproc_elif_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [86] = { - [sym_identifier] = ACTIONS(1152), - [aux_sym_preproc_include_token1] = ACTIONS(1152), - [aux_sym_preproc_def_token1] = ACTIONS(1152), - [aux_sym_preproc_if_token1] = ACTIONS(1152), - [aux_sym_preproc_if_token2] = ACTIONS(1152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1152), - [aux_sym_preproc_else_token1] = ACTIONS(1152), - [aux_sym_preproc_elif_token1] = ACTIONS(1152), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1152), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1152), - [sym_preproc_directive] = ACTIONS(1152), - [anon_sym_LPAREN2] = ACTIONS(1154), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1154), - [anon_sym___extension__] = ACTIONS(1152), - [anon_sym_typedef] = ACTIONS(1152), - [anon_sym_extern] = ACTIONS(1152), - [anon_sym___attribute__] = ACTIONS(1152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1154), - [anon_sym___declspec] = ACTIONS(1152), - [anon_sym___cdecl] = ACTIONS(1152), - [anon_sym___clrcall] = ACTIONS(1152), - [anon_sym___stdcall] = ACTIONS(1152), - [anon_sym___fastcall] = ACTIONS(1152), - [anon_sym___thiscall] = ACTIONS(1152), - [anon_sym___vectorcall] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_signed] = ACTIONS(1152), - [anon_sym_unsigned] = ACTIONS(1152), - [anon_sym_long] = ACTIONS(1152), - [anon_sym_short] = ACTIONS(1152), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_auto] = ACTIONS(1152), - [anon_sym_register] = ACTIONS(1152), - [anon_sym_inline] = ACTIONS(1152), - [anon_sym___inline] = ACTIONS(1152), - [anon_sym___inline__] = ACTIONS(1152), - [anon_sym___forceinline] = ACTIONS(1152), - [anon_sym_thread_local] = ACTIONS(1152), - [anon_sym___thread] = ACTIONS(1152), - [anon_sym_const] = ACTIONS(1152), - [anon_sym_constexpr] = ACTIONS(1152), - [anon_sym_volatile] = ACTIONS(1152), - [anon_sym_restrict] = ACTIONS(1152), - [anon_sym___restrict__] = ACTIONS(1152), - [anon_sym__Atomic] = ACTIONS(1152), - [anon_sym__Noreturn] = ACTIONS(1152), - [anon_sym_noreturn] = ACTIONS(1152), - [sym_primitive_type] = ACTIONS(1152), - [anon_sym_enum] = ACTIONS(1152), - [anon_sym_struct] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(1152), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_else] = ACTIONS(1152), - [anon_sym_switch] = ACTIONS(1152), - [anon_sym_case] = ACTIONS(1152), - [anon_sym_default] = ACTIONS(1152), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(1152), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_return] = ACTIONS(1152), - [anon_sym_break] = ACTIONS(1152), - [anon_sym_continue] = ACTIONS(1152), - [anon_sym_goto] = ACTIONS(1152), - [anon_sym___try] = ACTIONS(1152), - [anon_sym___leave] = ACTIONS(1152), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_sizeof] = ACTIONS(1152), - [anon_sym___alignof__] = ACTIONS(1152), - [anon_sym___alignof] = ACTIONS(1152), - [anon_sym__alignof] = ACTIONS(1152), - [anon_sym_alignof] = ACTIONS(1152), - [anon_sym__Alignof] = ACTIONS(1152), - [anon_sym_offsetof] = ACTIONS(1152), - [anon_sym__Generic] = ACTIONS(1152), - [anon_sym_asm] = ACTIONS(1152), - [anon_sym___asm__] = ACTIONS(1152), - [sym_number_literal] = ACTIONS(1154), - [anon_sym_L_SQUOTE] = ACTIONS(1154), - [anon_sym_u_SQUOTE] = ACTIONS(1154), - [anon_sym_U_SQUOTE] = ACTIONS(1154), - [anon_sym_u8_SQUOTE] = ACTIONS(1154), - [anon_sym_SQUOTE] = ACTIONS(1154), - [anon_sym_L_DQUOTE] = ACTIONS(1154), - [anon_sym_u_DQUOTE] = ACTIONS(1154), - [anon_sym_U_DQUOTE] = ACTIONS(1154), - [anon_sym_u8_DQUOTE] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1154), - [sym_true] = ACTIONS(1152), - [sym_false] = ACTIONS(1152), - [anon_sym_NULL] = ACTIONS(1152), - [anon_sym_nullptr] = ACTIONS(1152), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [aux_sym_preproc_else_token1] = ACTIONS(1123), + [aux_sym_preproc_elif_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [87] = { - [sym_identifier] = ACTIONS(1156), - [aux_sym_preproc_include_token1] = ACTIONS(1156), - [aux_sym_preproc_def_token1] = ACTIONS(1156), - [aux_sym_preproc_if_token1] = ACTIONS(1156), - [aux_sym_preproc_if_token2] = ACTIONS(1156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1156), - [aux_sym_preproc_else_token1] = ACTIONS(1156), - [aux_sym_preproc_elif_token1] = ACTIONS(1156), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1156), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1156), - [sym_preproc_directive] = ACTIONS(1156), - [anon_sym_LPAREN2] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(1158), - [anon_sym_TILDE] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_AMP] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym___extension__] = ACTIONS(1156), - [anon_sym_typedef] = ACTIONS(1156), - [anon_sym_extern] = ACTIONS(1156), - [anon_sym___attribute__] = ACTIONS(1156), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1158), - [anon_sym___declspec] = ACTIONS(1156), - [anon_sym___cdecl] = ACTIONS(1156), - [anon_sym___clrcall] = ACTIONS(1156), - [anon_sym___stdcall] = ACTIONS(1156), - [anon_sym___fastcall] = ACTIONS(1156), - [anon_sym___thiscall] = ACTIONS(1156), - [anon_sym___vectorcall] = ACTIONS(1156), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_signed] = ACTIONS(1156), - [anon_sym_unsigned] = ACTIONS(1156), - [anon_sym_long] = ACTIONS(1156), - [anon_sym_short] = ACTIONS(1156), - [anon_sym_static] = ACTIONS(1156), - [anon_sym_auto] = ACTIONS(1156), - [anon_sym_register] = ACTIONS(1156), - [anon_sym_inline] = ACTIONS(1156), - [anon_sym___inline] = ACTIONS(1156), - [anon_sym___inline__] = ACTIONS(1156), - [anon_sym___forceinline] = ACTIONS(1156), - [anon_sym_thread_local] = ACTIONS(1156), - [anon_sym___thread] = ACTIONS(1156), - [anon_sym_const] = ACTIONS(1156), - [anon_sym_constexpr] = ACTIONS(1156), - [anon_sym_volatile] = ACTIONS(1156), - [anon_sym_restrict] = ACTIONS(1156), - [anon_sym___restrict__] = ACTIONS(1156), - [anon_sym__Atomic] = ACTIONS(1156), - [anon_sym__Noreturn] = ACTIONS(1156), - [anon_sym_noreturn] = ACTIONS(1156), - [sym_primitive_type] = ACTIONS(1156), - [anon_sym_enum] = ACTIONS(1156), - [anon_sym_struct] = ACTIONS(1156), - [anon_sym_union] = ACTIONS(1156), - [anon_sym_if] = ACTIONS(1156), - [anon_sym_else] = ACTIONS(1156), - [anon_sym_switch] = ACTIONS(1156), - [anon_sym_case] = ACTIONS(1156), - [anon_sym_default] = ACTIONS(1156), - [anon_sym_while] = ACTIONS(1156), - [anon_sym_do] = ACTIONS(1156), - [anon_sym_for] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_continue] = ACTIONS(1156), - [anon_sym_goto] = ACTIONS(1156), - [anon_sym___try] = ACTIONS(1156), - [anon_sym___leave] = ACTIONS(1156), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_sizeof] = ACTIONS(1156), - [anon_sym___alignof__] = ACTIONS(1156), - [anon_sym___alignof] = ACTIONS(1156), - [anon_sym__alignof] = ACTIONS(1156), - [anon_sym_alignof] = ACTIONS(1156), - [anon_sym__Alignof] = ACTIONS(1156), - [anon_sym_offsetof] = ACTIONS(1156), - [anon_sym__Generic] = ACTIONS(1156), - [anon_sym_asm] = ACTIONS(1156), - [anon_sym___asm__] = ACTIONS(1156), - [sym_number_literal] = ACTIONS(1158), - [anon_sym_L_SQUOTE] = ACTIONS(1158), - [anon_sym_u_SQUOTE] = ACTIONS(1158), - [anon_sym_U_SQUOTE] = ACTIONS(1158), - [anon_sym_u8_SQUOTE] = ACTIONS(1158), - [anon_sym_SQUOTE] = ACTIONS(1158), - [anon_sym_L_DQUOTE] = ACTIONS(1158), - [anon_sym_u_DQUOTE] = ACTIONS(1158), - [anon_sym_U_DQUOTE] = ACTIONS(1158), - [anon_sym_u8_DQUOTE] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym_true] = ACTIONS(1156), - [sym_false] = ACTIONS(1156), - [anon_sym_NULL] = ACTIONS(1156), - [anon_sym_nullptr] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1155), + [aux_sym_preproc_include_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1155), + [aux_sym_preproc_if_token1] = ACTIONS(1155), + [aux_sym_preproc_if_token2] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), + [aux_sym_preproc_else_token1] = ACTIONS(1155), + [aux_sym_preproc_elif_token1] = ACTIONS(1155), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1155), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1155), + [sym_preproc_directive] = ACTIONS(1155), + [anon_sym_LPAREN2] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1157), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1157), + [anon_sym___extension__] = ACTIONS(1155), + [anon_sym_typedef] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym___attribute__] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1157), + [anon_sym___declspec] = ACTIONS(1155), + [anon_sym___cdecl] = ACTIONS(1155), + [anon_sym___clrcall] = ACTIONS(1155), + [anon_sym___stdcall] = ACTIONS(1155), + [anon_sym___fastcall] = ACTIONS(1155), + [anon_sym___thiscall] = ACTIONS(1155), + [anon_sym___vectorcall] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(1155), + [anon_sym_unsigned] = ACTIONS(1155), + [anon_sym_long] = ACTIONS(1155), + [anon_sym_short] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1155), + [anon_sym_auto] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_inline] = ACTIONS(1155), + [anon_sym___inline] = ACTIONS(1155), + [anon_sym___inline__] = ACTIONS(1155), + [anon_sym___forceinline] = ACTIONS(1155), + [anon_sym_thread_local] = ACTIONS(1155), + [anon_sym___thread] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_constexpr] = ACTIONS(1155), + [anon_sym_volatile] = ACTIONS(1155), + [anon_sym_restrict] = ACTIONS(1155), + [anon_sym___restrict__] = ACTIONS(1155), + [anon_sym__Atomic] = ACTIONS(1155), + [anon_sym__Noreturn] = ACTIONS(1155), + [anon_sym_noreturn] = ACTIONS(1155), + [anon_sym_alignas] = ACTIONS(1155), + [anon_sym__Alignas] = ACTIONS(1155), + [sym_primitive_type] = ACTIONS(1155), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_struct] = ACTIONS(1155), + [anon_sym_union] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_switch] = ACTIONS(1155), + [anon_sym_case] = ACTIONS(1155), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_goto] = ACTIONS(1155), + [anon_sym___try] = ACTIONS(1155), + [anon_sym___leave] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_sizeof] = ACTIONS(1155), + [anon_sym___alignof__] = ACTIONS(1155), + [anon_sym___alignof] = ACTIONS(1155), + [anon_sym__alignof] = ACTIONS(1155), + [anon_sym_alignof] = ACTIONS(1155), + [anon_sym__Alignof] = ACTIONS(1155), + [anon_sym_offsetof] = ACTIONS(1155), + [anon_sym__Generic] = ACTIONS(1155), + [anon_sym_asm] = ACTIONS(1155), + [anon_sym___asm__] = ACTIONS(1155), + [sym_number_literal] = ACTIONS(1157), + [anon_sym_L_SQUOTE] = ACTIONS(1157), + [anon_sym_u_SQUOTE] = ACTIONS(1157), + [anon_sym_U_SQUOTE] = ACTIONS(1157), + [anon_sym_u8_SQUOTE] = ACTIONS(1157), + [anon_sym_SQUOTE] = ACTIONS(1157), + [anon_sym_L_DQUOTE] = ACTIONS(1157), + [anon_sym_u_DQUOTE] = ACTIONS(1157), + [anon_sym_U_DQUOTE] = ACTIONS(1157), + [anon_sym_u8_DQUOTE] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_true] = ACTIONS(1155), + [sym_false] = ACTIONS(1155), + [anon_sym_NULL] = ACTIONS(1155), + [anon_sym_nullptr] = ACTIONS(1155), [sym_comment] = ACTIONS(3), }, [88] = { - [sym_identifier] = ACTIONS(1160), - [aux_sym_preproc_include_token1] = ACTIONS(1160), - [aux_sym_preproc_def_token1] = ACTIONS(1160), - [aux_sym_preproc_if_token1] = ACTIONS(1160), - [aux_sym_preproc_if_token2] = ACTIONS(1160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1160), - [aux_sym_preproc_else_token1] = ACTIONS(1160), - [aux_sym_preproc_elif_token1] = ACTIONS(1160), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1160), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1160), - [sym_preproc_directive] = ACTIONS(1160), - [anon_sym_LPAREN2] = ACTIONS(1162), - [anon_sym_BANG] = ACTIONS(1162), - [anon_sym_TILDE] = ACTIONS(1162), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_STAR] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1162), - [anon_sym_SEMI] = ACTIONS(1162), - [anon_sym___extension__] = ACTIONS(1160), - [anon_sym_typedef] = ACTIONS(1160), - [anon_sym_extern] = ACTIONS(1160), - [anon_sym___attribute__] = ACTIONS(1160), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1162), - [anon_sym___declspec] = ACTIONS(1160), - [anon_sym___cdecl] = ACTIONS(1160), - [anon_sym___clrcall] = ACTIONS(1160), - [anon_sym___stdcall] = ACTIONS(1160), - [anon_sym___fastcall] = ACTIONS(1160), - [anon_sym___thiscall] = ACTIONS(1160), - [anon_sym___vectorcall] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_signed] = ACTIONS(1160), - [anon_sym_unsigned] = ACTIONS(1160), - [anon_sym_long] = ACTIONS(1160), - [anon_sym_short] = ACTIONS(1160), - [anon_sym_static] = ACTIONS(1160), - [anon_sym_auto] = ACTIONS(1160), - [anon_sym_register] = ACTIONS(1160), - [anon_sym_inline] = ACTIONS(1160), - [anon_sym___inline] = ACTIONS(1160), - [anon_sym___inline__] = ACTIONS(1160), - [anon_sym___forceinline] = ACTIONS(1160), - [anon_sym_thread_local] = ACTIONS(1160), - [anon_sym___thread] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1160), - [anon_sym_constexpr] = ACTIONS(1160), - [anon_sym_volatile] = ACTIONS(1160), - [anon_sym_restrict] = ACTIONS(1160), - [anon_sym___restrict__] = ACTIONS(1160), - [anon_sym__Atomic] = ACTIONS(1160), - [anon_sym__Noreturn] = ACTIONS(1160), - [anon_sym_noreturn] = ACTIONS(1160), - [sym_primitive_type] = ACTIONS(1160), - [anon_sym_enum] = ACTIONS(1160), - [anon_sym_struct] = ACTIONS(1160), - [anon_sym_union] = ACTIONS(1160), - [anon_sym_if] = ACTIONS(1160), - [anon_sym_else] = ACTIONS(1160), - [anon_sym_switch] = ACTIONS(1160), - [anon_sym_case] = ACTIONS(1160), - [anon_sym_default] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1160), - [anon_sym_do] = ACTIONS(1160), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_return] = ACTIONS(1160), - [anon_sym_break] = ACTIONS(1160), - [anon_sym_continue] = ACTIONS(1160), - [anon_sym_goto] = ACTIONS(1160), - [anon_sym___try] = ACTIONS(1160), - [anon_sym___leave] = ACTIONS(1160), - [anon_sym_DASH_DASH] = ACTIONS(1162), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_sizeof] = ACTIONS(1160), - [anon_sym___alignof__] = ACTIONS(1160), - [anon_sym___alignof] = ACTIONS(1160), - [anon_sym__alignof] = ACTIONS(1160), - [anon_sym_alignof] = ACTIONS(1160), - [anon_sym__Alignof] = ACTIONS(1160), - [anon_sym_offsetof] = ACTIONS(1160), - [anon_sym__Generic] = ACTIONS(1160), - [anon_sym_asm] = ACTIONS(1160), - [anon_sym___asm__] = ACTIONS(1160), - [sym_number_literal] = ACTIONS(1162), - [anon_sym_L_SQUOTE] = ACTIONS(1162), - [anon_sym_u_SQUOTE] = ACTIONS(1162), - [anon_sym_U_SQUOTE] = ACTIONS(1162), - [anon_sym_u8_SQUOTE] = ACTIONS(1162), - [anon_sym_SQUOTE] = ACTIONS(1162), - [anon_sym_L_DQUOTE] = ACTIONS(1162), - [anon_sym_u_DQUOTE] = ACTIONS(1162), - [anon_sym_U_DQUOTE] = ACTIONS(1162), - [anon_sym_u8_DQUOTE] = ACTIONS(1162), - [anon_sym_DQUOTE] = ACTIONS(1162), - [sym_true] = ACTIONS(1160), - [sym_false] = ACTIONS(1160), - [anon_sym_NULL] = ACTIONS(1160), - [anon_sym_nullptr] = ACTIONS(1160), + [sym_identifier] = ACTIONS(1159), + [aux_sym_preproc_include_token1] = ACTIONS(1159), + [aux_sym_preproc_def_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token2] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), + [aux_sym_preproc_else_token1] = ACTIONS(1159), + [aux_sym_preproc_elif_token1] = ACTIONS(1159), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1159), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1159), + [sym_preproc_directive] = ACTIONS(1159), + [anon_sym_LPAREN2] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(1161), + [anon_sym_TILDE] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1161), + [anon_sym___extension__] = ACTIONS(1159), + [anon_sym_typedef] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym___attribute__] = ACTIONS(1159), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), + [anon_sym___declspec] = ACTIONS(1159), + [anon_sym___cdecl] = ACTIONS(1159), + [anon_sym___clrcall] = ACTIONS(1159), + [anon_sym___stdcall] = ACTIONS(1159), + [anon_sym___fastcall] = ACTIONS(1159), + [anon_sym___thiscall] = ACTIONS(1159), + [anon_sym___vectorcall] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_signed] = ACTIONS(1159), + [anon_sym_unsigned] = ACTIONS(1159), + [anon_sym_long] = ACTIONS(1159), + [anon_sym_short] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_auto] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_inline] = ACTIONS(1159), + [anon_sym___inline] = ACTIONS(1159), + [anon_sym___inline__] = ACTIONS(1159), + [anon_sym___forceinline] = ACTIONS(1159), + [anon_sym_thread_local] = ACTIONS(1159), + [anon_sym___thread] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_constexpr] = ACTIONS(1159), + [anon_sym_volatile] = ACTIONS(1159), + [anon_sym_restrict] = ACTIONS(1159), + [anon_sym___restrict__] = ACTIONS(1159), + [anon_sym__Atomic] = ACTIONS(1159), + [anon_sym__Noreturn] = ACTIONS(1159), + [anon_sym_noreturn] = ACTIONS(1159), + [anon_sym_alignas] = ACTIONS(1159), + [anon_sym__Alignas] = ACTIONS(1159), + [sym_primitive_type] = ACTIONS(1159), + [anon_sym_enum] = ACTIONS(1159), + [anon_sym_struct] = ACTIONS(1159), + [anon_sym_union] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_switch] = ACTIONS(1159), + [anon_sym_case] = ACTIONS(1159), + [anon_sym_default] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_goto] = ACTIONS(1159), + [anon_sym___try] = ACTIONS(1159), + [anon_sym___leave] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1161), + [anon_sym_PLUS_PLUS] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1159), + [anon_sym___alignof__] = ACTIONS(1159), + [anon_sym___alignof] = ACTIONS(1159), + [anon_sym__alignof] = ACTIONS(1159), + [anon_sym_alignof] = ACTIONS(1159), + [anon_sym__Alignof] = ACTIONS(1159), + [anon_sym_offsetof] = ACTIONS(1159), + [anon_sym__Generic] = ACTIONS(1159), + [anon_sym_asm] = ACTIONS(1159), + [anon_sym___asm__] = ACTIONS(1159), + [sym_number_literal] = ACTIONS(1161), + [anon_sym_L_SQUOTE] = ACTIONS(1161), + [anon_sym_u_SQUOTE] = ACTIONS(1161), + [anon_sym_U_SQUOTE] = ACTIONS(1161), + [anon_sym_u8_SQUOTE] = ACTIONS(1161), + [anon_sym_SQUOTE] = ACTIONS(1161), + [anon_sym_L_DQUOTE] = ACTIONS(1161), + [anon_sym_u_DQUOTE] = ACTIONS(1161), + [anon_sym_U_DQUOTE] = ACTIONS(1161), + [anon_sym_u8_DQUOTE] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym_true] = ACTIONS(1159), + [sym_false] = ACTIONS(1159), + [anon_sym_NULL] = ACTIONS(1159), + [anon_sym_nullptr] = ACTIONS(1159), [sym_comment] = ACTIONS(3), }, [89] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1120), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1120), - [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_signed] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1120), - [anon_sym_long] = ACTIONS(1120), - [anon_sym_short] = ACTIONS(1120), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_auto] = ACTIONS(1120), - [anon_sym_register] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym___inline] = ACTIONS(1120), - [anon_sym___inline__] = ACTIONS(1120), - [anon_sym___forceinline] = ACTIONS(1120), - [anon_sym_thread_local] = ACTIONS(1120), - [anon_sym___thread] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1120), - [anon_sym___leave] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_sizeof] = ACTIONS(1120), - [anon_sym___alignof__] = ACTIONS(1120), - [anon_sym___alignof] = ACTIONS(1120), - [anon_sym__alignof] = ACTIONS(1120), - [anon_sym_alignof] = ACTIONS(1120), - [anon_sym__Alignof] = ACTIONS(1120), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1120), - [anon_sym_nullptr] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1163), + [aux_sym_preproc_include_token1] = ACTIONS(1163), + [aux_sym_preproc_def_token1] = ACTIONS(1163), + [aux_sym_preproc_if_token1] = ACTIONS(1163), + [aux_sym_preproc_if_token2] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), + [aux_sym_preproc_else_token1] = ACTIONS(1163), + [aux_sym_preproc_elif_token1] = ACTIONS(1163), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1163), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1163), + [sym_preproc_directive] = ACTIONS(1163), + [anon_sym_LPAREN2] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym___extension__] = ACTIONS(1163), + [anon_sym_typedef] = ACTIONS(1163), + [anon_sym_extern] = ACTIONS(1163), + [anon_sym___attribute__] = ACTIONS(1163), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), + [anon_sym___declspec] = ACTIONS(1163), + [anon_sym___cdecl] = ACTIONS(1163), + [anon_sym___clrcall] = ACTIONS(1163), + [anon_sym___stdcall] = ACTIONS(1163), + [anon_sym___fastcall] = ACTIONS(1163), + [anon_sym___thiscall] = ACTIONS(1163), + [anon_sym___vectorcall] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_signed] = ACTIONS(1163), + [anon_sym_unsigned] = ACTIONS(1163), + [anon_sym_long] = ACTIONS(1163), + [anon_sym_short] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_auto] = ACTIONS(1163), + [anon_sym_register] = ACTIONS(1163), + [anon_sym_inline] = ACTIONS(1163), + [anon_sym___inline] = ACTIONS(1163), + [anon_sym___inline__] = ACTIONS(1163), + [anon_sym___forceinline] = ACTIONS(1163), + [anon_sym_thread_local] = ACTIONS(1163), + [anon_sym___thread] = ACTIONS(1163), + [anon_sym_const] = ACTIONS(1163), + [anon_sym_constexpr] = ACTIONS(1163), + [anon_sym_volatile] = ACTIONS(1163), + [anon_sym_restrict] = ACTIONS(1163), + [anon_sym___restrict__] = ACTIONS(1163), + [anon_sym__Atomic] = ACTIONS(1163), + [anon_sym__Noreturn] = ACTIONS(1163), + [anon_sym_noreturn] = ACTIONS(1163), + [anon_sym_alignas] = ACTIONS(1163), + [anon_sym__Alignas] = ACTIONS(1163), + [sym_primitive_type] = ACTIONS(1163), + [anon_sym_enum] = ACTIONS(1163), + [anon_sym_struct] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_else] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1163), + [anon_sym_case] = ACTIONS(1163), + [anon_sym_default] = ACTIONS(1163), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_do] = ACTIONS(1163), + [anon_sym_for] = ACTIONS(1163), + [anon_sym_return] = ACTIONS(1163), + [anon_sym_break] = ACTIONS(1163), + [anon_sym_continue] = ACTIONS(1163), + [anon_sym_goto] = ACTIONS(1163), + [anon_sym___try] = ACTIONS(1163), + [anon_sym___leave] = ACTIONS(1163), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_sizeof] = ACTIONS(1163), + [anon_sym___alignof__] = ACTIONS(1163), + [anon_sym___alignof] = ACTIONS(1163), + [anon_sym__alignof] = ACTIONS(1163), + [anon_sym_alignof] = ACTIONS(1163), + [anon_sym__Alignof] = ACTIONS(1163), + [anon_sym_offsetof] = ACTIONS(1163), + [anon_sym__Generic] = ACTIONS(1163), + [anon_sym_asm] = ACTIONS(1163), + [anon_sym___asm__] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(1165), + [anon_sym_L_SQUOTE] = ACTIONS(1165), + [anon_sym_u_SQUOTE] = ACTIONS(1165), + [anon_sym_U_SQUOTE] = ACTIONS(1165), + [anon_sym_u8_SQUOTE] = ACTIONS(1165), + [anon_sym_SQUOTE] = ACTIONS(1165), + [anon_sym_L_DQUOTE] = ACTIONS(1165), + [anon_sym_u_DQUOTE] = ACTIONS(1165), + [anon_sym_U_DQUOTE] = ACTIONS(1165), + [anon_sym_u8_DQUOTE] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym_true] = ACTIONS(1163), + [sym_false] = ACTIONS(1163), + [anon_sym_NULL] = ACTIONS(1163), + [anon_sym_nullptr] = ACTIONS(1163), [sym_comment] = ACTIONS(3), }, [90] = { - [sym_identifier] = ACTIONS(1164), - [aux_sym_preproc_include_token1] = ACTIONS(1164), - [aux_sym_preproc_def_token1] = ACTIONS(1164), - [aux_sym_preproc_if_token1] = ACTIONS(1164), - [aux_sym_preproc_if_token2] = ACTIONS(1164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1164), - [aux_sym_preproc_else_token1] = ACTIONS(1164), - [aux_sym_preproc_elif_token1] = ACTIONS(1164), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1164), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1164), - [sym_preproc_directive] = ACTIONS(1164), - [anon_sym_LPAREN2] = ACTIONS(1166), - [anon_sym_BANG] = ACTIONS(1166), - [anon_sym_TILDE] = ACTIONS(1166), - [anon_sym_DASH] = ACTIONS(1164), - [anon_sym_PLUS] = ACTIONS(1164), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1166), - [anon_sym_SEMI] = ACTIONS(1166), - [anon_sym___extension__] = ACTIONS(1164), - [anon_sym_typedef] = ACTIONS(1164), - [anon_sym_extern] = ACTIONS(1164), - [anon_sym___attribute__] = ACTIONS(1164), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1166), - [anon_sym___declspec] = ACTIONS(1164), - [anon_sym___cdecl] = ACTIONS(1164), - [anon_sym___clrcall] = ACTIONS(1164), - [anon_sym___stdcall] = ACTIONS(1164), - [anon_sym___fastcall] = ACTIONS(1164), - [anon_sym___thiscall] = ACTIONS(1164), - [anon_sym___vectorcall] = ACTIONS(1164), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_signed] = ACTIONS(1164), - [anon_sym_unsigned] = ACTIONS(1164), - [anon_sym_long] = ACTIONS(1164), - [anon_sym_short] = ACTIONS(1164), - [anon_sym_static] = ACTIONS(1164), - [anon_sym_auto] = ACTIONS(1164), - [anon_sym_register] = ACTIONS(1164), - [anon_sym_inline] = ACTIONS(1164), - [anon_sym___inline] = ACTIONS(1164), - [anon_sym___inline__] = ACTIONS(1164), - [anon_sym___forceinline] = ACTIONS(1164), - [anon_sym_thread_local] = ACTIONS(1164), - [anon_sym___thread] = ACTIONS(1164), - [anon_sym_const] = ACTIONS(1164), - [anon_sym_constexpr] = ACTIONS(1164), - [anon_sym_volatile] = ACTIONS(1164), - [anon_sym_restrict] = ACTIONS(1164), - [anon_sym___restrict__] = ACTIONS(1164), - [anon_sym__Atomic] = ACTIONS(1164), - [anon_sym__Noreturn] = ACTIONS(1164), - [anon_sym_noreturn] = ACTIONS(1164), - [sym_primitive_type] = ACTIONS(1164), - [anon_sym_enum] = ACTIONS(1164), - [anon_sym_struct] = ACTIONS(1164), - [anon_sym_union] = ACTIONS(1164), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_else] = ACTIONS(1164), - [anon_sym_switch] = ACTIONS(1164), - [anon_sym_case] = ACTIONS(1164), - [anon_sym_default] = ACTIONS(1164), - [anon_sym_while] = ACTIONS(1164), - [anon_sym_do] = ACTIONS(1164), - [anon_sym_for] = ACTIONS(1164), - [anon_sym_return] = ACTIONS(1164), - [anon_sym_break] = ACTIONS(1164), - [anon_sym_continue] = ACTIONS(1164), - [anon_sym_goto] = ACTIONS(1164), - [anon_sym___try] = ACTIONS(1164), - [anon_sym___leave] = ACTIONS(1164), - [anon_sym_DASH_DASH] = ACTIONS(1166), - [anon_sym_PLUS_PLUS] = ACTIONS(1166), - [anon_sym_sizeof] = ACTIONS(1164), - [anon_sym___alignof__] = ACTIONS(1164), - [anon_sym___alignof] = ACTIONS(1164), - [anon_sym__alignof] = ACTIONS(1164), - [anon_sym_alignof] = ACTIONS(1164), - [anon_sym__Alignof] = ACTIONS(1164), - [anon_sym_offsetof] = ACTIONS(1164), - [anon_sym__Generic] = ACTIONS(1164), - [anon_sym_asm] = ACTIONS(1164), - [anon_sym___asm__] = ACTIONS(1164), - [sym_number_literal] = ACTIONS(1166), - [anon_sym_L_SQUOTE] = ACTIONS(1166), - [anon_sym_u_SQUOTE] = ACTIONS(1166), - [anon_sym_U_SQUOTE] = ACTIONS(1166), - [anon_sym_u8_SQUOTE] = ACTIONS(1166), - [anon_sym_SQUOTE] = ACTIONS(1166), - [anon_sym_L_DQUOTE] = ACTIONS(1166), - [anon_sym_u_DQUOTE] = ACTIONS(1166), - [anon_sym_U_DQUOTE] = ACTIONS(1166), - [anon_sym_u8_DQUOTE] = ACTIONS(1166), - [anon_sym_DQUOTE] = ACTIONS(1166), - [sym_true] = ACTIONS(1164), - [sym_false] = ACTIONS(1164), - [anon_sym_NULL] = ACTIONS(1164), - [anon_sym_nullptr] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [aux_sym_preproc_else_token1] = ACTIONS(1123), + [aux_sym_preproc_elif_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [91] = { - [sym_identifier] = ACTIONS(1168), - [aux_sym_preproc_include_token1] = ACTIONS(1168), - [aux_sym_preproc_def_token1] = ACTIONS(1168), - [aux_sym_preproc_if_token1] = ACTIONS(1168), - [aux_sym_preproc_if_token2] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1168), - [aux_sym_preproc_else_token1] = ACTIONS(1168), - [aux_sym_preproc_elif_token1] = ACTIONS(1168), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1168), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1168), - [sym_preproc_directive] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1170), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym___extension__] = ACTIONS(1168), - [anon_sym_typedef] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym___attribute__] = ACTIONS(1168), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1170), - [anon_sym___declspec] = ACTIONS(1168), - [anon_sym___cdecl] = ACTIONS(1168), - [anon_sym___clrcall] = ACTIONS(1168), - [anon_sym___stdcall] = ACTIONS(1168), - [anon_sym___fastcall] = ACTIONS(1168), - [anon_sym___thiscall] = ACTIONS(1168), - [anon_sym___vectorcall] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_signed] = ACTIONS(1168), - [anon_sym_unsigned] = ACTIONS(1168), - [anon_sym_long] = ACTIONS(1168), - [anon_sym_short] = ACTIONS(1168), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_auto] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_inline] = ACTIONS(1168), - [anon_sym___inline] = ACTIONS(1168), - [anon_sym___inline__] = ACTIONS(1168), - [anon_sym___forceinline] = ACTIONS(1168), - [anon_sym_thread_local] = ACTIONS(1168), - [anon_sym___thread] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_constexpr] = ACTIONS(1168), - [anon_sym_volatile] = ACTIONS(1168), - [anon_sym_restrict] = ACTIONS(1168), - [anon_sym___restrict__] = ACTIONS(1168), - [anon_sym__Atomic] = ACTIONS(1168), - [anon_sym__Noreturn] = ACTIONS(1168), - [anon_sym_noreturn] = ACTIONS(1168), - [sym_primitive_type] = ACTIONS(1168), - [anon_sym_enum] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1168), - [anon_sym_union] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1168), - [anon_sym_case] = ACTIONS(1168), - [anon_sym_default] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_goto] = ACTIONS(1168), - [anon_sym___try] = ACTIONS(1168), - [anon_sym___leave] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_sizeof] = ACTIONS(1168), - [anon_sym___alignof__] = ACTIONS(1168), - [anon_sym___alignof] = ACTIONS(1168), - [anon_sym__alignof] = ACTIONS(1168), - [anon_sym_alignof] = ACTIONS(1168), - [anon_sym__Alignof] = ACTIONS(1168), - [anon_sym_offsetof] = ACTIONS(1168), - [anon_sym__Generic] = ACTIONS(1168), - [anon_sym_asm] = ACTIONS(1168), - [anon_sym___asm__] = ACTIONS(1168), - [sym_number_literal] = ACTIONS(1170), - [anon_sym_L_SQUOTE] = ACTIONS(1170), - [anon_sym_u_SQUOTE] = ACTIONS(1170), - [anon_sym_U_SQUOTE] = ACTIONS(1170), - [anon_sym_u8_SQUOTE] = ACTIONS(1170), - [anon_sym_SQUOTE] = ACTIONS(1170), - [anon_sym_L_DQUOTE] = ACTIONS(1170), - [anon_sym_u_DQUOTE] = ACTIONS(1170), - [anon_sym_U_DQUOTE] = ACTIONS(1170), - [anon_sym_u8_DQUOTE] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1170), - [sym_true] = ACTIONS(1168), - [sym_false] = ACTIONS(1168), - [anon_sym_NULL] = ACTIONS(1168), - [anon_sym_nullptr] = ACTIONS(1168), + [ts_builtin_sym_end] = ACTIONS(1167), + [sym_identifier] = ACTIONS(1169), + [aux_sym_preproc_include_token1] = ACTIONS(1169), + [aux_sym_preproc_def_token1] = ACTIONS(1169), + [anon_sym_COMMA] = ACTIONS(1167), + [anon_sym_RPAREN] = ACTIONS(1167), + [aux_sym_preproc_if_token1] = ACTIONS(1169), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), + [sym_preproc_directive] = ACTIONS(1169), + [anon_sym_LPAREN2] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1169), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym___extension__] = ACTIONS(1169), + [anon_sym_typedef] = ACTIONS(1169), + [anon_sym_extern] = ACTIONS(1169), + [anon_sym___attribute__] = ACTIONS(1169), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), + [anon_sym___declspec] = ACTIONS(1169), + [anon_sym___cdecl] = ACTIONS(1169), + [anon_sym___clrcall] = ACTIONS(1169), + [anon_sym___stdcall] = ACTIONS(1169), + [anon_sym___fastcall] = ACTIONS(1169), + [anon_sym___thiscall] = ACTIONS(1169), + [anon_sym___vectorcall] = ACTIONS(1169), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_signed] = ACTIONS(1169), + [anon_sym_unsigned] = ACTIONS(1169), + [anon_sym_long] = ACTIONS(1169), + [anon_sym_short] = ACTIONS(1169), + [anon_sym_static] = ACTIONS(1169), + [anon_sym_auto] = ACTIONS(1169), + [anon_sym_register] = ACTIONS(1169), + [anon_sym_inline] = ACTIONS(1169), + [anon_sym___inline] = ACTIONS(1169), + [anon_sym___inline__] = ACTIONS(1169), + [anon_sym___forceinline] = ACTIONS(1169), + [anon_sym_thread_local] = ACTIONS(1169), + [anon_sym___thread] = ACTIONS(1169), + [anon_sym_const] = ACTIONS(1169), + [anon_sym_constexpr] = ACTIONS(1169), + [anon_sym_volatile] = ACTIONS(1169), + [anon_sym_restrict] = ACTIONS(1169), + [anon_sym___restrict__] = ACTIONS(1169), + [anon_sym__Atomic] = ACTIONS(1169), + [anon_sym__Noreturn] = ACTIONS(1169), + [anon_sym_noreturn] = ACTIONS(1169), + [anon_sym_alignas] = ACTIONS(1169), + [anon_sym__Alignas] = ACTIONS(1169), + [sym_primitive_type] = ACTIONS(1169), + [anon_sym_enum] = ACTIONS(1169), + [anon_sym_struct] = ACTIONS(1169), + [anon_sym_union] = ACTIONS(1169), + [anon_sym_if] = ACTIONS(1169), + [anon_sym_else] = ACTIONS(1169), + [anon_sym_switch] = ACTIONS(1169), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1169), + [anon_sym_do] = ACTIONS(1169), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_return] = ACTIONS(1169), + [anon_sym_break] = ACTIONS(1169), + [anon_sym_continue] = ACTIONS(1169), + [anon_sym_goto] = ACTIONS(1169), + [anon_sym___try] = ACTIONS(1169), + [anon_sym___except] = ACTIONS(1169), + [anon_sym___finally] = ACTIONS(1169), + [anon_sym___leave] = ACTIONS(1169), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_sizeof] = ACTIONS(1169), + [anon_sym___alignof__] = ACTIONS(1169), + [anon_sym___alignof] = ACTIONS(1169), + [anon_sym__alignof] = ACTIONS(1169), + [anon_sym_alignof] = ACTIONS(1169), + [anon_sym__Alignof] = ACTIONS(1169), + [anon_sym_offsetof] = ACTIONS(1169), + [anon_sym__Generic] = ACTIONS(1169), + [anon_sym_asm] = ACTIONS(1169), + [anon_sym___asm__] = ACTIONS(1169), + [sym_number_literal] = ACTIONS(1167), + [anon_sym_L_SQUOTE] = ACTIONS(1167), + [anon_sym_u_SQUOTE] = ACTIONS(1167), + [anon_sym_U_SQUOTE] = ACTIONS(1167), + [anon_sym_u8_SQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1167), + [anon_sym_L_DQUOTE] = ACTIONS(1167), + [anon_sym_u_DQUOTE] = ACTIONS(1167), + [anon_sym_U_DQUOTE] = ACTIONS(1167), + [anon_sym_u8_DQUOTE] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_true] = ACTIONS(1169), + [sym_false] = ACTIONS(1169), + [anon_sym_NULL] = ACTIONS(1169), + [anon_sym_nullptr] = ACTIONS(1169), [sym_comment] = ACTIONS(3), }, [92] = { - [ts_builtin_sym_end] = ACTIONS(1130), - [sym_identifier] = ACTIONS(1128), - [aux_sym_preproc_include_token1] = ACTIONS(1128), - [aux_sym_preproc_def_token1] = ACTIONS(1128), - [anon_sym_COMMA] = ACTIONS(1130), - [anon_sym_RPAREN] = ACTIONS(1130), - [aux_sym_preproc_if_token1] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), - [sym_preproc_directive] = ACTIONS(1128), - [anon_sym_LPAREN2] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_TILDE] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym___extension__] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym___attribute__] = ACTIONS(1128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1130), - [anon_sym___declspec] = ACTIONS(1128), - [anon_sym___cdecl] = ACTIONS(1128), - [anon_sym___clrcall] = ACTIONS(1128), - [anon_sym___stdcall] = ACTIONS(1128), - [anon_sym___fastcall] = ACTIONS(1128), - [anon_sym___thiscall] = ACTIONS(1128), - [anon_sym___vectorcall] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_signed] = ACTIONS(1128), - [anon_sym_unsigned] = ACTIONS(1128), - [anon_sym_long] = ACTIONS(1128), - [anon_sym_short] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_auto] = ACTIONS(1128), - [anon_sym_register] = ACTIONS(1128), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym___inline] = ACTIONS(1128), - [anon_sym___inline__] = ACTIONS(1128), - [anon_sym___forceinline] = ACTIONS(1128), - [anon_sym_thread_local] = ACTIONS(1128), - [anon_sym___thread] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_constexpr] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [anon_sym___restrict__] = ACTIONS(1128), - [anon_sym__Atomic] = ACTIONS(1128), - [anon_sym__Noreturn] = ACTIONS(1128), - [anon_sym_noreturn] = ACTIONS(1128), - [sym_primitive_type] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_union] = ACTIONS(1128), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_else] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_case] = ACTIONS(1128), - [anon_sym_default] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_goto] = ACTIONS(1128), - [anon_sym___try] = ACTIONS(1128), - [anon_sym___except] = ACTIONS(1128), - [anon_sym___finally] = ACTIONS(1128), - [anon_sym___leave] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1130), - [anon_sym_PLUS_PLUS] = ACTIONS(1130), - [anon_sym_sizeof] = ACTIONS(1128), - [anon_sym___alignof__] = ACTIONS(1128), - [anon_sym___alignof] = ACTIONS(1128), - [anon_sym__alignof] = ACTIONS(1128), - [anon_sym_alignof] = ACTIONS(1128), - [anon_sym__Alignof] = ACTIONS(1128), - [anon_sym_offsetof] = ACTIONS(1128), - [anon_sym__Generic] = ACTIONS(1128), - [anon_sym_asm] = ACTIONS(1128), - [anon_sym___asm__] = ACTIONS(1128), - [sym_number_literal] = ACTIONS(1130), - [anon_sym_L_SQUOTE] = ACTIONS(1130), - [anon_sym_u_SQUOTE] = ACTIONS(1130), - [anon_sym_U_SQUOTE] = ACTIONS(1130), - [anon_sym_u8_SQUOTE] = ACTIONS(1130), - [anon_sym_SQUOTE] = ACTIONS(1130), - [anon_sym_L_DQUOTE] = ACTIONS(1130), - [anon_sym_u_DQUOTE] = ACTIONS(1130), - [anon_sym_U_DQUOTE] = ACTIONS(1130), - [anon_sym_u8_DQUOTE] = ACTIONS(1130), - [anon_sym_DQUOTE] = ACTIONS(1130), - [sym_true] = ACTIONS(1128), - [sym_false] = ACTIONS(1128), - [anon_sym_NULL] = ACTIONS(1128), - [anon_sym_nullptr] = ACTIONS(1128), + [sym_identifier] = ACTIONS(1171), + [aux_sym_preproc_include_token1] = ACTIONS(1171), + [aux_sym_preproc_def_token1] = ACTIONS(1171), + [aux_sym_preproc_if_token1] = ACTIONS(1171), + [aux_sym_preproc_if_token2] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1171), + [aux_sym_preproc_else_token1] = ACTIONS(1171), + [aux_sym_preproc_elif_token1] = ACTIONS(1171), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1171), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1171), + [sym_preproc_directive] = ACTIONS(1171), + [anon_sym_LPAREN2] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym___extension__] = ACTIONS(1171), + [anon_sym_typedef] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym___attribute__] = ACTIONS(1171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1173), + [anon_sym___declspec] = ACTIONS(1171), + [anon_sym___cdecl] = ACTIONS(1171), + [anon_sym___clrcall] = ACTIONS(1171), + [anon_sym___stdcall] = ACTIONS(1171), + [anon_sym___fastcall] = ACTIONS(1171), + [anon_sym___thiscall] = ACTIONS(1171), + [anon_sym___vectorcall] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(1171), + [anon_sym_unsigned] = ACTIONS(1171), + [anon_sym_long] = ACTIONS(1171), + [anon_sym_short] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1171), + [anon_sym_auto] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_inline] = ACTIONS(1171), + [anon_sym___inline] = ACTIONS(1171), + [anon_sym___inline__] = ACTIONS(1171), + [anon_sym___forceinline] = ACTIONS(1171), + [anon_sym_thread_local] = ACTIONS(1171), + [anon_sym___thread] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_constexpr] = ACTIONS(1171), + [anon_sym_volatile] = ACTIONS(1171), + [anon_sym_restrict] = ACTIONS(1171), + [anon_sym___restrict__] = ACTIONS(1171), + [anon_sym__Atomic] = ACTIONS(1171), + [anon_sym__Noreturn] = ACTIONS(1171), + [anon_sym_noreturn] = ACTIONS(1171), + [anon_sym_alignas] = ACTIONS(1171), + [anon_sym__Alignas] = ACTIONS(1171), + [sym_primitive_type] = ACTIONS(1171), + [anon_sym_enum] = ACTIONS(1171), + [anon_sym_struct] = ACTIONS(1171), + [anon_sym_union] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_switch] = ACTIONS(1171), + [anon_sym_case] = ACTIONS(1171), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_goto] = ACTIONS(1171), + [anon_sym___try] = ACTIONS(1171), + [anon_sym___leave] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1171), + [anon_sym___alignof__] = ACTIONS(1171), + [anon_sym___alignof] = ACTIONS(1171), + [anon_sym__alignof] = ACTIONS(1171), + [anon_sym_alignof] = ACTIONS(1171), + [anon_sym__Alignof] = ACTIONS(1171), + [anon_sym_offsetof] = ACTIONS(1171), + [anon_sym__Generic] = ACTIONS(1171), + [anon_sym_asm] = ACTIONS(1171), + [anon_sym___asm__] = ACTIONS(1171), + [sym_number_literal] = ACTIONS(1173), + [anon_sym_L_SQUOTE] = ACTIONS(1173), + [anon_sym_u_SQUOTE] = ACTIONS(1173), + [anon_sym_U_SQUOTE] = ACTIONS(1173), + [anon_sym_u8_SQUOTE] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1173), + [anon_sym_L_DQUOTE] = ACTIONS(1173), + [anon_sym_u_DQUOTE] = ACTIONS(1173), + [anon_sym_U_DQUOTE] = ACTIONS(1173), + [anon_sym_u8_DQUOTE] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym_true] = ACTIONS(1171), + [sym_false] = ACTIONS(1171), + [anon_sym_NULL] = ACTIONS(1171), + [anon_sym_nullptr] = ACTIONS(1171), [sym_comment] = ACTIONS(3), }, [93] = { - [sym_identifier] = ACTIONS(1168), - [aux_sym_preproc_include_token1] = ACTIONS(1168), - [aux_sym_preproc_def_token1] = ACTIONS(1168), - [aux_sym_preproc_if_token1] = ACTIONS(1168), - [aux_sym_preproc_if_token2] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1168), - [aux_sym_preproc_else_token1] = ACTIONS(1168), - [aux_sym_preproc_elif_token1] = ACTIONS(1168), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1168), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1168), - [sym_preproc_directive] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1170), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym___extension__] = ACTIONS(1168), - [anon_sym_typedef] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym___attribute__] = ACTIONS(1168), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1170), - [anon_sym___declspec] = ACTIONS(1168), - [anon_sym___cdecl] = ACTIONS(1168), - [anon_sym___clrcall] = ACTIONS(1168), - [anon_sym___stdcall] = ACTIONS(1168), - [anon_sym___fastcall] = ACTIONS(1168), - [anon_sym___thiscall] = ACTIONS(1168), - [anon_sym___vectorcall] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_signed] = ACTIONS(1168), - [anon_sym_unsigned] = ACTIONS(1168), - [anon_sym_long] = ACTIONS(1168), - [anon_sym_short] = ACTIONS(1168), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_auto] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_inline] = ACTIONS(1168), - [anon_sym___inline] = ACTIONS(1168), - [anon_sym___inline__] = ACTIONS(1168), - [anon_sym___forceinline] = ACTIONS(1168), - [anon_sym_thread_local] = ACTIONS(1168), - [anon_sym___thread] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_constexpr] = ACTIONS(1168), - [anon_sym_volatile] = ACTIONS(1168), - [anon_sym_restrict] = ACTIONS(1168), - [anon_sym___restrict__] = ACTIONS(1168), - [anon_sym__Atomic] = ACTIONS(1168), - [anon_sym__Noreturn] = ACTIONS(1168), - [anon_sym_noreturn] = ACTIONS(1168), - [sym_primitive_type] = ACTIONS(1168), - [anon_sym_enum] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1168), - [anon_sym_union] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1168), - [anon_sym_case] = ACTIONS(1168), - [anon_sym_default] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_goto] = ACTIONS(1168), - [anon_sym___try] = ACTIONS(1168), - [anon_sym___leave] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_sizeof] = ACTIONS(1168), - [anon_sym___alignof__] = ACTIONS(1168), - [anon_sym___alignof] = ACTIONS(1168), - [anon_sym__alignof] = ACTIONS(1168), - [anon_sym_alignof] = ACTIONS(1168), - [anon_sym__Alignof] = ACTIONS(1168), - [anon_sym_offsetof] = ACTIONS(1168), - [anon_sym__Generic] = ACTIONS(1168), - [anon_sym_asm] = ACTIONS(1168), - [anon_sym___asm__] = ACTIONS(1168), - [sym_number_literal] = ACTIONS(1170), - [anon_sym_L_SQUOTE] = ACTIONS(1170), - [anon_sym_u_SQUOTE] = ACTIONS(1170), - [anon_sym_U_SQUOTE] = ACTIONS(1170), - [anon_sym_u8_SQUOTE] = ACTIONS(1170), - [anon_sym_SQUOTE] = ACTIONS(1170), - [anon_sym_L_DQUOTE] = ACTIONS(1170), - [anon_sym_u_DQUOTE] = ACTIONS(1170), - [anon_sym_U_DQUOTE] = ACTIONS(1170), - [anon_sym_u8_DQUOTE] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1170), - [sym_true] = ACTIONS(1168), - [sym_false] = ACTIONS(1168), - [anon_sym_NULL] = ACTIONS(1168), - [anon_sym_nullptr] = ACTIONS(1168), + [ts_builtin_sym_end] = ACTIONS(1137), + [sym_identifier] = ACTIONS(1135), + [aux_sym_preproc_include_token1] = ACTIONS(1135), + [aux_sym_preproc_def_token1] = ACTIONS(1135), + [anon_sym_COMMA] = ACTIONS(1137), + [anon_sym_RPAREN] = ACTIONS(1137), + [aux_sym_preproc_if_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1135), + [sym_preproc_directive] = ACTIONS(1135), + [anon_sym_LPAREN2] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1137), + [anon_sym___extension__] = ACTIONS(1135), + [anon_sym_typedef] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym___attribute__] = ACTIONS(1135), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___declspec] = ACTIONS(1135), + [anon_sym___cdecl] = ACTIONS(1135), + [anon_sym___clrcall] = ACTIONS(1135), + [anon_sym___stdcall] = ACTIONS(1135), + [anon_sym___fastcall] = ACTIONS(1135), + [anon_sym___thiscall] = ACTIONS(1135), + [anon_sym___vectorcall] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_signed] = ACTIONS(1135), + [anon_sym_unsigned] = ACTIONS(1135), + [anon_sym_long] = ACTIONS(1135), + [anon_sym_short] = ACTIONS(1135), + [anon_sym_static] = ACTIONS(1135), + [anon_sym_auto] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_inline] = ACTIONS(1135), + [anon_sym___inline] = ACTIONS(1135), + [anon_sym___inline__] = ACTIONS(1135), + [anon_sym___forceinline] = ACTIONS(1135), + [anon_sym_thread_local] = ACTIONS(1135), + [anon_sym___thread] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_constexpr] = ACTIONS(1135), + [anon_sym_volatile] = ACTIONS(1135), + [anon_sym_restrict] = ACTIONS(1135), + [anon_sym___restrict__] = ACTIONS(1135), + [anon_sym__Atomic] = ACTIONS(1135), + [anon_sym__Noreturn] = ACTIONS(1135), + [anon_sym_noreturn] = ACTIONS(1135), + [anon_sym_alignas] = ACTIONS(1135), + [anon_sym__Alignas] = ACTIONS(1135), + [sym_primitive_type] = ACTIONS(1135), + [anon_sym_enum] = ACTIONS(1135), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_union] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_switch] = ACTIONS(1135), + [anon_sym_case] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_goto] = ACTIONS(1135), + [anon_sym___try] = ACTIONS(1135), + [anon_sym___except] = ACTIONS(1135), + [anon_sym___finally] = ACTIONS(1135), + [anon_sym___leave] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_sizeof] = ACTIONS(1135), + [anon_sym___alignof__] = ACTIONS(1135), + [anon_sym___alignof] = ACTIONS(1135), + [anon_sym__alignof] = ACTIONS(1135), + [anon_sym_alignof] = ACTIONS(1135), + [anon_sym__Alignof] = ACTIONS(1135), + [anon_sym_offsetof] = ACTIONS(1135), + [anon_sym__Generic] = ACTIONS(1135), + [anon_sym_asm] = ACTIONS(1135), + [anon_sym___asm__] = ACTIONS(1135), + [sym_number_literal] = ACTIONS(1137), + [anon_sym_L_SQUOTE] = ACTIONS(1137), + [anon_sym_u_SQUOTE] = ACTIONS(1137), + [anon_sym_U_SQUOTE] = ACTIONS(1137), + [anon_sym_u8_SQUOTE] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1137), + [anon_sym_L_DQUOTE] = ACTIONS(1137), + [anon_sym_u_DQUOTE] = ACTIONS(1137), + [anon_sym_U_DQUOTE] = ACTIONS(1137), + [anon_sym_u8_DQUOTE] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym_true] = ACTIONS(1135), + [sym_false] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [anon_sym_nullptr] = ACTIONS(1135), [sym_comment] = ACTIONS(3), }, [94] = { - [sym_identifier] = ACTIONS(1172), - [aux_sym_preproc_include_token1] = ACTIONS(1172), - [aux_sym_preproc_def_token1] = ACTIONS(1172), - [aux_sym_preproc_if_token1] = ACTIONS(1172), - [aux_sym_preproc_if_token2] = ACTIONS(1172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1172), - [aux_sym_preproc_else_token1] = ACTIONS(1172), - [aux_sym_preproc_elif_token1] = ACTIONS(1172), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1172), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1172), - [sym_preproc_directive] = ACTIONS(1172), - [anon_sym_LPAREN2] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_TILDE] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym___extension__] = ACTIONS(1172), - [anon_sym_typedef] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym___attribute__] = ACTIONS(1172), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1174), - [anon_sym___declspec] = ACTIONS(1172), - [anon_sym___cdecl] = ACTIONS(1172), - [anon_sym___clrcall] = ACTIONS(1172), - [anon_sym___stdcall] = ACTIONS(1172), - [anon_sym___fastcall] = ACTIONS(1172), - [anon_sym___thiscall] = ACTIONS(1172), - [anon_sym___vectorcall] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_signed] = ACTIONS(1172), - [anon_sym_unsigned] = ACTIONS(1172), - [anon_sym_long] = ACTIONS(1172), - [anon_sym_short] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1172), - [anon_sym_auto] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_inline] = ACTIONS(1172), - [anon_sym___inline] = ACTIONS(1172), - [anon_sym___inline__] = ACTIONS(1172), - [anon_sym___forceinline] = ACTIONS(1172), - [anon_sym_thread_local] = ACTIONS(1172), - [anon_sym___thread] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_constexpr] = ACTIONS(1172), - [anon_sym_volatile] = ACTIONS(1172), - [anon_sym_restrict] = ACTIONS(1172), - [anon_sym___restrict__] = ACTIONS(1172), - [anon_sym__Atomic] = ACTIONS(1172), - [anon_sym__Noreturn] = ACTIONS(1172), - [anon_sym_noreturn] = ACTIONS(1172), - [sym_primitive_type] = ACTIONS(1172), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_struct] = ACTIONS(1172), - [anon_sym_union] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_else] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1172), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_goto] = ACTIONS(1172), - [anon_sym___try] = ACTIONS(1172), - [anon_sym___leave] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_sizeof] = ACTIONS(1172), - [anon_sym___alignof__] = ACTIONS(1172), - [anon_sym___alignof] = ACTIONS(1172), - [anon_sym__alignof] = ACTIONS(1172), - [anon_sym_alignof] = ACTIONS(1172), - [anon_sym__Alignof] = ACTIONS(1172), - [anon_sym_offsetof] = ACTIONS(1172), - [anon_sym__Generic] = ACTIONS(1172), - [anon_sym_asm] = ACTIONS(1172), - [anon_sym___asm__] = ACTIONS(1172), - [sym_number_literal] = ACTIONS(1174), - [anon_sym_L_SQUOTE] = ACTIONS(1174), - [anon_sym_u_SQUOTE] = ACTIONS(1174), - [anon_sym_U_SQUOTE] = ACTIONS(1174), - [anon_sym_u8_SQUOTE] = ACTIONS(1174), - [anon_sym_SQUOTE] = ACTIONS(1174), - [anon_sym_L_DQUOTE] = ACTIONS(1174), - [anon_sym_u_DQUOTE] = ACTIONS(1174), - [anon_sym_U_DQUOTE] = ACTIONS(1174), - [anon_sym_u8_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1174), - [sym_true] = ACTIONS(1172), - [sym_false] = ACTIONS(1172), - [anon_sym_NULL] = ACTIONS(1172), - [anon_sym_nullptr] = ACTIONS(1172), + [sym_identifier] = ACTIONS(1175), + [aux_sym_preproc_include_token1] = ACTIONS(1175), + [aux_sym_preproc_def_token1] = ACTIONS(1175), + [aux_sym_preproc_if_token1] = ACTIONS(1175), + [aux_sym_preproc_if_token2] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), + [aux_sym_preproc_else_token1] = ACTIONS(1175), + [aux_sym_preproc_elif_token1] = ACTIONS(1175), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1175), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1175), + [sym_preproc_directive] = ACTIONS(1175), + [anon_sym_LPAREN2] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1177), + [anon_sym_TILDE] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym___extension__] = ACTIONS(1175), + [anon_sym_typedef] = ACTIONS(1175), + [anon_sym_extern] = ACTIONS(1175), + [anon_sym___attribute__] = ACTIONS(1175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1177), + [anon_sym___declspec] = ACTIONS(1175), + [anon_sym___cdecl] = ACTIONS(1175), + [anon_sym___clrcall] = ACTIONS(1175), + [anon_sym___stdcall] = ACTIONS(1175), + [anon_sym___fastcall] = ACTIONS(1175), + [anon_sym___thiscall] = ACTIONS(1175), + [anon_sym___vectorcall] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_signed] = ACTIONS(1175), + [anon_sym_unsigned] = ACTIONS(1175), + [anon_sym_long] = ACTIONS(1175), + [anon_sym_short] = ACTIONS(1175), + [anon_sym_static] = ACTIONS(1175), + [anon_sym_auto] = ACTIONS(1175), + [anon_sym_register] = ACTIONS(1175), + [anon_sym_inline] = ACTIONS(1175), + [anon_sym___inline] = ACTIONS(1175), + [anon_sym___inline__] = ACTIONS(1175), + [anon_sym___forceinline] = ACTIONS(1175), + [anon_sym_thread_local] = ACTIONS(1175), + [anon_sym___thread] = ACTIONS(1175), + [anon_sym_const] = ACTIONS(1175), + [anon_sym_constexpr] = ACTIONS(1175), + [anon_sym_volatile] = ACTIONS(1175), + [anon_sym_restrict] = ACTIONS(1175), + [anon_sym___restrict__] = ACTIONS(1175), + [anon_sym__Atomic] = ACTIONS(1175), + [anon_sym__Noreturn] = ACTIONS(1175), + [anon_sym_noreturn] = ACTIONS(1175), + [anon_sym_alignas] = ACTIONS(1175), + [anon_sym__Alignas] = ACTIONS(1175), + [sym_primitive_type] = ACTIONS(1175), + [anon_sym_enum] = ACTIONS(1175), + [anon_sym_struct] = ACTIONS(1175), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_else] = ACTIONS(1175), + [anon_sym_switch] = ACTIONS(1175), + [anon_sym_case] = ACTIONS(1175), + [anon_sym_default] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_do] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1175), + [anon_sym_continue] = ACTIONS(1175), + [anon_sym_goto] = ACTIONS(1175), + [anon_sym___try] = ACTIONS(1175), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_sizeof] = ACTIONS(1175), + [anon_sym___alignof__] = ACTIONS(1175), + [anon_sym___alignof] = ACTIONS(1175), + [anon_sym__alignof] = ACTIONS(1175), + [anon_sym_alignof] = ACTIONS(1175), + [anon_sym__Alignof] = ACTIONS(1175), + [anon_sym_offsetof] = ACTIONS(1175), + [anon_sym__Generic] = ACTIONS(1175), + [anon_sym_asm] = ACTIONS(1175), + [anon_sym___asm__] = ACTIONS(1175), + [sym_number_literal] = ACTIONS(1177), + [anon_sym_L_SQUOTE] = ACTIONS(1177), + [anon_sym_u_SQUOTE] = ACTIONS(1177), + [anon_sym_U_SQUOTE] = ACTIONS(1177), + [anon_sym_u8_SQUOTE] = ACTIONS(1177), + [anon_sym_SQUOTE] = ACTIONS(1177), + [anon_sym_L_DQUOTE] = ACTIONS(1177), + [anon_sym_u_DQUOTE] = ACTIONS(1177), + [anon_sym_U_DQUOTE] = ACTIONS(1177), + [anon_sym_u8_DQUOTE] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym_true] = ACTIONS(1175), + [sym_false] = ACTIONS(1175), + [anon_sym_NULL] = ACTIONS(1175), + [anon_sym_nullptr] = ACTIONS(1175), [sym_comment] = ACTIONS(3), }, [95] = { - [sym_identifier] = ACTIONS(1176), - [aux_sym_preproc_include_token1] = ACTIONS(1176), - [aux_sym_preproc_def_token1] = ACTIONS(1176), - [aux_sym_preproc_if_token1] = ACTIONS(1176), - [aux_sym_preproc_if_token2] = ACTIONS(1176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1176), - [aux_sym_preproc_else_token1] = ACTIONS(1176), - [aux_sym_preproc_elif_token1] = ACTIONS(1176), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1176), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1176), - [sym_preproc_directive] = ACTIONS(1176), - [anon_sym_LPAREN2] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_TILDE] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1178), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym___extension__] = ACTIONS(1176), - [anon_sym_typedef] = ACTIONS(1176), - [anon_sym_extern] = ACTIONS(1176), - [anon_sym___attribute__] = ACTIONS(1176), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1178), - [anon_sym___declspec] = ACTIONS(1176), - [anon_sym___cdecl] = ACTIONS(1176), - [anon_sym___clrcall] = ACTIONS(1176), - [anon_sym___stdcall] = ACTIONS(1176), - [anon_sym___fastcall] = ACTIONS(1176), - [anon_sym___thiscall] = ACTIONS(1176), - [anon_sym___vectorcall] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_signed] = ACTIONS(1176), - [anon_sym_unsigned] = ACTIONS(1176), - [anon_sym_long] = ACTIONS(1176), - [anon_sym_short] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1176), - [anon_sym_auto] = ACTIONS(1176), - [anon_sym_register] = ACTIONS(1176), - [anon_sym_inline] = ACTIONS(1176), - [anon_sym___inline] = ACTIONS(1176), - [anon_sym___inline__] = ACTIONS(1176), - [anon_sym___forceinline] = ACTIONS(1176), - [anon_sym_thread_local] = ACTIONS(1176), - [anon_sym___thread] = ACTIONS(1176), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_constexpr] = ACTIONS(1176), - [anon_sym_volatile] = ACTIONS(1176), - [anon_sym_restrict] = ACTIONS(1176), - [anon_sym___restrict__] = ACTIONS(1176), - [anon_sym__Atomic] = ACTIONS(1176), - [anon_sym__Noreturn] = ACTIONS(1176), - [anon_sym_noreturn] = ACTIONS(1176), - [sym_primitive_type] = ACTIONS(1176), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_struct] = ACTIONS(1176), - [anon_sym_union] = ACTIONS(1176), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_else] = ACTIONS(1176), - [anon_sym_switch] = ACTIONS(1176), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_goto] = ACTIONS(1176), - [anon_sym___try] = ACTIONS(1176), - [anon_sym___leave] = ACTIONS(1176), - [anon_sym_DASH_DASH] = ACTIONS(1178), - [anon_sym_PLUS_PLUS] = ACTIONS(1178), - [anon_sym_sizeof] = ACTIONS(1176), - [anon_sym___alignof__] = ACTIONS(1176), - [anon_sym___alignof] = ACTIONS(1176), - [anon_sym__alignof] = ACTIONS(1176), - [anon_sym_alignof] = ACTIONS(1176), - [anon_sym__Alignof] = ACTIONS(1176), - [anon_sym_offsetof] = ACTIONS(1176), - [anon_sym__Generic] = ACTIONS(1176), - [anon_sym_asm] = ACTIONS(1176), - [anon_sym___asm__] = ACTIONS(1176), - [sym_number_literal] = ACTIONS(1178), - [anon_sym_L_SQUOTE] = ACTIONS(1178), - [anon_sym_u_SQUOTE] = ACTIONS(1178), - [anon_sym_U_SQUOTE] = ACTIONS(1178), - [anon_sym_u8_SQUOTE] = ACTIONS(1178), - [anon_sym_SQUOTE] = ACTIONS(1178), - [anon_sym_L_DQUOTE] = ACTIONS(1178), - [anon_sym_u_DQUOTE] = ACTIONS(1178), - [anon_sym_U_DQUOTE] = ACTIONS(1178), - [anon_sym_u8_DQUOTE] = ACTIONS(1178), - [anon_sym_DQUOTE] = ACTIONS(1178), - [sym_true] = ACTIONS(1176), - [sym_false] = ACTIONS(1176), - [anon_sym_NULL] = ACTIONS(1176), - [anon_sym_nullptr] = ACTIONS(1176), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [aux_sym_preproc_else_token1] = ACTIONS(1123), + [aux_sym_preproc_elif_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [96] = { - [sym_identifier] = ACTIONS(1180), - [aux_sym_preproc_include_token1] = ACTIONS(1180), - [aux_sym_preproc_def_token1] = ACTIONS(1180), - [aux_sym_preproc_if_token1] = ACTIONS(1180), - [aux_sym_preproc_if_token2] = ACTIONS(1180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1180), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1180), - [aux_sym_preproc_else_token1] = ACTIONS(1180), - [aux_sym_preproc_elif_token1] = ACTIONS(1180), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1180), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1180), - [sym_preproc_directive] = ACTIONS(1180), - [anon_sym_LPAREN2] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1182), - [anon_sym_TILDE] = ACTIONS(1182), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_STAR] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1182), - [anon_sym_SEMI] = ACTIONS(1182), - [anon_sym___extension__] = ACTIONS(1180), - [anon_sym_typedef] = ACTIONS(1180), - [anon_sym_extern] = ACTIONS(1180), - [anon_sym___attribute__] = ACTIONS(1180), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1182), - [anon_sym___declspec] = ACTIONS(1180), - [anon_sym___cdecl] = ACTIONS(1180), - [anon_sym___clrcall] = ACTIONS(1180), - [anon_sym___stdcall] = ACTIONS(1180), - [anon_sym___fastcall] = ACTIONS(1180), - [anon_sym___thiscall] = ACTIONS(1180), - [anon_sym___vectorcall] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_signed] = ACTIONS(1180), - [anon_sym_unsigned] = ACTIONS(1180), - [anon_sym_long] = ACTIONS(1180), - [anon_sym_short] = ACTIONS(1180), - [anon_sym_static] = ACTIONS(1180), - [anon_sym_auto] = ACTIONS(1180), - [anon_sym_register] = ACTIONS(1180), - [anon_sym_inline] = ACTIONS(1180), - [anon_sym___inline] = ACTIONS(1180), - [anon_sym___inline__] = ACTIONS(1180), - [anon_sym___forceinline] = ACTIONS(1180), - [anon_sym_thread_local] = ACTIONS(1180), - [anon_sym___thread] = ACTIONS(1180), - [anon_sym_const] = ACTIONS(1180), - [anon_sym_constexpr] = ACTIONS(1180), - [anon_sym_volatile] = ACTIONS(1180), - [anon_sym_restrict] = ACTIONS(1180), - [anon_sym___restrict__] = ACTIONS(1180), - [anon_sym__Atomic] = ACTIONS(1180), - [anon_sym__Noreturn] = ACTIONS(1180), - [anon_sym_noreturn] = ACTIONS(1180), - [sym_primitive_type] = ACTIONS(1180), - [anon_sym_enum] = ACTIONS(1180), - [anon_sym_struct] = ACTIONS(1180), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_else] = ACTIONS(1180), - [anon_sym_switch] = ACTIONS(1180), - [anon_sym_case] = ACTIONS(1180), - [anon_sym_default] = ACTIONS(1180), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1180), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_break] = ACTIONS(1180), - [anon_sym_continue] = ACTIONS(1180), - [anon_sym_goto] = ACTIONS(1180), - [anon_sym___try] = ACTIONS(1180), - [anon_sym___leave] = ACTIONS(1180), - [anon_sym_DASH_DASH] = ACTIONS(1182), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_sizeof] = ACTIONS(1180), - [anon_sym___alignof__] = ACTIONS(1180), - [anon_sym___alignof] = ACTIONS(1180), - [anon_sym__alignof] = ACTIONS(1180), - [anon_sym_alignof] = ACTIONS(1180), - [anon_sym__Alignof] = ACTIONS(1180), - [anon_sym_offsetof] = ACTIONS(1180), - [anon_sym__Generic] = ACTIONS(1180), - [anon_sym_asm] = ACTIONS(1180), - [anon_sym___asm__] = ACTIONS(1180), - [sym_number_literal] = ACTIONS(1182), - [anon_sym_L_SQUOTE] = ACTIONS(1182), - [anon_sym_u_SQUOTE] = ACTIONS(1182), - [anon_sym_U_SQUOTE] = ACTIONS(1182), - [anon_sym_u8_SQUOTE] = ACTIONS(1182), - [anon_sym_SQUOTE] = ACTIONS(1182), - [anon_sym_L_DQUOTE] = ACTIONS(1182), - [anon_sym_u_DQUOTE] = ACTIONS(1182), - [anon_sym_U_DQUOTE] = ACTIONS(1182), - [anon_sym_u8_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1182), - [sym_true] = ACTIONS(1180), - [sym_false] = ACTIONS(1180), - [anon_sym_NULL] = ACTIONS(1180), - [anon_sym_nullptr] = ACTIONS(1180), + [sym_identifier] = ACTIONS(1179), + [aux_sym_preproc_include_token1] = ACTIONS(1179), + [aux_sym_preproc_def_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token2] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), + [aux_sym_preproc_else_token1] = ACTIONS(1179), + [aux_sym_preproc_elif_token1] = ACTIONS(1179), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1179), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1179), + [sym_preproc_directive] = ACTIONS(1179), + [anon_sym_LPAREN2] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym___extension__] = ACTIONS(1179), + [anon_sym_typedef] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym___attribute__] = ACTIONS(1179), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym___declspec] = ACTIONS(1179), + [anon_sym___cdecl] = ACTIONS(1179), + [anon_sym___clrcall] = ACTIONS(1179), + [anon_sym___stdcall] = ACTIONS(1179), + [anon_sym___fastcall] = ACTIONS(1179), + [anon_sym___thiscall] = ACTIONS(1179), + [anon_sym___vectorcall] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_signed] = ACTIONS(1179), + [anon_sym_unsigned] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_auto] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_inline] = ACTIONS(1179), + [anon_sym___inline] = ACTIONS(1179), + [anon_sym___inline__] = ACTIONS(1179), + [anon_sym___forceinline] = ACTIONS(1179), + [anon_sym_thread_local] = ACTIONS(1179), + [anon_sym___thread] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_constexpr] = ACTIONS(1179), + [anon_sym_volatile] = ACTIONS(1179), + [anon_sym_restrict] = ACTIONS(1179), + [anon_sym___restrict__] = ACTIONS(1179), + [anon_sym__Atomic] = ACTIONS(1179), + [anon_sym__Noreturn] = ACTIONS(1179), + [anon_sym_noreturn] = ACTIONS(1179), + [anon_sym_alignas] = ACTIONS(1179), + [anon_sym__Alignas] = ACTIONS(1179), + [sym_primitive_type] = ACTIONS(1179), + [anon_sym_enum] = ACTIONS(1179), + [anon_sym_struct] = ACTIONS(1179), + [anon_sym_union] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_case] = ACTIONS(1179), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_goto] = ACTIONS(1179), + [anon_sym___try] = ACTIONS(1179), + [anon_sym___leave] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_sizeof] = ACTIONS(1179), + [anon_sym___alignof__] = ACTIONS(1179), + [anon_sym___alignof] = ACTIONS(1179), + [anon_sym__alignof] = ACTIONS(1179), + [anon_sym_alignof] = ACTIONS(1179), + [anon_sym__Alignof] = ACTIONS(1179), + [anon_sym_offsetof] = ACTIONS(1179), + [anon_sym__Generic] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym___asm__] = ACTIONS(1179), + [sym_number_literal] = ACTIONS(1181), + [anon_sym_L_SQUOTE] = ACTIONS(1181), + [anon_sym_u_SQUOTE] = ACTIONS(1181), + [anon_sym_U_SQUOTE] = ACTIONS(1181), + [anon_sym_u8_SQUOTE] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_L_DQUOTE] = ACTIONS(1181), + [anon_sym_u_DQUOTE] = ACTIONS(1181), + [anon_sym_U_DQUOTE] = ACTIONS(1181), + [anon_sym_u8_DQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym_true] = ACTIONS(1179), + [sym_false] = ACTIONS(1179), + [anon_sym_NULL] = ACTIONS(1179), + [anon_sym_nullptr] = ACTIONS(1179), [sym_comment] = ACTIONS(3), }, [97] = { - [sym_identifier] = ACTIONS(1184), - [aux_sym_preproc_include_token1] = ACTIONS(1184), - [aux_sym_preproc_def_token1] = ACTIONS(1184), - [aux_sym_preproc_if_token1] = ACTIONS(1184), - [aux_sym_preproc_if_token2] = ACTIONS(1184), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1184), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1184), - [aux_sym_preproc_else_token1] = ACTIONS(1184), - [aux_sym_preproc_elif_token1] = ACTIONS(1184), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1184), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1184), - [sym_preproc_directive] = ACTIONS(1184), - [anon_sym_LPAREN2] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym___extension__] = ACTIONS(1184), - [anon_sym_typedef] = ACTIONS(1184), - [anon_sym_extern] = ACTIONS(1184), - [anon_sym___attribute__] = ACTIONS(1184), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1186), - [anon_sym___declspec] = ACTIONS(1184), - [anon_sym___cdecl] = ACTIONS(1184), - [anon_sym___clrcall] = ACTIONS(1184), - [anon_sym___stdcall] = ACTIONS(1184), - [anon_sym___fastcall] = ACTIONS(1184), - [anon_sym___thiscall] = ACTIONS(1184), - [anon_sym___vectorcall] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_signed] = ACTIONS(1184), - [anon_sym_unsigned] = ACTIONS(1184), - [anon_sym_long] = ACTIONS(1184), - [anon_sym_short] = ACTIONS(1184), - [anon_sym_static] = ACTIONS(1184), - [anon_sym_auto] = ACTIONS(1184), - [anon_sym_register] = ACTIONS(1184), - [anon_sym_inline] = ACTIONS(1184), - [anon_sym___inline] = ACTIONS(1184), - [anon_sym___inline__] = ACTIONS(1184), - [anon_sym___forceinline] = ACTIONS(1184), - [anon_sym_thread_local] = ACTIONS(1184), - [anon_sym___thread] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1184), - [anon_sym_constexpr] = ACTIONS(1184), - [anon_sym_volatile] = ACTIONS(1184), - [anon_sym_restrict] = ACTIONS(1184), - [anon_sym___restrict__] = ACTIONS(1184), - [anon_sym__Atomic] = ACTIONS(1184), - [anon_sym__Noreturn] = ACTIONS(1184), - [anon_sym_noreturn] = ACTIONS(1184), - [sym_primitive_type] = ACTIONS(1184), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_struct] = ACTIONS(1184), - [anon_sym_union] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_else] = ACTIONS(1184), - [anon_sym_switch] = ACTIONS(1184), - [anon_sym_case] = ACTIONS(1184), - [anon_sym_default] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_do] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_goto] = ACTIONS(1184), - [anon_sym___try] = ACTIONS(1184), - [anon_sym___leave] = ACTIONS(1184), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_sizeof] = ACTIONS(1184), - [anon_sym___alignof__] = ACTIONS(1184), - [anon_sym___alignof] = ACTIONS(1184), - [anon_sym__alignof] = ACTIONS(1184), - [anon_sym_alignof] = ACTIONS(1184), - [anon_sym__Alignof] = ACTIONS(1184), - [anon_sym_offsetof] = ACTIONS(1184), - [anon_sym__Generic] = ACTIONS(1184), - [anon_sym_asm] = ACTIONS(1184), - [anon_sym___asm__] = ACTIONS(1184), - [sym_number_literal] = ACTIONS(1186), - [anon_sym_L_SQUOTE] = ACTIONS(1186), - [anon_sym_u_SQUOTE] = ACTIONS(1186), - [anon_sym_U_SQUOTE] = ACTIONS(1186), - [anon_sym_u8_SQUOTE] = ACTIONS(1186), - [anon_sym_SQUOTE] = ACTIONS(1186), - [anon_sym_L_DQUOTE] = ACTIONS(1186), - [anon_sym_u_DQUOTE] = ACTIONS(1186), - [anon_sym_U_DQUOTE] = ACTIONS(1186), - [anon_sym_u8_DQUOTE] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym_true] = ACTIONS(1184), - [sym_false] = ACTIONS(1184), - [anon_sym_NULL] = ACTIONS(1184), - [anon_sym_nullptr] = ACTIONS(1184), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [aux_sym_preproc_else_token1] = ACTIONS(1123), + [aux_sym_preproc_elif_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [98] = { - [sym_identifier] = ACTIONS(1188), - [aux_sym_preproc_include_token1] = ACTIONS(1188), - [aux_sym_preproc_def_token1] = ACTIONS(1188), - [aux_sym_preproc_if_token1] = ACTIONS(1188), - [aux_sym_preproc_if_token2] = ACTIONS(1188), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1188), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1188), - [aux_sym_preproc_else_token1] = ACTIONS(1188), - [aux_sym_preproc_elif_token1] = ACTIONS(1188), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1188), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1188), - [sym_preproc_directive] = ACTIONS(1188), - [anon_sym_LPAREN2] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_TILDE] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym___extension__] = ACTIONS(1188), - [anon_sym_typedef] = ACTIONS(1188), - [anon_sym_extern] = ACTIONS(1188), - [anon_sym___attribute__] = ACTIONS(1188), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1190), - [anon_sym___declspec] = ACTIONS(1188), - [anon_sym___cdecl] = ACTIONS(1188), - [anon_sym___clrcall] = ACTIONS(1188), - [anon_sym___stdcall] = ACTIONS(1188), - [anon_sym___fastcall] = ACTIONS(1188), - [anon_sym___thiscall] = ACTIONS(1188), - [anon_sym___vectorcall] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_signed] = ACTIONS(1188), - [anon_sym_unsigned] = ACTIONS(1188), - [anon_sym_long] = ACTIONS(1188), - [anon_sym_short] = ACTIONS(1188), - [anon_sym_static] = ACTIONS(1188), - [anon_sym_auto] = ACTIONS(1188), - [anon_sym_register] = ACTIONS(1188), - [anon_sym_inline] = ACTIONS(1188), - [anon_sym___inline] = ACTIONS(1188), - [anon_sym___inline__] = ACTIONS(1188), - [anon_sym___forceinline] = ACTIONS(1188), - [anon_sym_thread_local] = ACTIONS(1188), - [anon_sym___thread] = ACTIONS(1188), - [anon_sym_const] = ACTIONS(1188), - [anon_sym_constexpr] = ACTIONS(1188), - [anon_sym_volatile] = ACTIONS(1188), - [anon_sym_restrict] = ACTIONS(1188), - [anon_sym___restrict__] = ACTIONS(1188), - [anon_sym__Atomic] = ACTIONS(1188), - [anon_sym__Noreturn] = ACTIONS(1188), - [anon_sym_noreturn] = ACTIONS(1188), - [sym_primitive_type] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1188), - [anon_sym_struct] = ACTIONS(1188), - [anon_sym_union] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1188), - [anon_sym_else] = ACTIONS(1188), - [anon_sym_switch] = ACTIONS(1188), - [anon_sym_case] = ACTIONS(1188), - [anon_sym_default] = ACTIONS(1188), - [anon_sym_while] = ACTIONS(1188), - [anon_sym_do] = ACTIONS(1188), - [anon_sym_for] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1188), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1188), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1188), - [anon_sym___leave] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_sizeof] = ACTIONS(1188), - [anon_sym___alignof__] = ACTIONS(1188), - [anon_sym___alignof] = ACTIONS(1188), - [anon_sym__alignof] = ACTIONS(1188), - [anon_sym_alignof] = ACTIONS(1188), - [anon_sym__Alignof] = ACTIONS(1188), - [anon_sym_offsetof] = ACTIONS(1188), - [anon_sym__Generic] = ACTIONS(1188), - [anon_sym_asm] = ACTIONS(1188), - [anon_sym___asm__] = ACTIONS(1188), - [sym_number_literal] = ACTIONS(1190), - [anon_sym_L_SQUOTE] = ACTIONS(1190), - [anon_sym_u_SQUOTE] = ACTIONS(1190), - [anon_sym_U_SQUOTE] = ACTIONS(1190), - [anon_sym_u8_SQUOTE] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_L_DQUOTE] = ACTIONS(1190), - [anon_sym_u_DQUOTE] = ACTIONS(1190), - [anon_sym_U_DQUOTE] = ACTIONS(1190), - [anon_sym_u8_DQUOTE] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym_true] = ACTIONS(1188), - [sym_false] = ACTIONS(1188), - [anon_sym_NULL] = ACTIONS(1188), - [anon_sym_nullptr] = ACTIONS(1188), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [aux_sym_preproc_else_token1] = ACTIONS(1123), + [aux_sym_preproc_elif_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [99] = { - [sym_identifier] = ACTIONS(1192), - [aux_sym_preproc_include_token1] = ACTIONS(1192), - [aux_sym_preproc_def_token1] = ACTIONS(1192), - [aux_sym_preproc_if_token1] = ACTIONS(1192), - [aux_sym_preproc_if_token2] = ACTIONS(1192), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1192), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1192), - [aux_sym_preproc_else_token1] = ACTIONS(1192), - [aux_sym_preproc_elif_token1] = ACTIONS(1192), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1192), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1192), - [sym_preproc_directive] = ACTIONS(1192), - [anon_sym_LPAREN2] = ACTIONS(1194), - [anon_sym_BANG] = ACTIONS(1194), - [anon_sym_TILDE] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym___extension__] = ACTIONS(1192), - [anon_sym_typedef] = ACTIONS(1192), - [anon_sym_extern] = ACTIONS(1192), - [anon_sym___attribute__] = ACTIONS(1192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1194), - [anon_sym___declspec] = ACTIONS(1192), - [anon_sym___cdecl] = ACTIONS(1192), - [anon_sym___clrcall] = ACTIONS(1192), - [anon_sym___stdcall] = ACTIONS(1192), - [anon_sym___fastcall] = ACTIONS(1192), - [anon_sym___thiscall] = ACTIONS(1192), - [anon_sym___vectorcall] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_signed] = ACTIONS(1192), - [anon_sym_unsigned] = ACTIONS(1192), - [anon_sym_long] = ACTIONS(1192), - [anon_sym_short] = ACTIONS(1192), - [anon_sym_static] = ACTIONS(1192), - [anon_sym_auto] = ACTIONS(1192), - [anon_sym_register] = ACTIONS(1192), - [anon_sym_inline] = ACTIONS(1192), - [anon_sym___inline] = ACTIONS(1192), - [anon_sym___inline__] = ACTIONS(1192), - [anon_sym___forceinline] = ACTIONS(1192), - [anon_sym_thread_local] = ACTIONS(1192), - [anon_sym___thread] = ACTIONS(1192), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_constexpr] = ACTIONS(1192), - [anon_sym_volatile] = ACTIONS(1192), - [anon_sym_restrict] = ACTIONS(1192), - [anon_sym___restrict__] = ACTIONS(1192), - [anon_sym__Atomic] = ACTIONS(1192), - [anon_sym__Noreturn] = ACTIONS(1192), - [anon_sym_noreturn] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(1192), - [anon_sym_enum] = ACTIONS(1192), - [anon_sym_struct] = ACTIONS(1192), - [anon_sym_union] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1192), - [anon_sym_else] = ACTIONS(1192), - [anon_sym_switch] = ACTIONS(1192), - [anon_sym_case] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(1192), - [anon_sym_while] = ACTIONS(1192), - [anon_sym_do] = ACTIONS(1192), - [anon_sym_for] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1192), - [anon_sym_break] = ACTIONS(1192), - [anon_sym_continue] = ACTIONS(1192), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym___try] = ACTIONS(1192), - [anon_sym___leave] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_sizeof] = ACTIONS(1192), - [anon_sym___alignof__] = ACTIONS(1192), - [anon_sym___alignof] = ACTIONS(1192), - [anon_sym__alignof] = ACTIONS(1192), - [anon_sym_alignof] = ACTIONS(1192), - [anon_sym__Alignof] = ACTIONS(1192), - [anon_sym_offsetof] = ACTIONS(1192), - [anon_sym__Generic] = ACTIONS(1192), - [anon_sym_asm] = ACTIONS(1192), - [anon_sym___asm__] = ACTIONS(1192), - [sym_number_literal] = ACTIONS(1194), - [anon_sym_L_SQUOTE] = ACTIONS(1194), - [anon_sym_u_SQUOTE] = ACTIONS(1194), - [anon_sym_U_SQUOTE] = ACTIONS(1194), - [anon_sym_u8_SQUOTE] = ACTIONS(1194), - [anon_sym_SQUOTE] = ACTIONS(1194), - [anon_sym_L_DQUOTE] = ACTIONS(1194), - [anon_sym_u_DQUOTE] = ACTIONS(1194), - [anon_sym_U_DQUOTE] = ACTIONS(1194), - [anon_sym_u8_DQUOTE] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym_true] = ACTIONS(1192), - [sym_false] = ACTIONS(1192), - [anon_sym_NULL] = ACTIONS(1192), - [anon_sym_nullptr] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1183), + [aux_sym_preproc_include_token1] = ACTIONS(1183), + [aux_sym_preproc_def_token1] = ACTIONS(1183), + [aux_sym_preproc_if_token1] = ACTIONS(1183), + [aux_sym_preproc_if_token2] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), + [aux_sym_preproc_else_token1] = ACTIONS(1183), + [aux_sym_preproc_elif_token1] = ACTIONS(1183), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1183), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1183), + [sym_preproc_directive] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym___extension__] = ACTIONS(1183), + [anon_sym_typedef] = ACTIONS(1183), + [anon_sym_extern] = ACTIONS(1183), + [anon_sym___attribute__] = ACTIONS(1183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), + [anon_sym___declspec] = ACTIONS(1183), + [anon_sym___cdecl] = ACTIONS(1183), + [anon_sym___clrcall] = ACTIONS(1183), + [anon_sym___stdcall] = ACTIONS(1183), + [anon_sym___fastcall] = ACTIONS(1183), + [anon_sym___thiscall] = ACTIONS(1183), + [anon_sym___vectorcall] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_signed] = ACTIONS(1183), + [anon_sym_unsigned] = ACTIONS(1183), + [anon_sym_long] = ACTIONS(1183), + [anon_sym_short] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1183), + [anon_sym_auto] = ACTIONS(1183), + [anon_sym_register] = ACTIONS(1183), + [anon_sym_inline] = ACTIONS(1183), + [anon_sym___inline] = ACTIONS(1183), + [anon_sym___inline__] = ACTIONS(1183), + [anon_sym___forceinline] = ACTIONS(1183), + [anon_sym_thread_local] = ACTIONS(1183), + [anon_sym___thread] = ACTIONS(1183), + [anon_sym_const] = ACTIONS(1183), + [anon_sym_constexpr] = ACTIONS(1183), + [anon_sym_volatile] = ACTIONS(1183), + [anon_sym_restrict] = ACTIONS(1183), + [anon_sym___restrict__] = ACTIONS(1183), + [anon_sym__Atomic] = ACTIONS(1183), + [anon_sym__Noreturn] = ACTIONS(1183), + [anon_sym_noreturn] = ACTIONS(1183), + [anon_sym_alignas] = ACTIONS(1183), + [anon_sym__Alignas] = ACTIONS(1183), + [sym_primitive_type] = ACTIONS(1183), + [anon_sym_enum] = ACTIONS(1183), + [anon_sym_struct] = ACTIONS(1183), + [anon_sym_union] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_else] = ACTIONS(1183), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1183), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(1183), + [anon_sym_for] = ACTIONS(1183), + [anon_sym_return] = ACTIONS(1183), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym___try] = ACTIONS(1183), + [anon_sym___leave] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_sizeof] = ACTIONS(1183), + [anon_sym___alignof__] = ACTIONS(1183), + [anon_sym___alignof] = ACTIONS(1183), + [anon_sym__alignof] = ACTIONS(1183), + [anon_sym_alignof] = ACTIONS(1183), + [anon_sym__Alignof] = ACTIONS(1183), + [anon_sym_offsetof] = ACTIONS(1183), + [anon_sym__Generic] = ACTIONS(1183), + [anon_sym_asm] = ACTIONS(1183), + [anon_sym___asm__] = ACTIONS(1183), + [sym_number_literal] = ACTIONS(1185), + [anon_sym_L_SQUOTE] = ACTIONS(1185), + [anon_sym_u_SQUOTE] = ACTIONS(1185), + [anon_sym_U_SQUOTE] = ACTIONS(1185), + [anon_sym_u8_SQUOTE] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_L_DQUOTE] = ACTIONS(1185), + [anon_sym_u_DQUOTE] = ACTIONS(1185), + [anon_sym_U_DQUOTE] = ACTIONS(1185), + [anon_sym_u8_DQUOTE] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym_true] = ACTIONS(1183), + [sym_false] = ACTIONS(1183), + [anon_sym_NULL] = ACTIONS(1183), + [anon_sym_nullptr] = ACTIONS(1183), [sym_comment] = ACTIONS(3), }, [100] = { - [sym_identifier] = ACTIONS(1176), - [aux_sym_preproc_include_token1] = ACTIONS(1176), - [aux_sym_preproc_def_token1] = ACTIONS(1176), - [aux_sym_preproc_if_token1] = ACTIONS(1176), - [aux_sym_preproc_if_token2] = ACTIONS(1176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1176), - [aux_sym_preproc_else_token1] = ACTIONS(1176), - [aux_sym_preproc_elif_token1] = ACTIONS(1176), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1176), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1176), - [sym_preproc_directive] = ACTIONS(1176), - [anon_sym_LPAREN2] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_TILDE] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1178), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym___extension__] = ACTIONS(1176), - [anon_sym_typedef] = ACTIONS(1176), - [anon_sym_extern] = ACTIONS(1176), - [anon_sym___attribute__] = ACTIONS(1176), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1178), - [anon_sym___declspec] = ACTIONS(1176), - [anon_sym___cdecl] = ACTIONS(1176), - [anon_sym___clrcall] = ACTIONS(1176), - [anon_sym___stdcall] = ACTIONS(1176), - [anon_sym___fastcall] = ACTIONS(1176), - [anon_sym___thiscall] = ACTIONS(1176), - [anon_sym___vectorcall] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_signed] = ACTIONS(1176), - [anon_sym_unsigned] = ACTIONS(1176), - [anon_sym_long] = ACTIONS(1176), - [anon_sym_short] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1176), - [anon_sym_auto] = ACTIONS(1176), - [anon_sym_register] = ACTIONS(1176), - [anon_sym_inline] = ACTIONS(1176), - [anon_sym___inline] = ACTIONS(1176), - [anon_sym___inline__] = ACTIONS(1176), - [anon_sym___forceinline] = ACTIONS(1176), - [anon_sym_thread_local] = ACTIONS(1176), - [anon_sym___thread] = ACTIONS(1176), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_constexpr] = ACTIONS(1176), - [anon_sym_volatile] = ACTIONS(1176), - [anon_sym_restrict] = ACTIONS(1176), - [anon_sym___restrict__] = ACTIONS(1176), - [anon_sym__Atomic] = ACTIONS(1176), - [anon_sym__Noreturn] = ACTIONS(1176), - [anon_sym_noreturn] = ACTIONS(1176), - [sym_primitive_type] = ACTIONS(1176), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_struct] = ACTIONS(1176), - [anon_sym_union] = ACTIONS(1176), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_else] = ACTIONS(1176), - [anon_sym_switch] = ACTIONS(1176), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_goto] = ACTIONS(1176), - [anon_sym___try] = ACTIONS(1176), - [anon_sym___leave] = ACTIONS(1176), - [anon_sym_DASH_DASH] = ACTIONS(1178), - [anon_sym_PLUS_PLUS] = ACTIONS(1178), - [anon_sym_sizeof] = ACTIONS(1176), - [anon_sym___alignof__] = ACTIONS(1176), - [anon_sym___alignof] = ACTIONS(1176), - [anon_sym__alignof] = ACTIONS(1176), - [anon_sym_alignof] = ACTIONS(1176), - [anon_sym__Alignof] = ACTIONS(1176), - [anon_sym_offsetof] = ACTIONS(1176), - [anon_sym__Generic] = ACTIONS(1176), - [anon_sym_asm] = ACTIONS(1176), - [anon_sym___asm__] = ACTIONS(1176), - [sym_number_literal] = ACTIONS(1178), - [anon_sym_L_SQUOTE] = ACTIONS(1178), - [anon_sym_u_SQUOTE] = ACTIONS(1178), - [anon_sym_U_SQUOTE] = ACTIONS(1178), - [anon_sym_u8_SQUOTE] = ACTIONS(1178), - [anon_sym_SQUOTE] = ACTIONS(1178), - [anon_sym_L_DQUOTE] = ACTIONS(1178), - [anon_sym_u_DQUOTE] = ACTIONS(1178), - [anon_sym_U_DQUOTE] = ACTIONS(1178), - [anon_sym_u8_DQUOTE] = ACTIONS(1178), - [anon_sym_DQUOTE] = ACTIONS(1178), - [sym_true] = ACTIONS(1176), - [sym_false] = ACTIONS(1176), - [anon_sym_NULL] = ACTIONS(1176), - [anon_sym_nullptr] = ACTIONS(1176), + [sym_identifier] = ACTIONS(1187), + [aux_sym_preproc_include_token1] = ACTIONS(1187), + [aux_sym_preproc_def_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token2] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), + [aux_sym_preproc_else_token1] = ACTIONS(1187), + [aux_sym_preproc_elif_token1] = ACTIONS(1187), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1187), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1187), + [sym_preproc_directive] = ACTIONS(1187), + [anon_sym_LPAREN2] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym___extension__] = ACTIONS(1187), + [anon_sym_typedef] = ACTIONS(1187), + [anon_sym_extern] = ACTIONS(1187), + [anon_sym___attribute__] = ACTIONS(1187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), + [anon_sym___declspec] = ACTIONS(1187), + [anon_sym___cdecl] = ACTIONS(1187), + [anon_sym___clrcall] = ACTIONS(1187), + [anon_sym___stdcall] = ACTIONS(1187), + [anon_sym___fastcall] = ACTIONS(1187), + [anon_sym___thiscall] = ACTIONS(1187), + [anon_sym___vectorcall] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_signed] = ACTIONS(1187), + [anon_sym_unsigned] = ACTIONS(1187), + [anon_sym_long] = ACTIONS(1187), + [anon_sym_short] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1187), + [anon_sym_auto] = ACTIONS(1187), + [anon_sym_register] = ACTIONS(1187), + [anon_sym_inline] = ACTIONS(1187), + [anon_sym___inline] = ACTIONS(1187), + [anon_sym___inline__] = ACTIONS(1187), + [anon_sym___forceinline] = ACTIONS(1187), + [anon_sym_thread_local] = ACTIONS(1187), + [anon_sym___thread] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_constexpr] = ACTIONS(1187), + [anon_sym_volatile] = ACTIONS(1187), + [anon_sym_restrict] = ACTIONS(1187), + [anon_sym___restrict__] = ACTIONS(1187), + [anon_sym__Atomic] = ACTIONS(1187), + [anon_sym__Noreturn] = ACTIONS(1187), + [anon_sym_noreturn] = ACTIONS(1187), + [anon_sym_alignas] = ACTIONS(1187), + [anon_sym__Alignas] = ACTIONS(1187), + [sym_primitive_type] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_union] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_switch] = ACTIONS(1187), + [anon_sym_case] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_goto] = ACTIONS(1187), + [anon_sym___try] = ACTIONS(1187), + [anon_sym___leave] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1187), + [anon_sym___alignof__] = ACTIONS(1187), + [anon_sym___alignof] = ACTIONS(1187), + [anon_sym__alignof] = ACTIONS(1187), + [anon_sym_alignof] = ACTIONS(1187), + [anon_sym__Alignof] = ACTIONS(1187), + [anon_sym_offsetof] = ACTIONS(1187), + [anon_sym__Generic] = ACTIONS(1187), + [anon_sym_asm] = ACTIONS(1187), + [anon_sym___asm__] = ACTIONS(1187), + [sym_number_literal] = ACTIONS(1189), + [anon_sym_L_SQUOTE] = ACTIONS(1189), + [anon_sym_u_SQUOTE] = ACTIONS(1189), + [anon_sym_U_SQUOTE] = ACTIONS(1189), + [anon_sym_u8_SQUOTE] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_L_DQUOTE] = ACTIONS(1189), + [anon_sym_u_DQUOTE] = ACTIONS(1189), + [anon_sym_U_DQUOTE] = ACTIONS(1189), + [anon_sym_u8_DQUOTE] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [sym_true] = ACTIONS(1187), + [sym_false] = ACTIONS(1187), + [anon_sym_NULL] = ACTIONS(1187), + [anon_sym_nullptr] = ACTIONS(1187), [sym_comment] = ACTIONS(3), }, [101] = { - [sym_identifier] = ACTIONS(1196), - [aux_sym_preproc_include_token1] = ACTIONS(1196), - [aux_sym_preproc_def_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token2] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), - [aux_sym_preproc_else_token1] = ACTIONS(1196), - [aux_sym_preproc_elif_token1] = ACTIONS(1196), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1196), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1196), - [sym_preproc_directive] = ACTIONS(1196), - [anon_sym_LPAREN2] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym___extension__] = ACTIONS(1196), - [anon_sym_typedef] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym___attribute__] = ACTIONS(1196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), - [anon_sym___declspec] = ACTIONS(1196), - [anon_sym___cdecl] = ACTIONS(1196), - [anon_sym___clrcall] = ACTIONS(1196), - [anon_sym___stdcall] = ACTIONS(1196), - [anon_sym___fastcall] = ACTIONS(1196), - [anon_sym___thiscall] = ACTIONS(1196), - [anon_sym___vectorcall] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_auto] = ACTIONS(1196), - [anon_sym_register] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym___inline] = ACTIONS(1196), - [anon_sym___inline__] = ACTIONS(1196), - [anon_sym___forceinline] = ACTIONS(1196), - [anon_sym_thread_local] = ACTIONS(1196), - [anon_sym___thread] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_constexpr] = ACTIONS(1196), - [anon_sym_volatile] = ACTIONS(1196), - [anon_sym_restrict] = ACTIONS(1196), - [anon_sym___restrict__] = ACTIONS(1196), - [anon_sym__Atomic] = ACTIONS(1196), - [anon_sym__Noreturn] = ACTIONS(1196), - [anon_sym_noreturn] = ACTIONS(1196), - [sym_primitive_type] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_case] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_goto] = ACTIONS(1196), - [anon_sym___try] = ACTIONS(1196), - [anon_sym___leave] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_sizeof] = ACTIONS(1196), - [anon_sym___alignof__] = ACTIONS(1196), - [anon_sym___alignof] = ACTIONS(1196), - [anon_sym__alignof] = ACTIONS(1196), - [anon_sym_alignof] = ACTIONS(1196), - [anon_sym__Alignof] = ACTIONS(1196), - [anon_sym_offsetof] = ACTIONS(1196), - [anon_sym__Generic] = ACTIONS(1196), - [anon_sym_asm] = ACTIONS(1196), - [anon_sym___asm__] = ACTIONS(1196), - [sym_number_literal] = ACTIONS(1198), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1198), - [anon_sym_u_DQUOTE] = ACTIONS(1198), - [anon_sym_U_DQUOTE] = ACTIONS(1198), - [anon_sym_u8_DQUOTE] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_true] = ACTIONS(1196), - [sym_false] = ACTIONS(1196), - [anon_sym_NULL] = ACTIONS(1196), - [anon_sym_nullptr] = ACTIONS(1196), + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token2] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [aux_sym_preproc_else_token1] = ACTIONS(1191), + [aux_sym_preproc_elif_token1] = ACTIONS(1191), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, [102] = { - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token2] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [aux_sym_preproc_else_token1] = ACTIONS(1200), - [aux_sym_preproc_elif_token1] = ACTIONS(1200), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym___extension__] = ACTIONS(1200), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym___inline] = ACTIONS(1200), - [anon_sym___inline__] = ACTIONS(1200), - [anon_sym___forceinline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym___thread] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym___try] = ACTIONS(1200), - [anon_sym___leave] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym___alignof__] = ACTIONS(1200), - [anon_sym___alignof] = ACTIONS(1200), - [anon_sym__alignof] = ACTIONS(1200), - [anon_sym_alignof] = ACTIONS(1200), - [anon_sym__Alignof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [aux_sym_preproc_else_token1] = ACTIONS(1123), + [aux_sym_preproc_elif_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [103] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1116), - [aux_sym_preproc_elif_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token2] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [aux_sym_preproc_else_token1] = ACTIONS(1195), + [aux_sym_preproc_elif_token1] = ACTIONS(1195), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1195), + [sym_preproc_directive] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym___extension__] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [anon_sym___inline] = ACTIONS(1195), + [anon_sym___inline__] = ACTIONS(1195), + [anon_sym___forceinline] = ACTIONS(1195), + [anon_sym_thread_local] = ACTIONS(1195), + [anon_sym___thread] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_constexpr] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym___restrict__] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym__Noreturn] = ACTIONS(1195), + [anon_sym_noreturn] = ACTIONS(1195), + [anon_sym_alignas] = ACTIONS(1195), + [anon_sym__Alignas] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym___try] = ACTIONS(1195), + [anon_sym___leave] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [anon_sym___alignof__] = ACTIONS(1195), + [anon_sym___alignof] = ACTIONS(1195), + [anon_sym__alignof] = ACTIONS(1195), + [anon_sym_alignof] = ACTIONS(1195), + [anon_sym__Alignof] = ACTIONS(1195), + [anon_sym_offsetof] = ACTIONS(1195), + [anon_sym__Generic] = ACTIONS(1195), + [anon_sym_asm] = ACTIONS(1195), + [anon_sym___asm__] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [anon_sym_NULL] = ACTIONS(1195), + [anon_sym_nullptr] = ACTIONS(1195), [sym_comment] = ACTIONS(3), }, [104] = { - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token2] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [aux_sym_preproc_else_token1] = ACTIONS(1204), - [aux_sym_preproc_elif_token1] = ACTIONS(1204), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym___extension__] = ACTIONS(1204), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym___inline] = ACTIONS(1204), - [anon_sym___inline__] = ACTIONS(1204), - [anon_sym___forceinline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym___thread] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym___try] = ACTIONS(1204), - [anon_sym___leave] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym___alignof__] = ACTIONS(1204), - [anon_sym___alignof] = ACTIONS(1204), - [anon_sym__alignof] = ACTIONS(1204), - [anon_sym_alignof] = ACTIONS(1204), - [anon_sym__Alignof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), + [sym_identifier] = ACTIONS(1199), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token2] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), + [aux_sym_preproc_else_token1] = ACTIONS(1199), + [aux_sym_preproc_elif_token1] = ACTIONS(1199), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1199), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1199), + [sym_preproc_directive] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1199), + [anon_sym_extern] = ACTIONS(1199), + [anon_sym___attribute__] = ACTIONS(1199), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1199), + [anon_sym___cdecl] = ACTIONS(1199), + [anon_sym___clrcall] = ACTIONS(1199), + [anon_sym___stdcall] = ACTIONS(1199), + [anon_sym___fastcall] = ACTIONS(1199), + [anon_sym___thiscall] = ACTIONS(1199), + [anon_sym___vectorcall] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1199), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_auto] = ACTIONS(1199), + [anon_sym_register] = ACTIONS(1199), + [anon_sym_inline] = ACTIONS(1199), + [anon_sym___inline] = ACTIONS(1199), + [anon_sym___inline__] = ACTIONS(1199), + [anon_sym___forceinline] = ACTIONS(1199), + [anon_sym_thread_local] = ACTIONS(1199), + [anon_sym___thread] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(1199), + [anon_sym_constexpr] = ACTIONS(1199), + [anon_sym_volatile] = ACTIONS(1199), + [anon_sym_restrict] = ACTIONS(1199), + [anon_sym___restrict__] = ACTIONS(1199), + [anon_sym__Atomic] = ACTIONS(1199), + [anon_sym__Noreturn] = ACTIONS(1199), + [anon_sym_noreturn] = ACTIONS(1199), + [anon_sym_alignas] = ACTIONS(1199), + [anon_sym__Alignas] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1199), + [anon_sym_enum] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_switch] = ACTIONS(1199), + [anon_sym_case] = ACTIONS(1199), + [anon_sym_default] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [anon_sym_do] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1199), + [anon_sym___try] = ACTIONS(1199), + [anon_sym___leave] = ACTIONS(1199), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1199), + [anon_sym___alignof__] = ACTIONS(1199), + [anon_sym___alignof] = ACTIONS(1199), + [anon_sym__alignof] = ACTIONS(1199), + [anon_sym_alignof] = ACTIONS(1199), + [anon_sym__Alignof] = ACTIONS(1199), + [anon_sym_offsetof] = ACTIONS(1199), + [anon_sym__Generic] = ACTIONS(1199), + [anon_sym_asm] = ACTIONS(1199), + [anon_sym___asm__] = ACTIONS(1199), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1199), + [sym_false] = ACTIONS(1199), + [anon_sym_NULL] = ACTIONS(1199), + [anon_sym_nullptr] = ACTIONS(1199), [sym_comment] = ACTIONS(3), }, [105] = { - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token2] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [aux_sym_preproc_else_token1] = ACTIONS(1208), - [aux_sym_preproc_elif_token1] = ACTIONS(1208), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym___extension__] = ACTIONS(1208), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym___inline] = ACTIONS(1208), - [anon_sym___inline__] = ACTIONS(1208), - [anon_sym___forceinline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym___thread] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym___try] = ACTIONS(1208), - [anon_sym___leave] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym___alignof__] = ACTIONS(1208), - [anon_sym___alignof] = ACTIONS(1208), - [anon_sym__alignof] = ACTIONS(1208), - [anon_sym_alignof] = ACTIONS(1208), - [anon_sym__Alignof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token2] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [aux_sym_preproc_else_token1] = ACTIONS(1203), + [aux_sym_preproc_elif_token1] = ACTIONS(1203), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, [106] = { - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token2] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [aux_sym_preproc_else_token1] = ACTIONS(1200), - [aux_sym_preproc_elif_token1] = ACTIONS(1200), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym___extension__] = ACTIONS(1200), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym___inline] = ACTIONS(1200), - [anon_sym___inline__] = ACTIONS(1200), - [anon_sym___forceinline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym___thread] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym___try] = ACTIONS(1200), - [anon_sym___leave] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym___alignof__] = ACTIONS(1200), - [anon_sym___alignof] = ACTIONS(1200), - [anon_sym__alignof] = ACTIONS(1200), - [anon_sym_alignof] = ACTIONS(1200), - [anon_sym__Alignof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token2] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [aux_sym_preproc_else_token1] = ACTIONS(1207), + [aux_sym_preproc_elif_token1] = ACTIONS(1207), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, [107] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1116), - [aux_sym_preproc_elif_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [aux_sym_preproc_else_token1] = ACTIONS(1123), + [aux_sym_preproc_elif_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [108] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1116), - [aux_sym_preproc_elif_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [aux_sym_preproc_else_token1] = ACTIONS(1123), + [aux_sym_preproc_elif_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [109] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1116), - [aux_sym_preproc_elif_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1211), + [aux_sym_preproc_include_token1] = ACTIONS(1211), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token2] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1211), + [aux_sym_preproc_else_token1] = ACTIONS(1211), + [aux_sym_preproc_elif_token1] = ACTIONS(1211), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1211), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1211), + [sym_preproc_directive] = ACTIONS(1211), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym___extension__] = ACTIONS(1211), + [anon_sym_typedef] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym___attribute__] = ACTIONS(1211), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym___declspec] = ACTIONS(1211), + [anon_sym___cdecl] = ACTIONS(1211), + [anon_sym___clrcall] = ACTIONS(1211), + [anon_sym___stdcall] = ACTIONS(1211), + [anon_sym___fastcall] = ACTIONS(1211), + [anon_sym___thiscall] = ACTIONS(1211), + [anon_sym___vectorcall] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_signed] = ACTIONS(1211), + [anon_sym_unsigned] = ACTIONS(1211), + [anon_sym_long] = ACTIONS(1211), + [anon_sym_short] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1211), + [anon_sym_auto] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_inline] = ACTIONS(1211), + [anon_sym___inline] = ACTIONS(1211), + [anon_sym___inline__] = ACTIONS(1211), + [anon_sym___forceinline] = ACTIONS(1211), + [anon_sym_thread_local] = ACTIONS(1211), + [anon_sym___thread] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_constexpr] = ACTIONS(1211), + [anon_sym_volatile] = ACTIONS(1211), + [anon_sym_restrict] = ACTIONS(1211), + [anon_sym___restrict__] = ACTIONS(1211), + [anon_sym__Atomic] = ACTIONS(1211), + [anon_sym__Noreturn] = ACTIONS(1211), + [anon_sym_noreturn] = ACTIONS(1211), + [anon_sym_alignas] = ACTIONS(1211), + [anon_sym__Alignas] = ACTIONS(1211), + [sym_primitive_type] = ACTIONS(1211), + [anon_sym_enum] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1211), + [anon_sym_union] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_else] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1211), + [anon_sym_case] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_goto] = ACTIONS(1211), + [anon_sym___try] = ACTIONS(1211), + [anon_sym___leave] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1211), + [anon_sym___alignof__] = ACTIONS(1211), + [anon_sym___alignof] = ACTIONS(1211), + [anon_sym__alignof] = ACTIONS(1211), + [anon_sym_alignof] = ACTIONS(1211), + [anon_sym__Alignof] = ACTIONS(1211), + [anon_sym_offsetof] = ACTIONS(1211), + [anon_sym__Generic] = ACTIONS(1211), + [anon_sym_asm] = ACTIONS(1211), + [anon_sym___asm__] = ACTIONS(1211), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_L_SQUOTE] = ACTIONS(1213), + [anon_sym_u_SQUOTE] = ACTIONS(1213), + [anon_sym_U_SQUOTE] = ACTIONS(1213), + [anon_sym_u8_SQUOTE] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_L_DQUOTE] = ACTIONS(1213), + [anon_sym_u_DQUOTE] = ACTIONS(1213), + [anon_sym_U_DQUOTE] = ACTIONS(1213), + [anon_sym_u8_DQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1211), + [sym_false] = ACTIONS(1211), + [anon_sym_NULL] = ACTIONS(1211), + [anon_sym_nullptr] = ACTIONS(1211), [sym_comment] = ACTIONS(3), }, [110] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1116), - [aux_sym_preproc_elif_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1215), + [aux_sym_preproc_include_token1] = ACTIONS(1215), + [aux_sym_preproc_def_token1] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1215), + [aux_sym_preproc_if_token2] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1215), + [aux_sym_preproc_else_token1] = ACTIONS(1215), + [aux_sym_preproc_elif_token1] = ACTIONS(1215), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1215), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_LPAREN2] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym___extension__] = ACTIONS(1215), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym___attribute__] = ACTIONS(1215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1217), + [anon_sym___declspec] = ACTIONS(1215), + [anon_sym___cdecl] = ACTIONS(1215), + [anon_sym___clrcall] = ACTIONS(1215), + [anon_sym___stdcall] = ACTIONS(1215), + [anon_sym___fastcall] = ACTIONS(1215), + [anon_sym___thiscall] = ACTIONS(1215), + [anon_sym___vectorcall] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym___inline] = ACTIONS(1215), + [anon_sym___inline__] = ACTIONS(1215), + [anon_sym___forceinline] = ACTIONS(1215), + [anon_sym_thread_local] = ACTIONS(1215), + [anon_sym___thread] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_constexpr] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym___restrict__] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym__Noreturn] = ACTIONS(1215), + [anon_sym_noreturn] = ACTIONS(1215), + [anon_sym_alignas] = ACTIONS(1215), + [anon_sym__Alignas] = ACTIONS(1215), + [sym_primitive_type] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(1215), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1215), + [anon_sym_default] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym___try] = ACTIONS(1215), + [anon_sym___leave] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_sizeof] = ACTIONS(1215), + [anon_sym___alignof__] = ACTIONS(1215), + [anon_sym___alignof] = ACTIONS(1215), + [anon_sym__alignof] = ACTIONS(1215), + [anon_sym_alignof] = ACTIONS(1215), + [anon_sym__Alignof] = ACTIONS(1215), + [anon_sym_offsetof] = ACTIONS(1215), + [anon_sym__Generic] = ACTIONS(1215), + [anon_sym_asm] = ACTIONS(1215), + [anon_sym___asm__] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1217), + [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(1217), + [anon_sym_u_DQUOTE] = ACTIONS(1217), + [anon_sym_U_DQUOTE] = ACTIONS(1217), + [anon_sym_u8_DQUOTE] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [anon_sym_NULL] = ACTIONS(1215), + [anon_sym_nullptr] = ACTIONS(1215), [sym_comment] = ACTIONS(3), }, [111] = { - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [anon_sym_COMMA] = ACTIONS(1206), - [anon_sym_RPAREN] = ACTIONS(1206), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym___extension__] = ACTIONS(1204), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym___inline] = ACTIONS(1204), - [anon_sym___inline__] = ACTIONS(1204), - [anon_sym___forceinline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym___thread] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym___try] = ACTIONS(1204), - [anon_sym___except] = ACTIONS(1204), - [anon_sym___finally] = ACTIONS(1204), - [anon_sym___leave] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym___alignof__] = ACTIONS(1204), - [anon_sym___alignof] = ACTIONS(1204), - [anon_sym__alignof] = ACTIONS(1204), - [anon_sym_alignof] = ACTIONS(1204), - [anon_sym__Alignof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [aux_sym_preproc_else_token1] = ACTIONS(1123), + [aux_sym_preproc_elif_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [112] = { - [sym_identifier] = ACTIONS(1212), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token2] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [aux_sym_preproc_else_token1] = ACTIONS(1212), - [aux_sym_preproc_elif_token1] = ACTIONS(1212), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym___extension__] = ACTIONS(1212), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym___inline] = ACTIONS(1212), - [anon_sym___inline__] = ACTIONS(1212), - [anon_sym___forceinline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym___thread] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1212), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym___try] = ACTIONS(1212), - [anon_sym___leave] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym___alignof__] = ACTIONS(1212), - [anon_sym___alignof] = ACTIONS(1212), - [anon_sym__alignof] = ACTIONS(1212), - [anon_sym_alignof] = ACTIONS(1212), - [anon_sym__Alignof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1219), + [aux_sym_preproc_include_token1] = ACTIONS(1219), + [aux_sym_preproc_def_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token2] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), + [aux_sym_preproc_else_token1] = ACTIONS(1219), + [aux_sym_preproc_elif_token1] = ACTIONS(1219), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1219), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1219), + [sym_preproc_directive] = ACTIONS(1219), + [anon_sym_LPAREN2] = ACTIONS(1221), + [anon_sym_BANG] = ACTIONS(1221), + [anon_sym_TILDE] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym___extension__] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1219), + [anon_sym_extern] = ACTIONS(1219), + [anon_sym___attribute__] = ACTIONS(1219), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), + [anon_sym___declspec] = ACTIONS(1219), + [anon_sym___cdecl] = ACTIONS(1219), + [anon_sym___clrcall] = ACTIONS(1219), + [anon_sym___stdcall] = ACTIONS(1219), + [anon_sym___fastcall] = ACTIONS(1219), + [anon_sym___thiscall] = ACTIONS(1219), + [anon_sym___vectorcall] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_signed] = ACTIONS(1219), + [anon_sym_unsigned] = ACTIONS(1219), + [anon_sym_long] = ACTIONS(1219), + [anon_sym_short] = ACTIONS(1219), + [anon_sym_static] = ACTIONS(1219), + [anon_sym_auto] = ACTIONS(1219), + [anon_sym_register] = ACTIONS(1219), + [anon_sym_inline] = ACTIONS(1219), + [anon_sym___inline] = ACTIONS(1219), + [anon_sym___inline__] = ACTIONS(1219), + [anon_sym___forceinline] = ACTIONS(1219), + [anon_sym_thread_local] = ACTIONS(1219), + [anon_sym___thread] = ACTIONS(1219), + [anon_sym_const] = ACTIONS(1219), + [anon_sym_constexpr] = ACTIONS(1219), + [anon_sym_volatile] = ACTIONS(1219), + [anon_sym_restrict] = ACTIONS(1219), + [anon_sym___restrict__] = ACTIONS(1219), + [anon_sym__Atomic] = ACTIONS(1219), + [anon_sym__Noreturn] = ACTIONS(1219), + [anon_sym_noreturn] = ACTIONS(1219), + [anon_sym_alignas] = ACTIONS(1219), + [anon_sym__Alignas] = ACTIONS(1219), + [sym_primitive_type] = ACTIONS(1219), + [anon_sym_enum] = ACTIONS(1219), + [anon_sym_struct] = ACTIONS(1219), + [anon_sym_union] = ACTIONS(1219), + [anon_sym_if] = ACTIONS(1219), + [anon_sym_else] = ACTIONS(1219), + [anon_sym_switch] = ACTIONS(1219), + [anon_sym_case] = ACTIONS(1219), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1219), + [anon_sym_for] = ACTIONS(1219), + [anon_sym_return] = ACTIONS(1219), + [anon_sym_break] = ACTIONS(1219), + [anon_sym_continue] = ACTIONS(1219), + [anon_sym_goto] = ACTIONS(1219), + [anon_sym___try] = ACTIONS(1219), + [anon_sym___leave] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1219), + [anon_sym___alignof__] = ACTIONS(1219), + [anon_sym___alignof] = ACTIONS(1219), + [anon_sym__alignof] = ACTIONS(1219), + [anon_sym_alignof] = ACTIONS(1219), + [anon_sym__Alignof] = ACTIONS(1219), + [anon_sym_offsetof] = ACTIONS(1219), + [anon_sym__Generic] = ACTIONS(1219), + [anon_sym_asm] = ACTIONS(1219), + [anon_sym___asm__] = ACTIONS(1219), + [sym_number_literal] = ACTIONS(1221), + [anon_sym_L_SQUOTE] = ACTIONS(1221), + [anon_sym_u_SQUOTE] = ACTIONS(1221), + [anon_sym_U_SQUOTE] = ACTIONS(1221), + [anon_sym_u8_SQUOTE] = ACTIONS(1221), + [anon_sym_SQUOTE] = ACTIONS(1221), + [anon_sym_L_DQUOTE] = ACTIONS(1221), + [anon_sym_u_DQUOTE] = ACTIONS(1221), + [anon_sym_U_DQUOTE] = ACTIONS(1221), + [anon_sym_u8_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym_true] = ACTIONS(1219), + [sym_false] = ACTIONS(1219), + [anon_sym_NULL] = ACTIONS(1219), + [anon_sym_nullptr] = ACTIONS(1219), [sym_comment] = ACTIONS(3), }, [113] = { - [sym_identifier] = ACTIONS(1216), - [aux_sym_preproc_include_token1] = ACTIONS(1216), - [aux_sym_preproc_def_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token2] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), - [aux_sym_preproc_else_token1] = ACTIONS(1216), - [aux_sym_preproc_elif_token1] = ACTIONS(1216), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1216), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_LPAREN2] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym___extension__] = ACTIONS(1216), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym___attribute__] = ACTIONS(1216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), - [anon_sym___declspec] = ACTIONS(1216), - [anon_sym___cdecl] = ACTIONS(1216), - [anon_sym___clrcall] = ACTIONS(1216), - [anon_sym___stdcall] = ACTIONS(1216), - [anon_sym___fastcall] = ACTIONS(1216), - [anon_sym___thiscall] = ACTIONS(1216), - [anon_sym___vectorcall] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym___inline] = ACTIONS(1216), - [anon_sym___inline__] = ACTIONS(1216), - [anon_sym___forceinline] = ACTIONS(1216), - [anon_sym_thread_local] = ACTIONS(1216), - [anon_sym___thread] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_constexpr] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym___restrict__] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym__Noreturn] = ACTIONS(1216), - [anon_sym_noreturn] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym___try] = ACTIONS(1216), - [anon_sym___leave] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [anon_sym_sizeof] = ACTIONS(1216), - [anon_sym___alignof__] = ACTIONS(1216), - [anon_sym___alignof] = ACTIONS(1216), - [anon_sym__alignof] = ACTIONS(1216), - [anon_sym_alignof] = ACTIONS(1216), - [anon_sym__Alignof] = ACTIONS(1216), - [anon_sym_offsetof] = ACTIONS(1216), - [anon_sym__Generic] = ACTIONS(1216), - [anon_sym_asm] = ACTIONS(1216), - [anon_sym___asm__] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_L_SQUOTE] = ACTIONS(1218), - [anon_sym_u_SQUOTE] = ACTIONS(1218), - [anon_sym_U_SQUOTE] = ACTIONS(1218), - [anon_sym_u8_SQUOTE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_L_DQUOTE] = ACTIONS(1218), - [anon_sym_u_DQUOTE] = ACTIONS(1218), - [anon_sym_U_DQUOTE] = ACTIONS(1218), - [anon_sym_u8_DQUOTE] = ACTIONS(1218), - [anon_sym_DQUOTE] = ACTIONS(1218), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [anon_sym_NULL] = ACTIONS(1216), - [anon_sym_nullptr] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1223), + [aux_sym_preproc_include_token1] = ACTIONS(1223), + [aux_sym_preproc_def_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token2] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), + [aux_sym_preproc_else_token1] = ACTIONS(1223), + [aux_sym_preproc_elif_token1] = ACTIONS(1223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1223), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1223), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_LPAREN2] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym___extension__] = ACTIONS(1223), + [anon_sym_typedef] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(1223), + [anon_sym___attribute__] = ACTIONS(1223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), + [anon_sym___declspec] = ACTIONS(1223), + [anon_sym___cdecl] = ACTIONS(1223), + [anon_sym___clrcall] = ACTIONS(1223), + [anon_sym___stdcall] = ACTIONS(1223), + [anon_sym___fastcall] = ACTIONS(1223), + [anon_sym___thiscall] = ACTIONS(1223), + [anon_sym___vectorcall] = ACTIONS(1223), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(1223), + [anon_sym_unsigned] = ACTIONS(1223), + [anon_sym_long] = ACTIONS(1223), + [anon_sym_short] = ACTIONS(1223), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_auto] = ACTIONS(1223), + [anon_sym_register] = ACTIONS(1223), + [anon_sym_inline] = ACTIONS(1223), + [anon_sym___inline] = ACTIONS(1223), + [anon_sym___inline__] = ACTIONS(1223), + [anon_sym___forceinline] = ACTIONS(1223), + [anon_sym_thread_local] = ACTIONS(1223), + [anon_sym___thread] = ACTIONS(1223), + [anon_sym_const] = ACTIONS(1223), + [anon_sym_constexpr] = ACTIONS(1223), + [anon_sym_volatile] = ACTIONS(1223), + [anon_sym_restrict] = ACTIONS(1223), + [anon_sym___restrict__] = ACTIONS(1223), + [anon_sym__Atomic] = ACTIONS(1223), + [anon_sym__Noreturn] = ACTIONS(1223), + [anon_sym_noreturn] = ACTIONS(1223), + [anon_sym_alignas] = ACTIONS(1223), + [anon_sym__Alignas] = ACTIONS(1223), + [sym_primitive_type] = ACTIONS(1223), + [anon_sym_enum] = ACTIONS(1223), + [anon_sym_struct] = ACTIONS(1223), + [anon_sym_union] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1223), + [anon_sym_else] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1223), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_do] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1223), + [anon_sym_break] = ACTIONS(1223), + [anon_sym_continue] = ACTIONS(1223), + [anon_sym_goto] = ACTIONS(1223), + [anon_sym___try] = ACTIONS(1223), + [anon_sym___leave] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_sizeof] = ACTIONS(1223), + [anon_sym___alignof__] = ACTIONS(1223), + [anon_sym___alignof] = ACTIONS(1223), + [anon_sym__alignof] = ACTIONS(1223), + [anon_sym_alignof] = ACTIONS(1223), + [anon_sym__Alignof] = ACTIONS(1223), + [anon_sym_offsetof] = ACTIONS(1223), + [anon_sym__Generic] = ACTIONS(1223), + [anon_sym_asm] = ACTIONS(1223), + [anon_sym___asm__] = ACTIONS(1223), + [sym_number_literal] = ACTIONS(1225), + [anon_sym_L_SQUOTE] = ACTIONS(1225), + [anon_sym_u_SQUOTE] = ACTIONS(1225), + [anon_sym_U_SQUOTE] = ACTIONS(1225), + [anon_sym_u8_SQUOTE] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_L_DQUOTE] = ACTIONS(1225), + [anon_sym_u_DQUOTE] = ACTIONS(1225), + [anon_sym_U_DQUOTE] = ACTIONS(1225), + [anon_sym_u8_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [anon_sym_NULL] = ACTIONS(1223), + [anon_sym_nullptr] = ACTIONS(1223), [sym_comment] = ACTIONS(3), }, [114] = { - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token2] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [aux_sym_preproc_else_token1] = ACTIONS(1220), - [aux_sym_preproc_elif_token1] = ACTIONS(1220), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym___extension__] = ACTIONS(1220), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym___inline] = ACTIONS(1220), - [anon_sym___inline__] = ACTIONS(1220), - [anon_sym___forceinline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym___thread] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym___alignof__] = ACTIONS(1220), - [anon_sym___alignof] = ACTIONS(1220), - [anon_sym__alignof] = ACTIONS(1220), - [anon_sym_alignof] = ACTIONS(1220), - [anon_sym__Alignof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), + [sym_identifier] = ACTIONS(1227), + [aux_sym_preproc_include_token1] = ACTIONS(1227), + [aux_sym_preproc_def_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token2] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), + [aux_sym_preproc_else_token1] = ACTIONS(1227), + [aux_sym_preproc_elif_token1] = ACTIONS(1227), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1227), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1227), + [sym_preproc_directive] = ACTIONS(1227), + [anon_sym_LPAREN2] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym___extension__] = ACTIONS(1227), + [anon_sym_typedef] = ACTIONS(1227), + [anon_sym_extern] = ACTIONS(1227), + [anon_sym___attribute__] = ACTIONS(1227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1229), + [anon_sym___declspec] = ACTIONS(1227), + [anon_sym___cdecl] = ACTIONS(1227), + [anon_sym___clrcall] = ACTIONS(1227), + [anon_sym___stdcall] = ACTIONS(1227), + [anon_sym___fastcall] = ACTIONS(1227), + [anon_sym___thiscall] = ACTIONS(1227), + [anon_sym___vectorcall] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_signed] = ACTIONS(1227), + [anon_sym_unsigned] = ACTIONS(1227), + [anon_sym_long] = ACTIONS(1227), + [anon_sym_short] = ACTIONS(1227), + [anon_sym_static] = ACTIONS(1227), + [anon_sym_auto] = ACTIONS(1227), + [anon_sym_register] = ACTIONS(1227), + [anon_sym_inline] = ACTIONS(1227), + [anon_sym___inline] = ACTIONS(1227), + [anon_sym___inline__] = ACTIONS(1227), + [anon_sym___forceinline] = ACTIONS(1227), + [anon_sym_thread_local] = ACTIONS(1227), + [anon_sym___thread] = ACTIONS(1227), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_constexpr] = ACTIONS(1227), + [anon_sym_volatile] = ACTIONS(1227), + [anon_sym_restrict] = ACTIONS(1227), + [anon_sym___restrict__] = ACTIONS(1227), + [anon_sym__Atomic] = ACTIONS(1227), + [anon_sym__Noreturn] = ACTIONS(1227), + [anon_sym_noreturn] = ACTIONS(1227), + [anon_sym_alignas] = ACTIONS(1227), + [anon_sym__Alignas] = ACTIONS(1227), + [sym_primitive_type] = ACTIONS(1227), + [anon_sym_enum] = ACTIONS(1227), + [anon_sym_struct] = ACTIONS(1227), + [anon_sym_union] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_else] = ACTIONS(1227), + [anon_sym_switch] = ACTIONS(1227), + [anon_sym_case] = ACTIONS(1227), + [anon_sym_default] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_goto] = ACTIONS(1227), + [anon_sym___try] = ACTIONS(1227), + [anon_sym___leave] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_sizeof] = ACTIONS(1227), + [anon_sym___alignof__] = ACTIONS(1227), + [anon_sym___alignof] = ACTIONS(1227), + [anon_sym__alignof] = ACTIONS(1227), + [anon_sym_alignof] = ACTIONS(1227), + [anon_sym__Alignof] = ACTIONS(1227), + [anon_sym_offsetof] = ACTIONS(1227), + [anon_sym__Generic] = ACTIONS(1227), + [anon_sym_asm] = ACTIONS(1227), + [anon_sym___asm__] = ACTIONS(1227), + [sym_number_literal] = ACTIONS(1229), + [anon_sym_L_SQUOTE] = ACTIONS(1229), + [anon_sym_u_SQUOTE] = ACTIONS(1229), + [anon_sym_U_SQUOTE] = ACTIONS(1229), + [anon_sym_u8_SQUOTE] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_L_DQUOTE] = ACTIONS(1229), + [anon_sym_u_DQUOTE] = ACTIONS(1229), + [anon_sym_U_DQUOTE] = ACTIONS(1229), + [anon_sym_u8_DQUOTE] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym_true] = ACTIONS(1227), + [sym_false] = ACTIONS(1227), + [anon_sym_NULL] = ACTIONS(1227), + [anon_sym_nullptr] = ACTIONS(1227), [sym_comment] = ACTIONS(3), }, [115] = { - [sym_identifier] = ACTIONS(1224), - [aux_sym_preproc_include_token1] = ACTIONS(1224), - [aux_sym_preproc_def_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token2] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), - [aux_sym_preproc_else_token1] = ACTIONS(1224), - [aux_sym_preproc_elif_token1] = ACTIONS(1224), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1224), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1224), - [sym_preproc_directive] = ACTIONS(1224), - [anon_sym_LPAREN2] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym___extension__] = ACTIONS(1224), - [anon_sym_typedef] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym___attribute__] = ACTIONS(1224), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), - [anon_sym___declspec] = ACTIONS(1224), - [anon_sym___cdecl] = ACTIONS(1224), - [anon_sym___clrcall] = ACTIONS(1224), - [anon_sym___stdcall] = ACTIONS(1224), - [anon_sym___fastcall] = ACTIONS(1224), - [anon_sym___thiscall] = ACTIONS(1224), - [anon_sym___vectorcall] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_auto] = ACTIONS(1224), - [anon_sym_register] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym___inline] = ACTIONS(1224), - [anon_sym___inline__] = ACTIONS(1224), - [anon_sym___forceinline] = ACTIONS(1224), - [anon_sym_thread_local] = ACTIONS(1224), - [anon_sym___thread] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_constexpr] = ACTIONS(1224), - [anon_sym_volatile] = ACTIONS(1224), - [anon_sym_restrict] = ACTIONS(1224), - [anon_sym___restrict__] = ACTIONS(1224), - [anon_sym__Atomic] = ACTIONS(1224), - [anon_sym__Noreturn] = ACTIONS(1224), - [anon_sym_noreturn] = ACTIONS(1224), - [sym_primitive_type] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1224), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_goto] = ACTIONS(1224), - [anon_sym___try] = ACTIONS(1224), - [anon_sym___leave] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1224), - [anon_sym___alignof__] = ACTIONS(1224), - [anon_sym___alignof] = ACTIONS(1224), - [anon_sym__alignof] = ACTIONS(1224), - [anon_sym_alignof] = ACTIONS(1224), - [anon_sym__Alignof] = ACTIONS(1224), - [anon_sym_offsetof] = ACTIONS(1224), - [anon_sym__Generic] = ACTIONS(1224), - [anon_sym_asm] = ACTIONS(1224), - [anon_sym___asm__] = ACTIONS(1224), - [sym_number_literal] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1226), - [anon_sym_u_SQUOTE] = ACTIONS(1226), - [anon_sym_U_SQUOTE] = ACTIONS(1226), - [anon_sym_u8_SQUOTE] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_L_DQUOTE] = ACTIONS(1226), - [anon_sym_u_DQUOTE] = ACTIONS(1226), - [anon_sym_U_DQUOTE] = ACTIONS(1226), - [anon_sym_u8_DQUOTE] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_true] = ACTIONS(1224), - [sym_false] = ACTIONS(1224), - [anon_sym_NULL] = ACTIONS(1224), - [anon_sym_nullptr] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [aux_sym_preproc_else_token1] = ACTIONS(1123), + [aux_sym_preproc_elif_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [116] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1116), - [aux_sym_preproc_elif_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1143), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token2] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [aux_sym_preproc_else_token1] = ACTIONS(1143), + [aux_sym_preproc_elif_token1] = ACTIONS(1143), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym___extension__] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym___attribute__] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), + [anon_sym___declspec] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1143), + [anon_sym_unsigned] = ACTIONS(1143), + [anon_sym_long] = ACTIONS(1143), + [anon_sym_short] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_auto] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym___inline] = ACTIONS(1143), + [anon_sym___inline__] = ACTIONS(1143), + [anon_sym___forceinline] = ACTIONS(1143), + [anon_sym_thread_local] = ACTIONS(1143), + [anon_sym___thread] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym___restrict__] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym__Noreturn] = ACTIONS(1143), + [anon_sym_noreturn] = ACTIONS(1143), + [anon_sym_alignas] = ACTIONS(1143), + [anon_sym__Alignas] = ACTIONS(1143), + [sym_primitive_type] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_union] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(1143), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1143), + [anon_sym___try] = ACTIONS(1143), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_sizeof] = ACTIONS(1143), + [anon_sym___alignof__] = ACTIONS(1143), + [anon_sym___alignof] = ACTIONS(1143), + [anon_sym__alignof] = ACTIONS(1143), + [anon_sym_alignof] = ACTIONS(1143), + [anon_sym__Alignof] = ACTIONS(1143), + [anon_sym_offsetof] = ACTIONS(1143), + [anon_sym__Generic] = ACTIONS(1143), + [anon_sym_asm] = ACTIONS(1143), + [anon_sym___asm__] = ACTIONS(1143), + [sym_number_literal] = ACTIONS(1145), + [anon_sym_L_SQUOTE] = ACTIONS(1145), + [anon_sym_u_SQUOTE] = ACTIONS(1145), + [anon_sym_U_SQUOTE] = ACTIONS(1145), + [anon_sym_u8_SQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_L_DQUOTE] = ACTIONS(1145), + [anon_sym_u_DQUOTE] = ACTIONS(1145), + [anon_sym_U_DQUOTE] = ACTIONS(1145), + [anon_sym_u8_DQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_true] = ACTIONS(1143), + [sym_false] = ACTIONS(1143), + [anon_sym_NULL] = ACTIONS(1143), + [anon_sym_nullptr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), }, [117] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1116), - [aux_sym_preproc_elif_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token2] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), + [aux_sym_preproc_else_token1] = ACTIONS(1231), + [aux_sym_preproc_elif_token1] = ACTIONS(1231), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1231), + [sym_preproc_directive] = ACTIONS(1231), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym___extension__] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym___attribute__] = ACTIONS(1231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1231), + [anon_sym___cdecl] = ACTIONS(1231), + [anon_sym___clrcall] = ACTIONS(1231), + [anon_sym___stdcall] = ACTIONS(1231), + [anon_sym___fastcall] = ACTIONS(1231), + [anon_sym___thiscall] = ACTIONS(1231), + [anon_sym___vectorcall] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1231), + [anon_sym_unsigned] = ACTIONS(1231), + [anon_sym_long] = ACTIONS(1231), + [anon_sym_short] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_auto] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_inline] = ACTIONS(1231), + [anon_sym___inline] = ACTIONS(1231), + [anon_sym___inline__] = ACTIONS(1231), + [anon_sym___forceinline] = ACTIONS(1231), + [anon_sym_thread_local] = ACTIONS(1231), + [anon_sym___thread] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_constexpr] = ACTIONS(1231), + [anon_sym_volatile] = ACTIONS(1231), + [anon_sym_restrict] = ACTIONS(1231), + [anon_sym___restrict__] = ACTIONS(1231), + [anon_sym__Atomic] = ACTIONS(1231), + [anon_sym__Noreturn] = ACTIONS(1231), + [anon_sym_noreturn] = ACTIONS(1231), + [anon_sym_alignas] = ACTIONS(1231), + [anon_sym__Alignas] = ACTIONS(1231), + [sym_primitive_type] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_union] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_goto] = ACTIONS(1231), + [anon_sym___try] = ACTIONS(1231), + [anon_sym___leave] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1231), + [anon_sym___alignof__] = ACTIONS(1231), + [anon_sym___alignof] = ACTIONS(1231), + [anon_sym__alignof] = ACTIONS(1231), + [anon_sym_alignof] = ACTIONS(1231), + [anon_sym__Alignof] = ACTIONS(1231), + [anon_sym_offsetof] = ACTIONS(1231), + [anon_sym__Generic] = ACTIONS(1231), + [anon_sym_asm] = ACTIONS(1231), + [anon_sym___asm__] = ACTIONS(1231), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_L_SQUOTE] = ACTIONS(1233), + [anon_sym_u_SQUOTE] = ACTIONS(1233), + [anon_sym_U_SQUOTE] = ACTIONS(1233), + [anon_sym_u8_SQUOTE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_L_DQUOTE] = ACTIONS(1233), + [anon_sym_u_DQUOTE] = ACTIONS(1233), + [anon_sym_U_DQUOTE] = ACTIONS(1233), + [anon_sym_u8_DQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1231), + [sym_false] = ACTIONS(1231), + [anon_sym_NULL] = ACTIONS(1231), + [anon_sym_nullptr] = ACTIONS(1231), [sym_comment] = ACTIONS(3), }, [118] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1116), - [aux_sym_preproc_elif_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [aux_sym_preproc_else_token1] = ACTIONS(1123), + [aux_sym_preproc_elif_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [119] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1116), - [aux_sym_preproc_elif_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [aux_sym_preproc_else_token1] = ACTIONS(1123), + [aux_sym_preproc_elif_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [120] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1116), - [aux_sym_preproc_elif_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [aux_sym_preproc_else_token1] = ACTIONS(1123), + [aux_sym_preproc_elif_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [121] = { - [sym_identifier] = ACTIONS(1228), - [aux_sym_preproc_include_token1] = ACTIONS(1228), - [aux_sym_preproc_def_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token2] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), - [aux_sym_preproc_else_token1] = ACTIONS(1228), - [aux_sym_preproc_elif_token1] = ACTIONS(1228), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1228), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1228), - [sym_preproc_directive] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym___extension__] = ACTIONS(1228), - [anon_sym_typedef] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym___attribute__] = ACTIONS(1228), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), - [anon_sym___declspec] = ACTIONS(1228), - [anon_sym___cdecl] = ACTIONS(1228), - [anon_sym___clrcall] = ACTIONS(1228), - [anon_sym___stdcall] = ACTIONS(1228), - [anon_sym___fastcall] = ACTIONS(1228), - [anon_sym___thiscall] = ACTIONS(1228), - [anon_sym___vectorcall] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_auto] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_inline] = ACTIONS(1228), - [anon_sym___inline] = ACTIONS(1228), - [anon_sym___inline__] = ACTIONS(1228), - [anon_sym___forceinline] = ACTIONS(1228), - [anon_sym_thread_local] = ACTIONS(1228), - [anon_sym___thread] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_constexpr] = ACTIONS(1228), - [anon_sym_volatile] = ACTIONS(1228), - [anon_sym_restrict] = ACTIONS(1228), - [anon_sym___restrict__] = ACTIONS(1228), - [anon_sym__Atomic] = ACTIONS(1228), - [anon_sym__Noreturn] = ACTIONS(1228), - [anon_sym_noreturn] = ACTIONS(1228), - [sym_primitive_type] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_switch] = ACTIONS(1228), - [anon_sym_case] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_goto] = ACTIONS(1228), - [anon_sym___try] = ACTIONS(1228), - [anon_sym___leave] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_sizeof] = ACTIONS(1228), - [anon_sym___alignof__] = ACTIONS(1228), - [anon_sym___alignof] = ACTIONS(1228), - [anon_sym__alignof] = ACTIONS(1228), - [anon_sym_alignof] = ACTIONS(1228), - [anon_sym__Alignof] = ACTIONS(1228), - [anon_sym_offsetof] = ACTIONS(1228), - [anon_sym__Generic] = ACTIONS(1228), - [anon_sym_asm] = ACTIONS(1228), - [anon_sym___asm__] = ACTIONS(1228), - [sym_number_literal] = ACTIONS(1230), - [anon_sym_L_SQUOTE] = ACTIONS(1230), - [anon_sym_u_SQUOTE] = ACTIONS(1230), - [anon_sym_U_SQUOTE] = ACTIONS(1230), - [anon_sym_u8_SQUOTE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_L_DQUOTE] = ACTIONS(1230), - [anon_sym_u_DQUOTE] = ACTIONS(1230), - [anon_sym_U_DQUOTE] = ACTIONS(1230), - [anon_sym_u8_DQUOTE] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_true] = ACTIONS(1228), - [sym_false] = ACTIONS(1228), - [anon_sym_NULL] = ACTIONS(1228), - [anon_sym_nullptr] = ACTIONS(1228), + [sym_identifier] = ACTIONS(1235), + [aux_sym_preproc_include_token1] = ACTIONS(1235), + [aux_sym_preproc_def_token1] = ACTIONS(1235), + [aux_sym_preproc_if_token1] = ACTIONS(1235), + [aux_sym_preproc_if_token2] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1235), + [aux_sym_preproc_else_token1] = ACTIONS(1235), + [aux_sym_preproc_elif_token1] = ACTIONS(1235), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1235), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1235), + [sym_preproc_directive] = ACTIONS(1235), + [anon_sym_LPAREN2] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym___extension__] = ACTIONS(1235), + [anon_sym_typedef] = ACTIONS(1235), + [anon_sym_extern] = ACTIONS(1235), + [anon_sym___attribute__] = ACTIONS(1235), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1237), + [anon_sym___declspec] = ACTIONS(1235), + [anon_sym___cdecl] = ACTIONS(1235), + [anon_sym___clrcall] = ACTIONS(1235), + [anon_sym___stdcall] = ACTIONS(1235), + [anon_sym___fastcall] = ACTIONS(1235), + [anon_sym___thiscall] = ACTIONS(1235), + [anon_sym___vectorcall] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_signed] = ACTIONS(1235), + [anon_sym_unsigned] = ACTIONS(1235), + [anon_sym_long] = ACTIONS(1235), + [anon_sym_short] = ACTIONS(1235), + [anon_sym_static] = ACTIONS(1235), + [anon_sym_auto] = ACTIONS(1235), + [anon_sym_register] = ACTIONS(1235), + [anon_sym_inline] = ACTIONS(1235), + [anon_sym___inline] = ACTIONS(1235), + [anon_sym___inline__] = ACTIONS(1235), + [anon_sym___forceinline] = ACTIONS(1235), + [anon_sym_thread_local] = ACTIONS(1235), + [anon_sym___thread] = ACTIONS(1235), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_constexpr] = ACTIONS(1235), + [anon_sym_volatile] = ACTIONS(1235), + [anon_sym_restrict] = ACTIONS(1235), + [anon_sym___restrict__] = ACTIONS(1235), + [anon_sym__Atomic] = ACTIONS(1235), + [anon_sym__Noreturn] = ACTIONS(1235), + [anon_sym_noreturn] = ACTIONS(1235), + [anon_sym_alignas] = ACTIONS(1235), + [anon_sym__Alignas] = ACTIONS(1235), + [sym_primitive_type] = ACTIONS(1235), + [anon_sym_enum] = ACTIONS(1235), + [anon_sym_struct] = ACTIONS(1235), + [anon_sym_union] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1235), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_switch] = ACTIONS(1235), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1235), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1235), + [anon_sym_return] = ACTIONS(1235), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_goto] = ACTIONS(1235), + [anon_sym___try] = ACTIONS(1235), + [anon_sym___leave] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_sizeof] = ACTIONS(1235), + [anon_sym___alignof__] = ACTIONS(1235), + [anon_sym___alignof] = ACTIONS(1235), + [anon_sym__alignof] = ACTIONS(1235), + [anon_sym_alignof] = ACTIONS(1235), + [anon_sym__Alignof] = ACTIONS(1235), + [anon_sym_offsetof] = ACTIONS(1235), + [anon_sym__Generic] = ACTIONS(1235), + [anon_sym_asm] = ACTIONS(1235), + [anon_sym___asm__] = ACTIONS(1235), + [sym_number_literal] = ACTIONS(1237), + [anon_sym_L_SQUOTE] = ACTIONS(1237), + [anon_sym_u_SQUOTE] = ACTIONS(1237), + [anon_sym_U_SQUOTE] = ACTIONS(1237), + [anon_sym_u8_SQUOTE] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_L_DQUOTE] = ACTIONS(1237), + [anon_sym_u_DQUOTE] = ACTIONS(1237), + [anon_sym_U_DQUOTE] = ACTIONS(1237), + [anon_sym_u8_DQUOTE] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_true] = ACTIONS(1235), + [sym_false] = ACTIONS(1235), + [anon_sym_NULL] = ACTIONS(1235), + [anon_sym_nullptr] = ACTIONS(1235), [sym_comment] = ACTIONS(3), }, [122] = { - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token2] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [aux_sym_preproc_else_token1] = ACTIONS(1232), - [aux_sym_preproc_elif_token1] = ACTIONS(1232), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym___extension__] = ACTIONS(1232), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym___inline] = ACTIONS(1232), - [anon_sym___inline__] = ACTIONS(1232), - [anon_sym___forceinline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym___thread] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym___try] = ACTIONS(1232), - [anon_sym___leave] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym___alignof__] = ACTIONS(1232), - [anon_sym___alignof] = ACTIONS(1232), - [anon_sym__alignof] = ACTIONS(1232), - [anon_sym_alignof] = ACTIONS(1232), - [anon_sym__Alignof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), + [sym_identifier] = ACTIONS(1239), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token2] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), + [aux_sym_preproc_else_token1] = ACTIONS(1239), + [aux_sym_preproc_elif_token1] = ACTIONS(1239), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_LPAREN2] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym___extension__] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym___attribute__] = ACTIONS(1239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1239), + [anon_sym___cdecl] = ACTIONS(1239), + [anon_sym___clrcall] = ACTIONS(1239), + [anon_sym___stdcall] = ACTIONS(1239), + [anon_sym___fastcall] = ACTIONS(1239), + [anon_sym___thiscall] = ACTIONS(1239), + [anon_sym___vectorcall] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym___inline] = ACTIONS(1239), + [anon_sym___inline__] = ACTIONS(1239), + [anon_sym___forceinline] = ACTIONS(1239), + [anon_sym_thread_local] = ACTIONS(1239), + [anon_sym___thread] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_constexpr] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym___restrict__] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym__Noreturn] = ACTIONS(1239), + [anon_sym_noreturn] = ACTIONS(1239), + [anon_sym_alignas] = ACTIONS(1239), + [anon_sym__Alignas] = ACTIONS(1239), + [sym_primitive_type] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_switch] = ACTIONS(1239), + [anon_sym_case] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_goto] = ACTIONS(1239), + [anon_sym___try] = ACTIONS(1239), + [anon_sym___leave] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_sizeof] = ACTIONS(1239), + [anon_sym___alignof__] = ACTIONS(1239), + [anon_sym___alignof] = ACTIONS(1239), + [anon_sym__alignof] = ACTIONS(1239), + [anon_sym_alignof] = ACTIONS(1239), + [anon_sym__Alignof] = ACTIONS(1239), + [anon_sym_offsetof] = ACTIONS(1239), + [anon_sym__Generic] = ACTIONS(1239), + [anon_sym_asm] = ACTIONS(1239), + [anon_sym___asm__] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1241), + [anon_sym_L_SQUOTE] = ACTIONS(1241), + [anon_sym_u_SQUOTE] = ACTIONS(1241), + [anon_sym_U_SQUOTE] = ACTIONS(1241), + [anon_sym_u8_SQUOTE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_L_DQUOTE] = ACTIONS(1241), + [anon_sym_u_DQUOTE] = ACTIONS(1241), + [anon_sym_U_DQUOTE] = ACTIONS(1241), + [anon_sym_u8_DQUOTE] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [anon_sym_NULL] = ACTIONS(1239), + [anon_sym_nullptr] = ACTIONS(1239), [sym_comment] = ACTIONS(3), }, [123] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1116), - [aux_sym_preproc_elif_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [aux_sym_preproc_else_token1] = ACTIONS(1123), + [aux_sym_preproc_elif_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [124] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1116), - [aux_sym_preproc_elif_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1239), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token2] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), + [aux_sym_preproc_else_token1] = ACTIONS(1239), + [aux_sym_preproc_elif_token1] = ACTIONS(1239), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_LPAREN2] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym___extension__] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym___attribute__] = ACTIONS(1239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1239), + [anon_sym___cdecl] = ACTIONS(1239), + [anon_sym___clrcall] = ACTIONS(1239), + [anon_sym___stdcall] = ACTIONS(1239), + [anon_sym___fastcall] = ACTIONS(1239), + [anon_sym___thiscall] = ACTIONS(1239), + [anon_sym___vectorcall] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym___inline] = ACTIONS(1239), + [anon_sym___inline__] = ACTIONS(1239), + [anon_sym___forceinline] = ACTIONS(1239), + [anon_sym_thread_local] = ACTIONS(1239), + [anon_sym___thread] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_constexpr] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym___restrict__] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym__Noreturn] = ACTIONS(1239), + [anon_sym_noreturn] = ACTIONS(1239), + [anon_sym_alignas] = ACTIONS(1239), + [anon_sym__Alignas] = ACTIONS(1239), + [sym_primitive_type] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_switch] = ACTIONS(1239), + [anon_sym_case] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_goto] = ACTIONS(1239), + [anon_sym___try] = ACTIONS(1239), + [anon_sym___leave] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_sizeof] = ACTIONS(1239), + [anon_sym___alignof__] = ACTIONS(1239), + [anon_sym___alignof] = ACTIONS(1239), + [anon_sym__alignof] = ACTIONS(1239), + [anon_sym_alignof] = ACTIONS(1239), + [anon_sym__Alignof] = ACTIONS(1239), + [anon_sym_offsetof] = ACTIONS(1239), + [anon_sym__Generic] = ACTIONS(1239), + [anon_sym_asm] = ACTIONS(1239), + [anon_sym___asm__] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1241), + [anon_sym_L_SQUOTE] = ACTIONS(1241), + [anon_sym_u_SQUOTE] = ACTIONS(1241), + [anon_sym_U_SQUOTE] = ACTIONS(1241), + [anon_sym_u8_SQUOTE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_L_DQUOTE] = ACTIONS(1241), + [anon_sym_u_DQUOTE] = ACTIONS(1241), + [anon_sym_U_DQUOTE] = ACTIONS(1241), + [anon_sym_u8_DQUOTE] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [anon_sym_NULL] = ACTIONS(1239), + [anon_sym_nullptr] = ACTIONS(1239), [sym_comment] = ACTIONS(3), }, [125] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1116), - [aux_sym_preproc_elif_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1243), + [aux_sym_preproc_def_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token2] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), + [aux_sym_preproc_else_token1] = ACTIONS(1243), + [aux_sym_preproc_elif_token1] = ACTIONS(1243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1243), + [sym_preproc_directive] = ACTIONS(1243), + [anon_sym_LPAREN2] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym___extension__] = ACTIONS(1243), + [anon_sym_typedef] = ACTIONS(1243), + [anon_sym_extern] = ACTIONS(1243), + [anon_sym___attribute__] = ACTIONS(1243), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), + [anon_sym___declspec] = ACTIONS(1243), + [anon_sym___cdecl] = ACTIONS(1243), + [anon_sym___clrcall] = ACTIONS(1243), + [anon_sym___stdcall] = ACTIONS(1243), + [anon_sym___fastcall] = ACTIONS(1243), + [anon_sym___thiscall] = ACTIONS(1243), + [anon_sym___vectorcall] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_signed] = ACTIONS(1243), + [anon_sym_unsigned] = ACTIONS(1243), + [anon_sym_long] = ACTIONS(1243), + [anon_sym_short] = ACTIONS(1243), + [anon_sym_static] = ACTIONS(1243), + [anon_sym_auto] = ACTIONS(1243), + [anon_sym_register] = ACTIONS(1243), + [anon_sym_inline] = ACTIONS(1243), + [anon_sym___inline] = ACTIONS(1243), + [anon_sym___inline__] = ACTIONS(1243), + [anon_sym___forceinline] = ACTIONS(1243), + [anon_sym_thread_local] = ACTIONS(1243), + [anon_sym___thread] = ACTIONS(1243), + [anon_sym_const] = ACTIONS(1243), + [anon_sym_constexpr] = ACTIONS(1243), + [anon_sym_volatile] = ACTIONS(1243), + [anon_sym_restrict] = ACTIONS(1243), + [anon_sym___restrict__] = ACTIONS(1243), + [anon_sym__Atomic] = ACTIONS(1243), + [anon_sym__Noreturn] = ACTIONS(1243), + [anon_sym_noreturn] = ACTIONS(1243), + [anon_sym_alignas] = ACTIONS(1243), + [anon_sym__Alignas] = ACTIONS(1243), + [sym_primitive_type] = ACTIONS(1243), + [anon_sym_enum] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_case] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_goto] = ACTIONS(1243), + [anon_sym___try] = ACTIONS(1243), + [anon_sym___leave] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_sizeof] = ACTIONS(1243), + [anon_sym___alignof__] = ACTIONS(1243), + [anon_sym___alignof] = ACTIONS(1243), + [anon_sym__alignof] = ACTIONS(1243), + [anon_sym_alignof] = ACTIONS(1243), + [anon_sym__Alignof] = ACTIONS(1243), + [anon_sym_offsetof] = ACTIONS(1243), + [anon_sym__Generic] = ACTIONS(1243), + [anon_sym_asm] = ACTIONS(1243), + [anon_sym___asm__] = ACTIONS(1243), + [sym_number_literal] = ACTIONS(1245), + [anon_sym_L_SQUOTE] = ACTIONS(1245), + [anon_sym_u_SQUOTE] = ACTIONS(1245), + [anon_sym_U_SQUOTE] = ACTIONS(1245), + [anon_sym_u8_SQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1245), + [anon_sym_L_DQUOTE] = ACTIONS(1245), + [anon_sym_u_DQUOTE] = ACTIONS(1245), + [anon_sym_U_DQUOTE] = ACTIONS(1245), + [anon_sym_u8_DQUOTE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_true] = ACTIONS(1243), + [sym_false] = ACTIONS(1243), + [anon_sym_NULL] = ACTIONS(1243), + [anon_sym_nullptr] = ACTIONS(1243), [sym_comment] = ACTIONS(3), }, [126] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1116), - [aux_sym_preproc_elif_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1169), + [aux_sym_preproc_include_token1] = ACTIONS(1169), + [aux_sym_preproc_def_token1] = ACTIONS(1169), + [aux_sym_preproc_if_token1] = ACTIONS(1169), + [aux_sym_preproc_if_token2] = ACTIONS(1169), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), + [aux_sym_preproc_else_token1] = ACTIONS(1169), + [aux_sym_preproc_elif_token1] = ACTIONS(1169), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1169), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1169), + [sym_preproc_directive] = ACTIONS(1169), + [anon_sym_LPAREN2] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1169), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym___extension__] = ACTIONS(1169), + [anon_sym_typedef] = ACTIONS(1169), + [anon_sym_extern] = ACTIONS(1169), + [anon_sym___attribute__] = ACTIONS(1169), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), + [anon_sym___declspec] = ACTIONS(1169), + [anon_sym___cdecl] = ACTIONS(1169), + [anon_sym___clrcall] = ACTIONS(1169), + [anon_sym___stdcall] = ACTIONS(1169), + [anon_sym___fastcall] = ACTIONS(1169), + [anon_sym___thiscall] = ACTIONS(1169), + [anon_sym___vectorcall] = ACTIONS(1169), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_signed] = ACTIONS(1169), + [anon_sym_unsigned] = ACTIONS(1169), + [anon_sym_long] = ACTIONS(1169), + [anon_sym_short] = ACTIONS(1169), + [anon_sym_static] = ACTIONS(1169), + [anon_sym_auto] = ACTIONS(1169), + [anon_sym_register] = ACTIONS(1169), + [anon_sym_inline] = ACTIONS(1169), + [anon_sym___inline] = ACTIONS(1169), + [anon_sym___inline__] = ACTIONS(1169), + [anon_sym___forceinline] = ACTIONS(1169), + [anon_sym_thread_local] = ACTIONS(1169), + [anon_sym___thread] = ACTIONS(1169), + [anon_sym_const] = ACTIONS(1169), + [anon_sym_constexpr] = ACTIONS(1169), + [anon_sym_volatile] = ACTIONS(1169), + [anon_sym_restrict] = ACTIONS(1169), + [anon_sym___restrict__] = ACTIONS(1169), + [anon_sym__Atomic] = ACTIONS(1169), + [anon_sym__Noreturn] = ACTIONS(1169), + [anon_sym_noreturn] = ACTIONS(1169), + [anon_sym_alignas] = ACTIONS(1169), + [anon_sym__Alignas] = ACTIONS(1169), + [sym_primitive_type] = ACTIONS(1169), + [anon_sym_enum] = ACTIONS(1169), + [anon_sym_struct] = ACTIONS(1169), + [anon_sym_union] = ACTIONS(1169), + [anon_sym_if] = ACTIONS(1169), + [anon_sym_else] = ACTIONS(1169), + [anon_sym_switch] = ACTIONS(1169), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1169), + [anon_sym_do] = ACTIONS(1169), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_return] = ACTIONS(1169), + [anon_sym_break] = ACTIONS(1169), + [anon_sym_continue] = ACTIONS(1169), + [anon_sym_goto] = ACTIONS(1169), + [anon_sym___try] = ACTIONS(1169), + [anon_sym___leave] = ACTIONS(1169), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_sizeof] = ACTIONS(1169), + [anon_sym___alignof__] = ACTIONS(1169), + [anon_sym___alignof] = ACTIONS(1169), + [anon_sym__alignof] = ACTIONS(1169), + [anon_sym_alignof] = ACTIONS(1169), + [anon_sym__Alignof] = ACTIONS(1169), + [anon_sym_offsetof] = ACTIONS(1169), + [anon_sym__Generic] = ACTIONS(1169), + [anon_sym_asm] = ACTIONS(1169), + [anon_sym___asm__] = ACTIONS(1169), + [sym_number_literal] = ACTIONS(1167), + [anon_sym_L_SQUOTE] = ACTIONS(1167), + [anon_sym_u_SQUOTE] = ACTIONS(1167), + [anon_sym_U_SQUOTE] = ACTIONS(1167), + [anon_sym_u8_SQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1167), + [anon_sym_L_DQUOTE] = ACTIONS(1167), + [anon_sym_u_DQUOTE] = ACTIONS(1167), + [anon_sym_U_DQUOTE] = ACTIONS(1167), + [anon_sym_u8_DQUOTE] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_true] = ACTIONS(1169), + [sym_false] = ACTIONS(1169), + [anon_sym_NULL] = ACTIONS(1169), + [anon_sym_nullptr] = ACTIONS(1169), [sym_comment] = ACTIONS(3), }, [127] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1116), - [aux_sym_preproc_elif_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_elifdef_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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1243), + [aux_sym_preproc_def_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token2] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), + [aux_sym_preproc_else_token1] = ACTIONS(1243), + [aux_sym_preproc_elif_token1] = ACTIONS(1243), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1243), + [sym_preproc_directive] = ACTIONS(1243), + [anon_sym_LPAREN2] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym___extension__] = ACTIONS(1243), + [anon_sym_typedef] = ACTIONS(1243), + [anon_sym_extern] = ACTIONS(1243), + [anon_sym___attribute__] = ACTIONS(1243), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), + [anon_sym___declspec] = ACTIONS(1243), + [anon_sym___cdecl] = ACTIONS(1243), + [anon_sym___clrcall] = ACTIONS(1243), + [anon_sym___stdcall] = ACTIONS(1243), + [anon_sym___fastcall] = ACTIONS(1243), + [anon_sym___thiscall] = ACTIONS(1243), + [anon_sym___vectorcall] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_signed] = ACTIONS(1243), + [anon_sym_unsigned] = ACTIONS(1243), + [anon_sym_long] = ACTIONS(1243), + [anon_sym_short] = ACTIONS(1243), + [anon_sym_static] = ACTIONS(1243), + [anon_sym_auto] = ACTIONS(1243), + [anon_sym_register] = ACTIONS(1243), + [anon_sym_inline] = ACTIONS(1243), + [anon_sym___inline] = ACTIONS(1243), + [anon_sym___inline__] = ACTIONS(1243), + [anon_sym___forceinline] = ACTIONS(1243), + [anon_sym_thread_local] = ACTIONS(1243), + [anon_sym___thread] = ACTIONS(1243), + [anon_sym_const] = ACTIONS(1243), + [anon_sym_constexpr] = ACTIONS(1243), + [anon_sym_volatile] = ACTIONS(1243), + [anon_sym_restrict] = ACTIONS(1243), + [anon_sym___restrict__] = ACTIONS(1243), + [anon_sym__Atomic] = ACTIONS(1243), + [anon_sym__Noreturn] = ACTIONS(1243), + [anon_sym_noreturn] = ACTIONS(1243), + [anon_sym_alignas] = ACTIONS(1243), + [anon_sym__Alignas] = ACTIONS(1243), + [sym_primitive_type] = ACTIONS(1243), + [anon_sym_enum] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_case] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_goto] = ACTIONS(1243), + [anon_sym___try] = ACTIONS(1243), + [anon_sym___leave] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_sizeof] = ACTIONS(1243), + [anon_sym___alignof__] = ACTIONS(1243), + [anon_sym___alignof] = ACTIONS(1243), + [anon_sym__alignof] = ACTIONS(1243), + [anon_sym_alignof] = ACTIONS(1243), + [anon_sym__Alignof] = ACTIONS(1243), + [anon_sym_offsetof] = ACTIONS(1243), + [anon_sym__Generic] = ACTIONS(1243), + [anon_sym_asm] = ACTIONS(1243), + [anon_sym___asm__] = ACTIONS(1243), + [sym_number_literal] = ACTIONS(1245), + [anon_sym_L_SQUOTE] = ACTIONS(1245), + [anon_sym_u_SQUOTE] = ACTIONS(1245), + [anon_sym_U_SQUOTE] = ACTIONS(1245), + [anon_sym_u8_SQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1245), + [anon_sym_L_DQUOTE] = ACTIONS(1245), + [anon_sym_u_DQUOTE] = ACTIONS(1245), + [anon_sym_U_DQUOTE] = ACTIONS(1245), + [anon_sym_u8_DQUOTE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_true] = ACTIONS(1243), + [sym_false] = ACTIONS(1243), + [anon_sym_NULL] = ACTIONS(1243), + [anon_sym_nullptr] = ACTIONS(1243), [sym_comment] = ACTIONS(3), }, [128] = { - [sym_identifier] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token2] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), - [aux_sym_preproc_else_token1] = ACTIONS(1236), - [aux_sym_preproc_elif_token1] = ACTIONS(1236), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1236), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym___extension__] = ACTIONS(1236), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), - [anon_sym___declspec] = ACTIONS(1236), - [anon_sym___cdecl] = ACTIONS(1236), - [anon_sym___clrcall] = ACTIONS(1236), - [anon_sym___stdcall] = ACTIONS(1236), - [anon_sym___fastcall] = ACTIONS(1236), - [anon_sym___thiscall] = ACTIONS(1236), - [anon_sym___vectorcall] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym___inline] = ACTIONS(1236), - [anon_sym___inline__] = ACTIONS(1236), - [anon_sym___forceinline] = ACTIONS(1236), - [anon_sym_thread_local] = ACTIONS(1236), - [anon_sym___thread] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_constexpr] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym___restrict__] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym__Noreturn] = ACTIONS(1236), - [anon_sym_noreturn] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_case] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym___try] = ACTIONS(1236), - [anon_sym___leave] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1236), - [anon_sym___alignof__] = ACTIONS(1236), - [anon_sym___alignof] = ACTIONS(1236), - [anon_sym__alignof] = ACTIONS(1236), - [anon_sym_alignof] = ACTIONS(1236), - [anon_sym__Alignof] = ACTIONS(1236), - [anon_sym_offsetof] = ACTIONS(1236), - [anon_sym__Generic] = ACTIONS(1236), - [anon_sym_asm] = ACTIONS(1236), - [anon_sym___asm__] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1238), - [anon_sym_u_SQUOTE] = ACTIONS(1238), - [anon_sym_U_SQUOTE] = ACTIONS(1238), - [anon_sym_u8_SQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_L_DQUOTE] = ACTIONS(1238), - [anon_sym_u_DQUOTE] = ACTIONS(1238), - [anon_sym_U_DQUOTE] = ACTIONS(1238), - [anon_sym_u8_DQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [anon_sym_NULL] = ACTIONS(1236), - [anon_sym_nullptr] = ACTIONS(1236), + [sym_identifier] = ACTIONS(1247), + [aux_sym_preproc_include_token1] = ACTIONS(1247), + [aux_sym_preproc_def_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token2] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), + [aux_sym_preproc_else_token1] = ACTIONS(1247), + [aux_sym_preproc_elif_token1] = ACTIONS(1247), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1247), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1247), + [sym_preproc_directive] = ACTIONS(1247), + [anon_sym_LPAREN2] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1249), + [anon_sym_TILDE] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1247), + [anon_sym_typedef] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1247), + [anon_sym___attribute__] = ACTIONS(1247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1249), + [anon_sym___declspec] = ACTIONS(1247), + [anon_sym___cdecl] = ACTIONS(1247), + [anon_sym___clrcall] = ACTIONS(1247), + [anon_sym___stdcall] = ACTIONS(1247), + [anon_sym___fastcall] = ACTIONS(1247), + [anon_sym___thiscall] = ACTIONS(1247), + [anon_sym___vectorcall] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_signed] = ACTIONS(1247), + [anon_sym_unsigned] = ACTIONS(1247), + [anon_sym_long] = ACTIONS(1247), + [anon_sym_short] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1247), + [anon_sym_auto] = ACTIONS(1247), + [anon_sym_register] = ACTIONS(1247), + [anon_sym_inline] = ACTIONS(1247), + [anon_sym___inline] = ACTIONS(1247), + [anon_sym___inline__] = ACTIONS(1247), + [anon_sym___forceinline] = ACTIONS(1247), + [anon_sym_thread_local] = ACTIONS(1247), + [anon_sym___thread] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_constexpr] = ACTIONS(1247), + [anon_sym_volatile] = ACTIONS(1247), + [anon_sym_restrict] = ACTIONS(1247), + [anon_sym___restrict__] = ACTIONS(1247), + [anon_sym__Atomic] = ACTIONS(1247), + [anon_sym__Noreturn] = ACTIONS(1247), + [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym_alignas] = ACTIONS(1247), + [anon_sym__Alignas] = ACTIONS(1247), + [sym_primitive_type] = ACTIONS(1247), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_struct] = ACTIONS(1247), + [anon_sym_union] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_case] = ACTIONS(1247), + [anon_sym_default] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_goto] = ACTIONS(1247), + [anon_sym___try] = ACTIONS(1247), + [anon_sym___leave] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_sizeof] = ACTIONS(1247), + [anon_sym___alignof__] = ACTIONS(1247), + [anon_sym___alignof] = ACTIONS(1247), + [anon_sym__alignof] = ACTIONS(1247), + [anon_sym_alignof] = ACTIONS(1247), + [anon_sym__Alignof] = ACTIONS(1247), + [anon_sym_offsetof] = ACTIONS(1247), + [anon_sym__Generic] = ACTIONS(1247), + [anon_sym_asm] = ACTIONS(1247), + [anon_sym___asm__] = ACTIONS(1247), + [sym_number_literal] = ACTIONS(1249), + [anon_sym_L_SQUOTE] = ACTIONS(1249), + [anon_sym_u_SQUOTE] = ACTIONS(1249), + [anon_sym_U_SQUOTE] = ACTIONS(1249), + [anon_sym_u8_SQUOTE] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1249), + [anon_sym_L_DQUOTE] = ACTIONS(1249), + [anon_sym_u_DQUOTE] = ACTIONS(1249), + [anon_sym_U_DQUOTE] = ACTIONS(1249), + [anon_sym_u8_DQUOTE] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym_true] = ACTIONS(1247), + [sym_false] = ACTIONS(1247), + [anon_sym_NULL] = ACTIONS(1247), + [anon_sym_nullptr] = ACTIONS(1247), [sym_comment] = ACTIONS(3), }, [129] = { - [sym_identifier] = ACTIONS(1240), - [aux_sym_preproc_include_token1] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token2] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), - [aux_sym_preproc_else_token1] = ACTIONS(1240), - [aux_sym_preproc_elif_token1] = ACTIONS(1240), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1240), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1240), - [sym_preproc_directive] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym___extension__] = ACTIONS(1240), - [anon_sym_typedef] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym___attribute__] = ACTIONS(1240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), - [anon_sym___declspec] = ACTIONS(1240), - [anon_sym___cdecl] = ACTIONS(1240), - [anon_sym___clrcall] = ACTIONS(1240), - [anon_sym___stdcall] = ACTIONS(1240), - [anon_sym___fastcall] = ACTIONS(1240), - [anon_sym___thiscall] = ACTIONS(1240), - [anon_sym___vectorcall] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_auto] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1240), - [anon_sym_inline] = ACTIONS(1240), - [anon_sym___inline] = ACTIONS(1240), - [anon_sym___inline__] = ACTIONS(1240), - [anon_sym___forceinline] = ACTIONS(1240), - [anon_sym_thread_local] = ACTIONS(1240), - [anon_sym___thread] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_constexpr] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1240), - [anon_sym___restrict__] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1240), - [anon_sym__Noreturn] = ACTIONS(1240), - [anon_sym_noreturn] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_case] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_goto] = ACTIONS(1240), - [anon_sym___try] = ACTIONS(1240), - [anon_sym___leave] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1240), - [anon_sym___alignof__] = ACTIONS(1240), - [anon_sym___alignof] = ACTIONS(1240), - [anon_sym__alignof] = ACTIONS(1240), - [anon_sym_alignof] = ACTIONS(1240), - [anon_sym__Alignof] = ACTIONS(1240), - [anon_sym_offsetof] = ACTIONS(1240), - [anon_sym__Generic] = ACTIONS(1240), - [anon_sym_asm] = ACTIONS(1240), - [anon_sym___asm__] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1242), - [anon_sym_L_SQUOTE] = ACTIONS(1242), - [anon_sym_u_SQUOTE] = ACTIONS(1242), - [anon_sym_U_SQUOTE] = ACTIONS(1242), - [anon_sym_u8_SQUOTE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_L_DQUOTE] = ACTIONS(1242), - [anon_sym_u_DQUOTE] = ACTIONS(1242), - [anon_sym_U_DQUOTE] = ACTIONS(1242), - [anon_sym_u8_DQUOTE] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [anon_sym_NULL] = ACTIONS(1240), - [anon_sym_nullptr] = ACTIONS(1240), + [sym_identifier] = ACTIONS(1251), + [aux_sym_preproc_include_token1] = ACTIONS(1251), + [aux_sym_preproc_def_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token2] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), + [aux_sym_preproc_else_token1] = ACTIONS(1251), + [aux_sym_preproc_elif_token1] = ACTIONS(1251), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1251), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1251), + [sym_preproc_directive] = ACTIONS(1251), + [anon_sym_LPAREN2] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_TILDE] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym___extension__] = ACTIONS(1251), + [anon_sym_typedef] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym___attribute__] = ACTIONS(1251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1253), + [anon_sym___declspec] = ACTIONS(1251), + [anon_sym___cdecl] = ACTIONS(1251), + [anon_sym___clrcall] = ACTIONS(1251), + [anon_sym___stdcall] = ACTIONS(1251), + [anon_sym___fastcall] = ACTIONS(1251), + [anon_sym___thiscall] = ACTIONS(1251), + [anon_sym___vectorcall] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_signed] = ACTIONS(1251), + [anon_sym_unsigned] = ACTIONS(1251), + [anon_sym_long] = ACTIONS(1251), + [anon_sym_short] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_auto] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_inline] = ACTIONS(1251), + [anon_sym___inline] = ACTIONS(1251), + [anon_sym___inline__] = ACTIONS(1251), + [anon_sym___forceinline] = ACTIONS(1251), + [anon_sym_thread_local] = ACTIONS(1251), + [anon_sym___thread] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_constexpr] = ACTIONS(1251), + [anon_sym_volatile] = ACTIONS(1251), + [anon_sym_restrict] = ACTIONS(1251), + [anon_sym___restrict__] = ACTIONS(1251), + [anon_sym__Atomic] = ACTIONS(1251), + [anon_sym__Noreturn] = ACTIONS(1251), + [anon_sym_noreturn] = ACTIONS(1251), + [anon_sym_alignas] = ACTIONS(1251), + [anon_sym__Alignas] = ACTIONS(1251), + [sym_primitive_type] = ACTIONS(1251), + [anon_sym_enum] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_switch] = ACTIONS(1251), + [anon_sym_case] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym___try] = ACTIONS(1251), + [anon_sym___leave] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_sizeof] = ACTIONS(1251), + [anon_sym___alignof__] = ACTIONS(1251), + [anon_sym___alignof] = ACTIONS(1251), + [anon_sym__alignof] = ACTIONS(1251), + [anon_sym_alignof] = ACTIONS(1251), + [anon_sym__Alignof] = ACTIONS(1251), + [anon_sym_offsetof] = ACTIONS(1251), + [anon_sym__Generic] = ACTIONS(1251), + [anon_sym_asm] = ACTIONS(1251), + [anon_sym___asm__] = ACTIONS(1251), + [sym_number_literal] = ACTIONS(1253), + [anon_sym_L_SQUOTE] = ACTIONS(1253), + [anon_sym_u_SQUOTE] = ACTIONS(1253), + [anon_sym_U_SQUOTE] = ACTIONS(1253), + [anon_sym_u8_SQUOTE] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1253), + [anon_sym_L_DQUOTE] = ACTIONS(1253), + [anon_sym_u_DQUOTE] = ACTIONS(1253), + [anon_sym_U_DQUOTE] = ACTIONS(1253), + [anon_sym_u8_DQUOTE] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym_true] = ACTIONS(1251), + [sym_false] = ACTIONS(1251), + [anon_sym_NULL] = ACTIONS(1251), + [anon_sym_nullptr] = ACTIONS(1251), [sym_comment] = ACTIONS(3), }, [130] = { - [sym_identifier] = ACTIONS(1244), - [aux_sym_preproc_include_token1] = ACTIONS(1244), - [aux_sym_preproc_def_token1] = ACTIONS(1244), - [aux_sym_preproc_if_token1] = ACTIONS(1244), - [aux_sym_preproc_if_token2] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), - [aux_sym_preproc_else_token1] = ACTIONS(1244), - [aux_sym_preproc_elif_token1] = ACTIONS(1244), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1244), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1244), - [sym_preproc_directive] = ACTIONS(1244), - [anon_sym_LPAREN2] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_TILDE] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym___extension__] = ACTIONS(1244), - [anon_sym_typedef] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1244), - [anon_sym___attribute__] = ACTIONS(1244), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), - [anon_sym___declspec] = ACTIONS(1244), - [anon_sym___cdecl] = ACTIONS(1244), - [anon_sym___clrcall] = ACTIONS(1244), - [anon_sym___stdcall] = ACTIONS(1244), - [anon_sym___fastcall] = ACTIONS(1244), - [anon_sym___thiscall] = ACTIONS(1244), - [anon_sym___vectorcall] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = ACTIONS(1244), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_auto] = ACTIONS(1244), - [anon_sym_register] = ACTIONS(1244), - [anon_sym_inline] = ACTIONS(1244), - [anon_sym___inline] = ACTIONS(1244), - [anon_sym___inline__] = ACTIONS(1244), - [anon_sym___forceinline] = ACTIONS(1244), - [anon_sym_thread_local] = ACTIONS(1244), - [anon_sym___thread] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_constexpr] = ACTIONS(1244), - [anon_sym_volatile] = ACTIONS(1244), - [anon_sym_restrict] = ACTIONS(1244), - [anon_sym___restrict__] = ACTIONS(1244), - [anon_sym__Atomic] = ACTIONS(1244), - [anon_sym__Noreturn] = ACTIONS(1244), - [anon_sym_noreturn] = ACTIONS(1244), - [sym_primitive_type] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [anon_sym_union] = ACTIONS(1244), - [anon_sym_if] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1244), - [anon_sym_case] = ACTIONS(1244), - [anon_sym_default] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(1244), - [anon_sym_for] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1244), - [anon_sym_break] = ACTIONS(1244), - [anon_sym_continue] = ACTIONS(1244), - [anon_sym_goto] = ACTIONS(1244), - [anon_sym___try] = ACTIONS(1244), - [anon_sym___leave] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_sizeof] = ACTIONS(1244), - [anon_sym___alignof__] = ACTIONS(1244), - [anon_sym___alignof] = ACTIONS(1244), - [anon_sym__alignof] = ACTIONS(1244), - [anon_sym_alignof] = ACTIONS(1244), - [anon_sym__Alignof] = ACTIONS(1244), - [anon_sym_offsetof] = ACTIONS(1244), - [anon_sym__Generic] = ACTIONS(1244), - [anon_sym_asm] = ACTIONS(1244), - [anon_sym___asm__] = ACTIONS(1244), - [sym_number_literal] = ACTIONS(1246), - [anon_sym_L_SQUOTE] = ACTIONS(1246), - [anon_sym_u_SQUOTE] = ACTIONS(1246), - [anon_sym_U_SQUOTE] = ACTIONS(1246), - [anon_sym_u8_SQUOTE] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_L_DQUOTE] = ACTIONS(1246), - [anon_sym_u_DQUOTE] = ACTIONS(1246), - [anon_sym_U_DQUOTE] = ACTIONS(1246), - [anon_sym_u8_DQUOTE] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_true] = ACTIONS(1244), - [sym_false] = ACTIONS(1244), - [anon_sym_NULL] = ACTIONS(1244), - [anon_sym_nullptr] = ACTIONS(1244), + [sym_identifier] = ACTIONS(1255), + [aux_sym_preproc_include_token1] = ACTIONS(1255), + [aux_sym_preproc_def_token1] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1255), + [aux_sym_preproc_if_token2] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), + [aux_sym_preproc_else_token1] = ACTIONS(1255), + [aux_sym_preproc_elif_token1] = ACTIONS(1255), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1255), + [sym_preproc_directive] = ACTIONS(1255), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym___extension__] = ACTIONS(1255), + [anon_sym_typedef] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym___attribute__] = ACTIONS(1255), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1257), + [anon_sym___declspec] = ACTIONS(1255), + [anon_sym___cdecl] = ACTIONS(1255), + [anon_sym___clrcall] = ACTIONS(1255), + [anon_sym___stdcall] = ACTIONS(1255), + [anon_sym___fastcall] = ACTIONS(1255), + [anon_sym___thiscall] = ACTIONS(1255), + [anon_sym___vectorcall] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_signed] = ACTIONS(1255), + [anon_sym_unsigned] = ACTIONS(1255), + [anon_sym_long] = ACTIONS(1255), + [anon_sym_short] = ACTIONS(1255), + [anon_sym_static] = ACTIONS(1255), + [anon_sym_auto] = ACTIONS(1255), + [anon_sym_register] = ACTIONS(1255), + [anon_sym_inline] = ACTIONS(1255), + [anon_sym___inline] = ACTIONS(1255), + [anon_sym___inline__] = ACTIONS(1255), + [anon_sym___forceinline] = ACTIONS(1255), + [anon_sym_thread_local] = ACTIONS(1255), + [anon_sym___thread] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_constexpr] = ACTIONS(1255), + [anon_sym_volatile] = ACTIONS(1255), + [anon_sym_restrict] = ACTIONS(1255), + [anon_sym___restrict__] = ACTIONS(1255), + [anon_sym__Atomic] = ACTIONS(1255), + [anon_sym__Noreturn] = ACTIONS(1255), + [anon_sym_noreturn] = ACTIONS(1255), + [anon_sym_alignas] = ACTIONS(1255), + [anon_sym__Alignas] = ACTIONS(1255), + [sym_primitive_type] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_union] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_switch] = ACTIONS(1255), + [anon_sym_case] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_goto] = ACTIONS(1255), + [anon_sym___try] = ACTIONS(1255), + [anon_sym___leave] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(1255), + [anon_sym___alignof__] = ACTIONS(1255), + [anon_sym___alignof] = ACTIONS(1255), + [anon_sym__alignof] = ACTIONS(1255), + [anon_sym_alignof] = ACTIONS(1255), + [anon_sym__Alignof] = ACTIONS(1255), + [anon_sym_offsetof] = ACTIONS(1255), + [anon_sym__Generic] = ACTIONS(1255), + [anon_sym_asm] = ACTIONS(1255), + [anon_sym___asm__] = ACTIONS(1255), + [sym_number_literal] = ACTIONS(1257), + [anon_sym_L_SQUOTE] = ACTIONS(1257), + [anon_sym_u_SQUOTE] = ACTIONS(1257), + [anon_sym_U_SQUOTE] = ACTIONS(1257), + [anon_sym_u8_SQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_L_DQUOTE] = ACTIONS(1257), + [anon_sym_u_DQUOTE] = ACTIONS(1257), + [anon_sym_U_DQUOTE] = ACTIONS(1257), + [anon_sym_u8_DQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym_true] = ACTIONS(1255), + [sym_false] = ACTIONS(1255), + [anon_sym_NULL] = ACTIONS(1255), + [anon_sym_nullptr] = ACTIONS(1255), [sym_comment] = ACTIONS(3), }, [131] = { - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1248), - [aux_sym_preproc_def_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token2] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), - [aux_sym_preproc_else_token1] = ACTIONS(1248), - [aux_sym_preproc_elif_token1] = ACTIONS(1248), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1248), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1248), - [sym_preproc_directive] = ACTIONS(1248), - [anon_sym_LPAREN2] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym___extension__] = ACTIONS(1248), - [anon_sym_typedef] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym___attribute__] = ACTIONS(1248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), - [anon_sym___declspec] = ACTIONS(1248), - [anon_sym___cdecl] = ACTIONS(1248), - [anon_sym___clrcall] = ACTIONS(1248), - [anon_sym___stdcall] = ACTIONS(1248), - [anon_sym___fastcall] = ACTIONS(1248), - [anon_sym___thiscall] = ACTIONS(1248), - [anon_sym___vectorcall] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = ACTIONS(1248), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_auto] = ACTIONS(1248), - [anon_sym_register] = ACTIONS(1248), - [anon_sym_inline] = ACTIONS(1248), - [anon_sym___inline] = ACTIONS(1248), - [anon_sym___inline__] = ACTIONS(1248), - [anon_sym___forceinline] = ACTIONS(1248), - [anon_sym_thread_local] = ACTIONS(1248), - [anon_sym___thread] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_constexpr] = ACTIONS(1248), - [anon_sym_volatile] = ACTIONS(1248), - [anon_sym_restrict] = ACTIONS(1248), - [anon_sym___restrict__] = ACTIONS(1248), - [anon_sym__Atomic] = ACTIONS(1248), - [anon_sym__Noreturn] = ACTIONS(1248), - [anon_sym_noreturn] = ACTIONS(1248), - [sym_primitive_type] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_switch] = ACTIONS(1248), - [anon_sym_case] = ACTIONS(1248), - [anon_sym_default] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_do] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_goto] = ACTIONS(1248), - [anon_sym___try] = ACTIONS(1248), - [anon_sym___leave] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_sizeof] = ACTIONS(1248), - [anon_sym___alignof__] = ACTIONS(1248), - [anon_sym___alignof] = ACTIONS(1248), - [anon_sym__alignof] = ACTIONS(1248), - [anon_sym_alignof] = ACTIONS(1248), - [anon_sym__Alignof] = ACTIONS(1248), - [anon_sym_offsetof] = ACTIONS(1248), - [anon_sym__Generic] = ACTIONS(1248), - [anon_sym_asm] = ACTIONS(1248), - [anon_sym___asm__] = ACTIONS(1248), - [sym_number_literal] = ACTIONS(1250), - [anon_sym_L_SQUOTE] = ACTIONS(1250), - [anon_sym_u_SQUOTE] = ACTIONS(1250), - [anon_sym_U_SQUOTE] = ACTIONS(1250), - [anon_sym_u8_SQUOTE] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_L_DQUOTE] = ACTIONS(1250), - [anon_sym_u_DQUOTE] = ACTIONS(1250), - [anon_sym_U_DQUOTE] = ACTIONS(1250), - [anon_sym_u8_DQUOTE] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [anon_sym_NULL] = ACTIONS(1248), - [anon_sym_nullptr] = ACTIONS(1248), + [sym_identifier] = ACTIONS(1259), + [aux_sym_preproc_include_token1] = ACTIONS(1259), + [aux_sym_preproc_def_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token2] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), + [aux_sym_preproc_else_token1] = ACTIONS(1259), + [aux_sym_preproc_elif_token1] = ACTIONS(1259), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1259), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1259), + [sym_preproc_directive] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym___extension__] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), + [anon_sym___declspec] = ACTIONS(1259), + [anon_sym___cdecl] = ACTIONS(1259), + [anon_sym___clrcall] = ACTIONS(1259), + [anon_sym___stdcall] = ACTIONS(1259), + [anon_sym___fastcall] = ACTIONS(1259), + [anon_sym___thiscall] = ACTIONS(1259), + [anon_sym___vectorcall] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_inline] = ACTIONS(1259), + [anon_sym___inline] = ACTIONS(1259), + [anon_sym___inline__] = ACTIONS(1259), + [anon_sym___forceinline] = ACTIONS(1259), + [anon_sym_thread_local] = ACTIONS(1259), + [anon_sym___thread] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_constexpr] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym___restrict__] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [anon_sym__Noreturn] = ACTIONS(1259), + [anon_sym_noreturn] = ACTIONS(1259), + [anon_sym_alignas] = ACTIONS(1259), + [anon_sym__Alignas] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [anon_sym_case] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_goto] = ACTIONS(1259), + [anon_sym___try] = ACTIONS(1259), + [anon_sym___leave] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_sizeof] = ACTIONS(1259), + [anon_sym___alignof__] = ACTIONS(1259), + [anon_sym___alignof] = ACTIONS(1259), + [anon_sym__alignof] = ACTIONS(1259), + [anon_sym_alignof] = ACTIONS(1259), + [anon_sym__Alignof] = ACTIONS(1259), + [anon_sym_offsetof] = ACTIONS(1259), + [anon_sym__Generic] = ACTIONS(1259), + [anon_sym_asm] = ACTIONS(1259), + [anon_sym___asm__] = ACTIONS(1259), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_L_SQUOTE] = ACTIONS(1261), + [anon_sym_u_SQUOTE] = ACTIONS(1261), + [anon_sym_U_SQUOTE] = ACTIONS(1261), + [anon_sym_u8_SQUOTE] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_L_DQUOTE] = ACTIONS(1261), + [anon_sym_u_DQUOTE] = ACTIONS(1261), + [anon_sym_U_DQUOTE] = ACTIONS(1261), + [anon_sym_u8_DQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_true] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [anon_sym_NULL] = ACTIONS(1259), + [anon_sym_nullptr] = ACTIONS(1259), [sym_comment] = ACTIONS(3), }, [132] = { - [sym_identifier] = ACTIONS(1252), - [aux_sym_preproc_include_token1] = ACTIONS(1252), - [aux_sym_preproc_def_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token2] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), - [aux_sym_preproc_else_token1] = ACTIONS(1252), - [aux_sym_preproc_elif_token1] = ACTIONS(1252), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1252), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1252), - [sym_preproc_directive] = ACTIONS(1252), - [anon_sym_LPAREN2] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1252), - [anon_sym_typedef] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym___attribute__] = ACTIONS(1252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), - [anon_sym___declspec] = ACTIONS(1252), - [anon_sym___cdecl] = ACTIONS(1252), - [anon_sym___clrcall] = ACTIONS(1252), - [anon_sym___stdcall] = ACTIONS(1252), - [anon_sym___fastcall] = ACTIONS(1252), - [anon_sym___thiscall] = ACTIONS(1252), - [anon_sym___vectorcall] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = ACTIONS(1252), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_auto] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_inline] = ACTIONS(1252), - [anon_sym___inline] = ACTIONS(1252), - [anon_sym___inline__] = ACTIONS(1252), - [anon_sym___forceinline] = ACTIONS(1252), - [anon_sym_thread_local] = ACTIONS(1252), - [anon_sym___thread] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_constexpr] = ACTIONS(1252), - [anon_sym_volatile] = ACTIONS(1252), - [anon_sym_restrict] = ACTIONS(1252), - [anon_sym___restrict__] = ACTIONS(1252), - [anon_sym__Atomic] = ACTIONS(1252), - [anon_sym__Noreturn] = ACTIONS(1252), - [anon_sym_noreturn] = ACTIONS(1252), - [sym_primitive_type] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_switch] = ACTIONS(1252), - [anon_sym_case] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym___try] = ACTIONS(1252), - [anon_sym___leave] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(1252), - [anon_sym___alignof__] = ACTIONS(1252), - [anon_sym___alignof] = ACTIONS(1252), - [anon_sym__alignof] = ACTIONS(1252), - [anon_sym_alignof] = ACTIONS(1252), - [anon_sym__Alignof] = ACTIONS(1252), - [anon_sym_offsetof] = ACTIONS(1252), - [anon_sym__Generic] = ACTIONS(1252), - [anon_sym_asm] = ACTIONS(1252), - [anon_sym___asm__] = ACTIONS(1252), - [sym_number_literal] = ACTIONS(1254), - [anon_sym_L_SQUOTE] = ACTIONS(1254), - [anon_sym_u_SQUOTE] = ACTIONS(1254), - [anon_sym_U_SQUOTE] = ACTIONS(1254), - [anon_sym_u8_SQUOTE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_L_DQUOTE] = ACTIONS(1254), - [anon_sym_u_DQUOTE] = ACTIONS(1254), - [anon_sym_U_DQUOTE] = ACTIONS(1254), - [anon_sym_u8_DQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_true] = ACTIONS(1252), - [sym_false] = ACTIONS(1252), - [anon_sym_NULL] = ACTIONS(1252), - [anon_sym_nullptr] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1263), + [aux_sym_preproc_include_token1] = ACTIONS(1263), + [aux_sym_preproc_def_token1] = ACTIONS(1263), + [aux_sym_preproc_if_token1] = ACTIONS(1263), + [aux_sym_preproc_if_token2] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), + [aux_sym_preproc_else_token1] = ACTIONS(1263), + [aux_sym_preproc_elif_token1] = ACTIONS(1263), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1263), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1263), + [sym_preproc_directive] = ACTIONS(1263), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym___extension__] = ACTIONS(1263), + [anon_sym_typedef] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym___attribute__] = ACTIONS(1263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), + [anon_sym___declspec] = ACTIONS(1263), + [anon_sym___cdecl] = ACTIONS(1263), + [anon_sym___clrcall] = ACTIONS(1263), + [anon_sym___stdcall] = ACTIONS(1263), + [anon_sym___fastcall] = ACTIONS(1263), + [anon_sym___thiscall] = ACTIONS(1263), + [anon_sym___vectorcall] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_signed] = ACTIONS(1263), + [anon_sym_unsigned] = ACTIONS(1263), + [anon_sym_long] = ACTIONS(1263), + [anon_sym_short] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_auto] = ACTIONS(1263), + [anon_sym_register] = ACTIONS(1263), + [anon_sym_inline] = ACTIONS(1263), + [anon_sym___inline] = ACTIONS(1263), + [anon_sym___inline__] = ACTIONS(1263), + [anon_sym___forceinline] = ACTIONS(1263), + [anon_sym_thread_local] = ACTIONS(1263), + [anon_sym___thread] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_constexpr] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym___restrict__] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym__Noreturn] = ACTIONS(1263), + [anon_sym_noreturn] = ACTIONS(1263), + [anon_sym_alignas] = ACTIONS(1263), + [anon_sym__Alignas] = ACTIONS(1263), + [sym_primitive_type] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_goto] = ACTIONS(1263), + [anon_sym___try] = ACTIONS(1263), + [anon_sym___leave] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_sizeof] = ACTIONS(1263), + [anon_sym___alignof__] = ACTIONS(1263), + [anon_sym___alignof] = ACTIONS(1263), + [anon_sym__alignof] = ACTIONS(1263), + [anon_sym_alignof] = ACTIONS(1263), + [anon_sym__Alignof] = ACTIONS(1263), + [anon_sym_offsetof] = ACTIONS(1263), + [anon_sym__Generic] = ACTIONS(1263), + [anon_sym_asm] = ACTIONS(1263), + [anon_sym___asm__] = ACTIONS(1263), + [sym_number_literal] = ACTIONS(1265), + [anon_sym_L_SQUOTE] = ACTIONS(1265), + [anon_sym_u_SQUOTE] = ACTIONS(1265), + [anon_sym_U_SQUOTE] = ACTIONS(1265), + [anon_sym_u8_SQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_L_DQUOTE] = ACTIONS(1265), + [anon_sym_u_DQUOTE] = ACTIONS(1265), + [anon_sym_U_DQUOTE] = ACTIONS(1265), + [anon_sym_u8_DQUOTE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_true] = ACTIONS(1263), + [sym_false] = ACTIONS(1263), + [anon_sym_NULL] = ACTIONS(1263), + [anon_sym_nullptr] = ACTIONS(1263), [sym_comment] = ACTIONS(3), }, [133] = { - [sym_identifier] = ACTIONS(1256), - [aux_sym_preproc_include_token1] = ACTIONS(1256), - [aux_sym_preproc_def_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token2] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), - [aux_sym_preproc_else_token1] = ACTIONS(1256), - [aux_sym_preproc_elif_token1] = ACTIONS(1256), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1256), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1256), - [sym_preproc_directive] = ACTIONS(1256), - [anon_sym_LPAREN2] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym___extension__] = ACTIONS(1256), - [anon_sym_typedef] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym___attribute__] = ACTIONS(1256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), - [anon_sym___declspec] = ACTIONS(1256), - [anon_sym___cdecl] = ACTIONS(1256), - [anon_sym___clrcall] = ACTIONS(1256), - [anon_sym___stdcall] = ACTIONS(1256), - [anon_sym___fastcall] = ACTIONS(1256), - [anon_sym___thiscall] = ACTIONS(1256), - [anon_sym___vectorcall] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = ACTIONS(1256), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_auto] = ACTIONS(1256), - [anon_sym_register] = ACTIONS(1256), - [anon_sym_inline] = ACTIONS(1256), - [anon_sym___inline] = ACTIONS(1256), - [anon_sym___inline__] = ACTIONS(1256), - [anon_sym___forceinline] = ACTIONS(1256), - [anon_sym_thread_local] = ACTIONS(1256), - [anon_sym___thread] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_constexpr] = ACTIONS(1256), - [anon_sym_volatile] = ACTIONS(1256), - [anon_sym_restrict] = ACTIONS(1256), - [anon_sym___restrict__] = ACTIONS(1256), - [anon_sym__Atomic] = ACTIONS(1256), - [anon_sym__Noreturn] = ACTIONS(1256), - [anon_sym_noreturn] = ACTIONS(1256), - [sym_primitive_type] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_goto] = ACTIONS(1256), - [anon_sym___try] = ACTIONS(1256), - [anon_sym___leave] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_sizeof] = ACTIONS(1256), - [anon_sym___alignof__] = ACTIONS(1256), - [anon_sym___alignof] = ACTIONS(1256), - [anon_sym__alignof] = ACTIONS(1256), - [anon_sym_alignof] = ACTIONS(1256), - [anon_sym__Alignof] = ACTIONS(1256), - [anon_sym_offsetof] = ACTIONS(1256), - [anon_sym__Generic] = ACTIONS(1256), - [anon_sym_asm] = ACTIONS(1256), - [anon_sym___asm__] = ACTIONS(1256), - [sym_number_literal] = ACTIONS(1258), - [anon_sym_L_SQUOTE] = ACTIONS(1258), - [anon_sym_u_SQUOTE] = ACTIONS(1258), - [anon_sym_U_SQUOTE] = ACTIONS(1258), - [anon_sym_u8_SQUOTE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_L_DQUOTE] = ACTIONS(1258), - [anon_sym_u_DQUOTE] = ACTIONS(1258), - [anon_sym_U_DQUOTE] = ACTIONS(1258), - [anon_sym_u8_DQUOTE] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_NULL] = ACTIONS(1256), - [anon_sym_nullptr] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_include_token1] = ACTIONS(1267), + [aux_sym_preproc_def_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token2] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), + [aux_sym_preproc_else_token1] = ACTIONS(1267), + [aux_sym_preproc_elif_token1] = ACTIONS(1267), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1267), + [sym_preproc_directive] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_TILDE] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym___extension__] = ACTIONS(1267), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1269), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [anon_sym___inline] = ACTIONS(1267), + [anon_sym___inline__] = ACTIONS(1267), + [anon_sym___forceinline] = ACTIONS(1267), + [anon_sym_thread_local] = ACTIONS(1267), + [anon_sym___thread] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_constexpr] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym___restrict__] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym__Noreturn] = ACTIONS(1267), + [anon_sym_noreturn] = ACTIONS(1267), + [anon_sym_alignas] = ACTIONS(1267), + [anon_sym__Alignas] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym___try] = ACTIONS(1267), + [anon_sym___leave] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(1267), + [anon_sym___alignof__] = ACTIONS(1267), + [anon_sym___alignof] = ACTIONS(1267), + [anon_sym__alignof] = ACTIONS(1267), + [anon_sym_alignof] = ACTIONS(1267), + [anon_sym__Alignof] = ACTIONS(1267), + [anon_sym_offsetof] = ACTIONS(1267), + [anon_sym__Generic] = ACTIONS(1267), + [anon_sym_asm] = ACTIONS(1267), + [anon_sym___asm__] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1269), + [anon_sym_L_SQUOTE] = ACTIONS(1269), + [anon_sym_u_SQUOTE] = ACTIONS(1269), + [anon_sym_U_SQUOTE] = ACTIONS(1269), + [anon_sym_u8_SQUOTE] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1269), + [anon_sym_L_DQUOTE] = ACTIONS(1269), + [anon_sym_u_DQUOTE] = ACTIONS(1269), + [anon_sym_U_DQUOTE] = ACTIONS(1269), + [anon_sym_u8_DQUOTE] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [anon_sym_NULL] = ACTIONS(1267), + [anon_sym_nullptr] = ACTIONS(1267), [sym_comment] = ACTIONS(3), }, [134] = { - [sym_identifier] = ACTIONS(1260), - [aux_sym_preproc_include_token1] = ACTIONS(1260), - [aux_sym_preproc_def_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token2] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), - [aux_sym_preproc_else_token1] = ACTIONS(1260), - [aux_sym_preproc_elif_token1] = ACTIONS(1260), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1260), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1260), - [sym_preproc_directive] = ACTIONS(1260), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym___extension__] = ACTIONS(1260), - [anon_sym_typedef] = ACTIONS(1260), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym___attribute__] = ACTIONS(1260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), - [anon_sym___declspec] = ACTIONS(1260), - [anon_sym___cdecl] = ACTIONS(1260), - [anon_sym___clrcall] = ACTIONS(1260), - [anon_sym___stdcall] = ACTIONS(1260), - [anon_sym___fastcall] = ACTIONS(1260), - [anon_sym___thiscall] = ACTIONS(1260), - [anon_sym___vectorcall] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_auto] = ACTIONS(1260), - [anon_sym_register] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), - [anon_sym___inline] = ACTIONS(1260), - [anon_sym___inline__] = ACTIONS(1260), - [anon_sym___forceinline] = ACTIONS(1260), - [anon_sym_thread_local] = ACTIONS(1260), - [anon_sym___thread] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_constexpr] = ACTIONS(1260), - [anon_sym_volatile] = ACTIONS(1260), - [anon_sym_restrict] = ACTIONS(1260), - [anon_sym___restrict__] = ACTIONS(1260), - [anon_sym__Atomic] = ACTIONS(1260), - [anon_sym__Noreturn] = ACTIONS(1260), - [anon_sym_noreturn] = ACTIONS(1260), - [sym_primitive_type] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [anon_sym_case] = ACTIONS(1260), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [anon_sym___try] = ACTIONS(1260), - [anon_sym___leave] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_sizeof] = ACTIONS(1260), - [anon_sym___alignof__] = ACTIONS(1260), - [anon_sym___alignof] = ACTIONS(1260), - [anon_sym__alignof] = ACTIONS(1260), - [anon_sym_alignof] = ACTIONS(1260), - [anon_sym__Alignof] = ACTIONS(1260), - [anon_sym_offsetof] = ACTIONS(1260), - [anon_sym__Generic] = ACTIONS(1260), - [anon_sym_asm] = ACTIONS(1260), - [anon_sym___asm__] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_L_SQUOTE] = ACTIONS(1262), - [anon_sym_u_SQUOTE] = ACTIONS(1262), - [anon_sym_U_SQUOTE] = ACTIONS(1262), - [anon_sym_u8_SQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_L_DQUOTE] = ACTIONS(1262), - [anon_sym_u_DQUOTE] = ACTIONS(1262), - [anon_sym_U_DQUOTE] = ACTIONS(1262), - [anon_sym_u8_DQUOTE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym_true] = ACTIONS(1260), - [sym_false] = ACTIONS(1260), - [anon_sym_NULL] = ACTIONS(1260), - [anon_sym_nullptr] = ACTIONS(1260), + [sym_identifier] = ACTIONS(1271), + [aux_sym_preproc_include_token1] = ACTIONS(1271), + [aux_sym_preproc_def_token1] = ACTIONS(1271), + [aux_sym_preproc_if_token1] = ACTIONS(1271), + [aux_sym_preproc_if_token2] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1271), + [aux_sym_preproc_else_token1] = ACTIONS(1271), + [aux_sym_preproc_elif_token1] = ACTIONS(1271), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1271), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1271), + [sym_preproc_directive] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym___extension__] = ACTIONS(1271), + [anon_sym_typedef] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym___attribute__] = ACTIONS(1271), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1273), + [anon_sym___declspec] = ACTIONS(1271), + [anon_sym___cdecl] = ACTIONS(1271), + [anon_sym___clrcall] = ACTIONS(1271), + [anon_sym___stdcall] = ACTIONS(1271), + [anon_sym___fastcall] = ACTIONS(1271), + [anon_sym___thiscall] = ACTIONS(1271), + [anon_sym___vectorcall] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1271), + [anon_sym_unsigned] = ACTIONS(1271), + [anon_sym_long] = ACTIONS(1271), + [anon_sym_short] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_auto] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_inline] = ACTIONS(1271), + [anon_sym___inline] = ACTIONS(1271), + [anon_sym___inline__] = ACTIONS(1271), + [anon_sym___forceinline] = ACTIONS(1271), + [anon_sym_thread_local] = ACTIONS(1271), + [anon_sym___thread] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_constexpr] = ACTIONS(1271), + [anon_sym_volatile] = ACTIONS(1271), + [anon_sym_restrict] = ACTIONS(1271), + [anon_sym___restrict__] = ACTIONS(1271), + [anon_sym__Atomic] = ACTIONS(1271), + [anon_sym__Noreturn] = ACTIONS(1271), + [anon_sym_noreturn] = ACTIONS(1271), + [anon_sym_alignas] = ACTIONS(1271), + [anon_sym__Alignas] = ACTIONS(1271), + [sym_primitive_type] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_goto] = ACTIONS(1271), + [anon_sym___try] = ACTIONS(1271), + [anon_sym___leave] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1271), + [anon_sym___alignof__] = ACTIONS(1271), + [anon_sym___alignof] = ACTIONS(1271), + [anon_sym__alignof] = ACTIONS(1271), + [anon_sym_alignof] = ACTIONS(1271), + [anon_sym__Alignof] = ACTIONS(1271), + [anon_sym_offsetof] = ACTIONS(1271), + [anon_sym__Generic] = ACTIONS(1271), + [anon_sym_asm] = ACTIONS(1271), + [anon_sym___asm__] = ACTIONS(1271), + [sym_number_literal] = ACTIONS(1273), + [anon_sym_L_SQUOTE] = ACTIONS(1273), + [anon_sym_u_SQUOTE] = ACTIONS(1273), + [anon_sym_U_SQUOTE] = ACTIONS(1273), + [anon_sym_u8_SQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1273), + [anon_sym_L_DQUOTE] = ACTIONS(1273), + [anon_sym_u_DQUOTE] = ACTIONS(1273), + [anon_sym_U_DQUOTE] = ACTIONS(1273), + [anon_sym_u8_DQUOTE] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_true] = ACTIONS(1271), + [sym_false] = ACTIONS(1271), + [anon_sym_NULL] = ACTIONS(1271), + [anon_sym_nullptr] = ACTIONS(1271), [sym_comment] = ACTIONS(3), }, [135] = { - [sym_identifier] = ACTIONS(1264), - [aux_sym_preproc_include_token1] = ACTIONS(1264), - [aux_sym_preproc_def_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token2] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), - [aux_sym_preproc_else_token1] = ACTIONS(1264), - [aux_sym_preproc_elif_token1] = ACTIONS(1264), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1264), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1264), - [sym_preproc_directive] = ACTIONS(1264), - [anon_sym_LPAREN2] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym___extension__] = ACTIONS(1264), - [anon_sym_typedef] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym___attribute__] = ACTIONS(1264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), - [anon_sym___declspec] = ACTIONS(1264), - [anon_sym___cdecl] = ACTIONS(1264), - [anon_sym___clrcall] = ACTIONS(1264), - [anon_sym___stdcall] = ACTIONS(1264), - [anon_sym___fastcall] = ACTIONS(1264), - [anon_sym___thiscall] = ACTIONS(1264), - [anon_sym___vectorcall] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_auto] = ACTIONS(1264), - [anon_sym_register] = ACTIONS(1264), - [anon_sym_inline] = ACTIONS(1264), - [anon_sym___inline] = ACTIONS(1264), - [anon_sym___inline__] = ACTIONS(1264), - [anon_sym___forceinline] = ACTIONS(1264), - [anon_sym_thread_local] = ACTIONS(1264), - [anon_sym___thread] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_constexpr] = ACTIONS(1264), - [anon_sym_volatile] = ACTIONS(1264), - [anon_sym_restrict] = ACTIONS(1264), - [anon_sym___restrict__] = ACTIONS(1264), - [anon_sym__Atomic] = ACTIONS(1264), - [anon_sym__Noreturn] = ACTIONS(1264), - [anon_sym_noreturn] = ACTIONS(1264), - [sym_primitive_type] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_switch] = ACTIONS(1264), - [anon_sym_case] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_do] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_goto] = ACTIONS(1264), - [anon_sym___try] = ACTIONS(1264), - [anon_sym___leave] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_sizeof] = ACTIONS(1264), - [anon_sym___alignof__] = ACTIONS(1264), - [anon_sym___alignof] = ACTIONS(1264), - [anon_sym__alignof] = ACTIONS(1264), - [anon_sym_alignof] = ACTIONS(1264), - [anon_sym__Alignof] = ACTIONS(1264), - [anon_sym_offsetof] = ACTIONS(1264), - [anon_sym__Generic] = ACTIONS(1264), - [anon_sym_asm] = ACTIONS(1264), - [anon_sym___asm__] = ACTIONS(1264), - [sym_number_literal] = ACTIONS(1266), - [anon_sym_L_SQUOTE] = ACTIONS(1266), - [anon_sym_u_SQUOTE] = ACTIONS(1266), - [anon_sym_U_SQUOTE] = ACTIONS(1266), - [anon_sym_u8_SQUOTE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_L_DQUOTE] = ACTIONS(1266), - [anon_sym_u_DQUOTE] = ACTIONS(1266), - [anon_sym_U_DQUOTE] = ACTIONS(1266), - [anon_sym_u8_DQUOTE] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_true] = ACTIONS(1264), - [sym_false] = ACTIONS(1264), - [anon_sym_NULL] = ACTIONS(1264), - [anon_sym_nullptr] = ACTIONS(1264), + [sym_identifier] = ACTIONS(1275), + [aux_sym_preproc_include_token1] = ACTIONS(1275), + [aux_sym_preproc_def_token1] = ACTIONS(1275), + [aux_sym_preproc_if_token1] = ACTIONS(1275), + [aux_sym_preproc_if_token2] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1275), + [aux_sym_preproc_else_token1] = ACTIONS(1275), + [aux_sym_preproc_elif_token1] = ACTIONS(1275), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1275), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1275), + [sym_preproc_directive] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym___extension__] = ACTIONS(1275), + [anon_sym_typedef] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym___attribute__] = ACTIONS(1275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1277), + [anon_sym___declspec] = ACTIONS(1275), + [anon_sym___cdecl] = ACTIONS(1275), + [anon_sym___clrcall] = ACTIONS(1275), + [anon_sym___stdcall] = ACTIONS(1275), + [anon_sym___fastcall] = ACTIONS(1275), + [anon_sym___thiscall] = ACTIONS(1275), + [anon_sym___vectorcall] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_signed] = ACTIONS(1275), + [anon_sym_unsigned] = ACTIONS(1275), + [anon_sym_long] = ACTIONS(1275), + [anon_sym_short] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_auto] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_inline] = ACTIONS(1275), + [anon_sym___inline] = ACTIONS(1275), + [anon_sym___inline__] = ACTIONS(1275), + [anon_sym___forceinline] = ACTIONS(1275), + [anon_sym_thread_local] = ACTIONS(1275), + [anon_sym___thread] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_constexpr] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1275), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym___restrict__] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1275), + [anon_sym__Noreturn] = ACTIONS(1275), + [anon_sym_noreturn] = ACTIONS(1275), + [anon_sym_alignas] = ACTIONS(1275), + [anon_sym__Alignas] = ACTIONS(1275), + [sym_primitive_type] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_case] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_goto] = ACTIONS(1275), + [anon_sym___try] = ACTIONS(1275), + [anon_sym___leave] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1275), + [anon_sym___alignof__] = ACTIONS(1275), + [anon_sym___alignof] = ACTIONS(1275), + [anon_sym__alignof] = ACTIONS(1275), + [anon_sym_alignof] = ACTIONS(1275), + [anon_sym__Alignof] = ACTIONS(1275), + [anon_sym_offsetof] = ACTIONS(1275), + [anon_sym__Generic] = ACTIONS(1275), + [anon_sym_asm] = ACTIONS(1275), + [anon_sym___asm__] = ACTIONS(1275), + [sym_number_literal] = ACTIONS(1277), + [anon_sym_L_SQUOTE] = ACTIONS(1277), + [anon_sym_u_SQUOTE] = ACTIONS(1277), + [anon_sym_U_SQUOTE] = ACTIONS(1277), + [anon_sym_u8_SQUOTE] = ACTIONS(1277), + [anon_sym_SQUOTE] = ACTIONS(1277), + [anon_sym_L_DQUOTE] = ACTIONS(1277), + [anon_sym_u_DQUOTE] = ACTIONS(1277), + [anon_sym_U_DQUOTE] = ACTIONS(1277), + [anon_sym_u8_DQUOTE] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym_true] = ACTIONS(1275), + [sym_false] = ACTIONS(1275), + [anon_sym_NULL] = ACTIONS(1275), + [anon_sym_nullptr] = ACTIONS(1275), [sym_comment] = ACTIONS(3), }, [136] = { - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token2] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [aux_sym_preproc_else_token1] = ACTIONS(1268), - [aux_sym_preproc_elif_token1] = ACTIONS(1268), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym___extension__] = ACTIONS(1268), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym___inline] = ACTIONS(1268), - [anon_sym___inline__] = ACTIONS(1268), - [anon_sym___forceinline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym___thread] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym___try] = ACTIONS(1268), - [anon_sym___leave] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym___alignof__] = ACTIONS(1268), - [anon_sym___alignof] = ACTIONS(1268), - [anon_sym__alignof] = ACTIONS(1268), - [anon_sym_alignof] = ACTIONS(1268), - [anon_sym__Alignof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), + [sym_identifier] = ACTIONS(1279), + [aux_sym_preproc_include_token1] = ACTIONS(1279), + [aux_sym_preproc_def_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token2] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), + [aux_sym_preproc_else_token1] = ACTIONS(1279), + [aux_sym_preproc_elif_token1] = ACTIONS(1279), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1279), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1279), + [sym_preproc_directive] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym___extension__] = ACTIONS(1279), + [anon_sym_typedef] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym___attribute__] = ACTIONS(1279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), + [anon_sym___declspec] = ACTIONS(1279), + [anon_sym___cdecl] = ACTIONS(1279), + [anon_sym___clrcall] = ACTIONS(1279), + [anon_sym___stdcall] = ACTIONS(1279), + [anon_sym___fastcall] = ACTIONS(1279), + [anon_sym___thiscall] = ACTIONS(1279), + [anon_sym___vectorcall] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_signed] = ACTIONS(1279), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_auto] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_inline] = ACTIONS(1279), + [anon_sym___inline] = ACTIONS(1279), + [anon_sym___inline__] = ACTIONS(1279), + [anon_sym___forceinline] = ACTIONS(1279), + [anon_sym_thread_local] = ACTIONS(1279), + [anon_sym___thread] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_constexpr] = ACTIONS(1279), + [anon_sym_volatile] = ACTIONS(1279), + [anon_sym_restrict] = ACTIONS(1279), + [anon_sym___restrict__] = ACTIONS(1279), + [anon_sym__Atomic] = ACTIONS(1279), + [anon_sym__Noreturn] = ACTIONS(1279), + [anon_sym_noreturn] = ACTIONS(1279), + [anon_sym_alignas] = ACTIONS(1279), + [anon_sym__Alignas] = ACTIONS(1279), + [sym_primitive_type] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_switch] = ACTIONS(1279), + [anon_sym_case] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_goto] = ACTIONS(1279), + [anon_sym___try] = ACTIONS(1279), + [anon_sym___leave] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1279), + [anon_sym___alignof__] = ACTIONS(1279), + [anon_sym___alignof] = ACTIONS(1279), + [anon_sym__alignof] = ACTIONS(1279), + [anon_sym_alignof] = ACTIONS(1279), + [anon_sym__Alignof] = ACTIONS(1279), + [anon_sym_offsetof] = ACTIONS(1279), + [anon_sym__Generic] = ACTIONS(1279), + [anon_sym_asm] = ACTIONS(1279), + [anon_sym___asm__] = ACTIONS(1279), + [sym_number_literal] = ACTIONS(1281), + [anon_sym_L_SQUOTE] = ACTIONS(1281), + [anon_sym_u_SQUOTE] = ACTIONS(1281), + [anon_sym_U_SQUOTE] = ACTIONS(1281), + [anon_sym_u8_SQUOTE] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_L_DQUOTE] = ACTIONS(1281), + [anon_sym_u_DQUOTE] = ACTIONS(1281), + [anon_sym_U_DQUOTE] = ACTIONS(1281), + [anon_sym_u8_DQUOTE] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [anon_sym_NULL] = ACTIONS(1279), + [anon_sym_nullptr] = ACTIONS(1279), [sym_comment] = ACTIONS(3), }, [137] = { - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token2] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [aux_sym_preproc_else_token1] = ACTIONS(1272), - [aux_sym_preproc_elif_token1] = ACTIONS(1272), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym___extension__] = ACTIONS(1272), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym___inline] = ACTIONS(1272), - [anon_sym___inline__] = ACTIONS(1272), - [anon_sym___forceinline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym___thread] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym___try] = ACTIONS(1272), - [anon_sym___leave] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym___alignof__] = ACTIONS(1272), - [anon_sym___alignof] = ACTIONS(1272), - [anon_sym__alignof] = ACTIONS(1272), - [anon_sym_alignof] = ACTIONS(1272), - [anon_sym__Alignof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), + [sym_identifier] = ACTIONS(1283), + [aux_sym_preproc_include_token1] = ACTIONS(1283), + [aux_sym_preproc_def_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token2] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), + [aux_sym_preproc_else_token1] = ACTIONS(1283), + [aux_sym_preproc_elif_token1] = ACTIONS(1283), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1283), + [sym_preproc_directive] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1285), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym___extension__] = ACTIONS(1283), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1285), + [anon_sym___declspec] = ACTIONS(1283), + [anon_sym___cdecl] = ACTIONS(1283), + [anon_sym___clrcall] = ACTIONS(1283), + [anon_sym___stdcall] = ACTIONS(1283), + [anon_sym___fastcall] = ACTIONS(1283), + [anon_sym___thiscall] = ACTIONS(1283), + [anon_sym___vectorcall] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [anon_sym___inline] = ACTIONS(1283), + [anon_sym___inline__] = ACTIONS(1283), + [anon_sym___forceinline] = ACTIONS(1283), + [anon_sym_thread_local] = ACTIONS(1283), + [anon_sym___thread] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_constexpr] = ACTIONS(1283), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [anon_sym___restrict__] = ACTIONS(1283), + [anon_sym__Atomic] = ACTIONS(1283), + [anon_sym__Noreturn] = ACTIONS(1283), + [anon_sym_noreturn] = ACTIONS(1283), + [anon_sym_alignas] = ACTIONS(1283), + [anon_sym__Alignas] = ACTIONS(1283), + [sym_primitive_type] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_case] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_goto] = ACTIONS(1283), + [anon_sym___try] = ACTIONS(1283), + [anon_sym___leave] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym___alignof__] = ACTIONS(1283), + [anon_sym___alignof] = ACTIONS(1283), + [anon_sym__alignof] = ACTIONS(1283), + [anon_sym_alignof] = ACTIONS(1283), + [anon_sym__Alignof] = ACTIONS(1283), + [anon_sym_offsetof] = ACTIONS(1283), + [anon_sym__Generic] = ACTIONS(1283), + [anon_sym_asm] = ACTIONS(1283), + [anon_sym___asm__] = ACTIONS(1283), + [sym_number_literal] = ACTIONS(1285), + [anon_sym_L_SQUOTE] = ACTIONS(1285), + [anon_sym_u_SQUOTE] = ACTIONS(1285), + [anon_sym_U_SQUOTE] = ACTIONS(1285), + [anon_sym_u8_SQUOTE] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1285), + [anon_sym_L_DQUOTE] = ACTIONS(1285), + [anon_sym_u_DQUOTE] = ACTIONS(1285), + [anon_sym_U_DQUOTE] = ACTIONS(1285), + [anon_sym_u8_DQUOTE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [anon_sym_NULL] = ACTIONS(1283), + [anon_sym_nullptr] = ACTIONS(1283), [sym_comment] = ACTIONS(3), }, [138] = { - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token2] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [aux_sym_preproc_else_token1] = ACTIONS(1276), - [aux_sym_preproc_elif_token1] = ACTIONS(1276), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym___extension__] = ACTIONS(1276), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym___inline] = ACTIONS(1276), - [anon_sym___inline__] = ACTIONS(1276), - [anon_sym___forceinline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym___thread] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym___try] = ACTIONS(1276), - [anon_sym___leave] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym___alignof__] = ACTIONS(1276), - [anon_sym___alignof] = ACTIONS(1276), - [anon_sym__alignof] = ACTIONS(1276), - [anon_sym_alignof] = ACTIONS(1276), - [anon_sym__Alignof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), + [sym_identifier] = ACTIONS(1287), + [aux_sym_preproc_include_token1] = ACTIONS(1287), + [aux_sym_preproc_def_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token2] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), + [aux_sym_preproc_else_token1] = ACTIONS(1287), + [aux_sym_preproc_elif_token1] = ACTIONS(1287), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1287), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1287), + [sym_preproc_directive] = ACTIONS(1287), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym___extension__] = ACTIONS(1287), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym___attribute__] = ACTIONS(1287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), + [anon_sym___declspec] = ACTIONS(1287), + [anon_sym___cdecl] = ACTIONS(1287), + [anon_sym___clrcall] = ACTIONS(1287), + [anon_sym___stdcall] = ACTIONS(1287), + [anon_sym___fastcall] = ACTIONS(1287), + [anon_sym___thiscall] = ACTIONS(1287), + [anon_sym___vectorcall] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_signed] = ACTIONS(1287), + [anon_sym_unsigned] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_auto] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_inline] = ACTIONS(1287), + [anon_sym___inline] = ACTIONS(1287), + [anon_sym___inline__] = ACTIONS(1287), + [anon_sym___forceinline] = ACTIONS(1287), + [anon_sym_thread_local] = ACTIONS(1287), + [anon_sym___thread] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_constexpr] = ACTIONS(1287), + [anon_sym_volatile] = ACTIONS(1287), + [anon_sym_restrict] = ACTIONS(1287), + [anon_sym___restrict__] = ACTIONS(1287), + [anon_sym__Atomic] = ACTIONS(1287), + [anon_sym__Noreturn] = ACTIONS(1287), + [anon_sym_noreturn] = ACTIONS(1287), + [anon_sym_alignas] = ACTIONS(1287), + [anon_sym__Alignas] = ACTIONS(1287), + [sym_primitive_type] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_switch] = ACTIONS(1287), + [anon_sym_case] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_goto] = ACTIONS(1287), + [anon_sym___try] = ACTIONS(1287), + [anon_sym___leave] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_sizeof] = ACTIONS(1287), + [anon_sym___alignof__] = ACTIONS(1287), + [anon_sym___alignof] = ACTIONS(1287), + [anon_sym__alignof] = ACTIONS(1287), + [anon_sym_alignof] = ACTIONS(1287), + [anon_sym__Alignof] = ACTIONS(1287), + [anon_sym_offsetof] = ACTIONS(1287), + [anon_sym__Generic] = ACTIONS(1287), + [anon_sym_asm] = ACTIONS(1287), + [anon_sym___asm__] = ACTIONS(1287), + [sym_number_literal] = ACTIONS(1289), + [anon_sym_L_SQUOTE] = ACTIONS(1289), + [anon_sym_u_SQUOTE] = ACTIONS(1289), + [anon_sym_U_SQUOTE] = ACTIONS(1289), + [anon_sym_u8_SQUOTE] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_L_DQUOTE] = ACTIONS(1289), + [anon_sym_u_DQUOTE] = ACTIONS(1289), + [anon_sym_U_DQUOTE] = ACTIONS(1289), + [anon_sym_u8_DQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [anon_sym_NULL] = ACTIONS(1287), + [anon_sym_nullptr] = ACTIONS(1287), [sym_comment] = ACTIONS(3), }, [139] = { - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token2] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [aux_sym_preproc_else_token1] = ACTIONS(1280), - [aux_sym_preproc_elif_token1] = ACTIONS(1280), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym___extension__] = ACTIONS(1280), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym___inline] = ACTIONS(1280), - [anon_sym___inline__] = ACTIONS(1280), - [anon_sym___forceinline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym___thread] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym___alignof__] = ACTIONS(1280), - [anon_sym___alignof] = ACTIONS(1280), - [anon_sym__alignof] = ACTIONS(1280), - [anon_sym_alignof] = ACTIONS(1280), - [anon_sym__Alignof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), + [sym_identifier] = ACTIONS(1291), + [aux_sym_preproc_include_token1] = ACTIONS(1291), + [aux_sym_preproc_def_token1] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1291), + [aux_sym_preproc_if_token2] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1291), + [aux_sym_preproc_else_token1] = ACTIONS(1291), + [aux_sym_preproc_elif_token1] = ACTIONS(1291), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1291), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1291), + [sym_preproc_directive] = ACTIONS(1291), + [anon_sym_LPAREN2] = ACTIONS(1293), + [anon_sym_BANG] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym___extension__] = ACTIONS(1291), + [anon_sym_typedef] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym___attribute__] = ACTIONS(1291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1293), + [anon_sym___declspec] = ACTIONS(1291), + [anon_sym___cdecl] = ACTIONS(1291), + [anon_sym___clrcall] = ACTIONS(1291), + [anon_sym___stdcall] = ACTIONS(1291), + [anon_sym___fastcall] = ACTIONS(1291), + [anon_sym___thiscall] = ACTIONS(1291), + [anon_sym___vectorcall] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_signed] = ACTIONS(1291), + [anon_sym_unsigned] = ACTIONS(1291), + [anon_sym_long] = ACTIONS(1291), + [anon_sym_short] = ACTIONS(1291), + [anon_sym_static] = ACTIONS(1291), + [anon_sym_auto] = ACTIONS(1291), + [anon_sym_register] = ACTIONS(1291), + [anon_sym_inline] = ACTIONS(1291), + [anon_sym___inline] = ACTIONS(1291), + [anon_sym___inline__] = ACTIONS(1291), + [anon_sym___forceinline] = ACTIONS(1291), + [anon_sym_thread_local] = ACTIONS(1291), + [anon_sym___thread] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_constexpr] = ACTIONS(1291), + [anon_sym_volatile] = ACTIONS(1291), + [anon_sym_restrict] = ACTIONS(1291), + [anon_sym___restrict__] = ACTIONS(1291), + [anon_sym__Atomic] = ACTIONS(1291), + [anon_sym__Noreturn] = ACTIONS(1291), + [anon_sym_noreturn] = ACTIONS(1291), + [anon_sym_alignas] = ACTIONS(1291), + [anon_sym__Alignas] = ACTIONS(1291), + [sym_primitive_type] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_switch] = ACTIONS(1291), + [anon_sym_case] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_do] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_goto] = ACTIONS(1291), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(1291), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_sizeof] = ACTIONS(1291), + [anon_sym___alignof__] = ACTIONS(1291), + [anon_sym___alignof] = ACTIONS(1291), + [anon_sym__alignof] = ACTIONS(1291), + [anon_sym_alignof] = ACTIONS(1291), + [anon_sym__Alignof] = ACTIONS(1291), + [anon_sym_offsetof] = ACTIONS(1291), + [anon_sym__Generic] = ACTIONS(1291), + [anon_sym_asm] = ACTIONS(1291), + [anon_sym___asm__] = ACTIONS(1291), + [sym_number_literal] = ACTIONS(1293), + [anon_sym_L_SQUOTE] = ACTIONS(1293), + [anon_sym_u_SQUOTE] = ACTIONS(1293), + [anon_sym_U_SQUOTE] = ACTIONS(1293), + [anon_sym_u8_SQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1293), + [anon_sym_L_DQUOTE] = ACTIONS(1293), + [anon_sym_u_DQUOTE] = ACTIONS(1293), + [anon_sym_U_DQUOTE] = ACTIONS(1293), + [anon_sym_u8_DQUOTE] = ACTIONS(1293), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_true] = ACTIONS(1291), + [sym_false] = ACTIONS(1291), + [anon_sym_NULL] = ACTIONS(1291), + [anon_sym_nullptr] = ACTIONS(1291), [sym_comment] = ACTIONS(3), }, [140] = { - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token2] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [aux_sym_preproc_else_token1] = ACTIONS(1284), - [aux_sym_preproc_elif_token1] = ACTIONS(1284), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym___extension__] = ACTIONS(1284), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym___inline] = ACTIONS(1284), - [anon_sym___inline__] = ACTIONS(1284), - [anon_sym___forceinline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym___thread] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym___alignof__] = ACTIONS(1284), - [anon_sym___alignof] = ACTIONS(1284), - [anon_sym__alignof] = ACTIONS(1284), - [anon_sym_alignof] = ACTIONS(1284), - [anon_sym__Alignof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), + [sym_identifier] = ACTIONS(1295), + [aux_sym_preproc_include_token1] = ACTIONS(1295), + [aux_sym_preproc_def_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token2] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), + [aux_sym_preproc_else_token1] = ACTIONS(1295), + [aux_sym_preproc_elif_token1] = ACTIONS(1295), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1295), + [sym_preproc_directive] = ACTIONS(1295), + [anon_sym_LPAREN2] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym___extension__] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym___attribute__] = ACTIONS(1295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), + [anon_sym___declspec] = ACTIONS(1295), + [anon_sym___cdecl] = ACTIONS(1295), + [anon_sym___clrcall] = ACTIONS(1295), + [anon_sym___stdcall] = ACTIONS(1295), + [anon_sym___fastcall] = ACTIONS(1295), + [anon_sym___thiscall] = ACTIONS(1295), + [anon_sym___vectorcall] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_signed] = ACTIONS(1295), + [anon_sym_unsigned] = ACTIONS(1295), + [anon_sym_long] = ACTIONS(1295), + [anon_sym_short] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_auto] = ACTIONS(1295), + [anon_sym_register] = ACTIONS(1295), + [anon_sym_inline] = ACTIONS(1295), + [anon_sym___inline] = ACTIONS(1295), + [anon_sym___inline__] = ACTIONS(1295), + [anon_sym___forceinline] = ACTIONS(1295), + [anon_sym_thread_local] = ACTIONS(1295), + [anon_sym___thread] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_constexpr] = ACTIONS(1295), + [anon_sym_volatile] = ACTIONS(1295), + [anon_sym_restrict] = ACTIONS(1295), + [anon_sym___restrict__] = ACTIONS(1295), + [anon_sym__Atomic] = ACTIONS(1295), + [anon_sym__Noreturn] = ACTIONS(1295), + [anon_sym_noreturn] = ACTIONS(1295), + [anon_sym_alignas] = ACTIONS(1295), + [anon_sym__Alignas] = ACTIONS(1295), + [sym_primitive_type] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_switch] = ACTIONS(1295), + [anon_sym_case] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_do] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_goto] = ACTIONS(1295), + [anon_sym___try] = ACTIONS(1295), + [anon_sym___leave] = ACTIONS(1295), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_sizeof] = ACTIONS(1295), + [anon_sym___alignof__] = ACTIONS(1295), + [anon_sym___alignof] = ACTIONS(1295), + [anon_sym__alignof] = ACTIONS(1295), + [anon_sym_alignof] = ACTIONS(1295), + [anon_sym__Alignof] = ACTIONS(1295), + [anon_sym_offsetof] = ACTIONS(1295), + [anon_sym__Generic] = ACTIONS(1295), + [anon_sym_asm] = ACTIONS(1295), + [anon_sym___asm__] = ACTIONS(1295), + [sym_number_literal] = ACTIONS(1297), + [anon_sym_L_SQUOTE] = ACTIONS(1297), + [anon_sym_u_SQUOTE] = ACTIONS(1297), + [anon_sym_U_SQUOTE] = ACTIONS(1297), + [anon_sym_u8_SQUOTE] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_L_DQUOTE] = ACTIONS(1297), + [anon_sym_u_DQUOTE] = ACTIONS(1297), + [anon_sym_U_DQUOTE] = ACTIONS(1297), + [anon_sym_u8_DQUOTE] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym_true] = ACTIONS(1295), + [sym_false] = ACTIONS(1295), + [anon_sym_NULL] = ACTIONS(1295), + [anon_sym_nullptr] = ACTIONS(1295), [sym_comment] = ACTIONS(3), }, [141] = { - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token2] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [aux_sym_preproc_else_token1] = ACTIONS(1288), - [aux_sym_preproc_elif_token1] = ACTIONS(1288), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym___extension__] = ACTIONS(1288), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym___inline] = ACTIONS(1288), - [anon_sym___inline__] = ACTIONS(1288), - [anon_sym___forceinline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym___thread] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym___try] = ACTIONS(1288), - [anon_sym___leave] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym___alignof__] = ACTIONS(1288), - [anon_sym___alignof] = ACTIONS(1288), - [anon_sym__alignof] = ACTIONS(1288), - [anon_sym_alignof] = ACTIONS(1288), - [anon_sym__Alignof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), + [sym_identifier] = ACTIONS(1299), + [aux_sym_preproc_include_token1] = ACTIONS(1299), + [aux_sym_preproc_def_token1] = ACTIONS(1299), + [aux_sym_preproc_if_token1] = ACTIONS(1299), + [aux_sym_preproc_if_token2] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), + [aux_sym_preproc_else_token1] = ACTIONS(1299), + [aux_sym_preproc_elif_token1] = ACTIONS(1299), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1299), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1299), + [sym_preproc_directive] = ACTIONS(1299), + [anon_sym_LPAREN2] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym___extension__] = ACTIONS(1299), + [anon_sym_typedef] = ACTIONS(1299), + [anon_sym_extern] = ACTIONS(1299), + [anon_sym___attribute__] = ACTIONS(1299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), + [anon_sym___declspec] = ACTIONS(1299), + [anon_sym___cdecl] = ACTIONS(1299), + [anon_sym___clrcall] = ACTIONS(1299), + [anon_sym___stdcall] = ACTIONS(1299), + [anon_sym___fastcall] = ACTIONS(1299), + [anon_sym___thiscall] = ACTIONS(1299), + [anon_sym___vectorcall] = ACTIONS(1299), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_signed] = ACTIONS(1299), + [anon_sym_unsigned] = ACTIONS(1299), + [anon_sym_long] = ACTIONS(1299), + [anon_sym_short] = ACTIONS(1299), + [anon_sym_static] = ACTIONS(1299), + [anon_sym_auto] = ACTIONS(1299), + [anon_sym_register] = ACTIONS(1299), + [anon_sym_inline] = ACTIONS(1299), + [anon_sym___inline] = ACTIONS(1299), + [anon_sym___inline__] = ACTIONS(1299), + [anon_sym___forceinline] = ACTIONS(1299), + [anon_sym_thread_local] = ACTIONS(1299), + [anon_sym___thread] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_constexpr] = ACTIONS(1299), + [anon_sym_volatile] = ACTIONS(1299), + [anon_sym_restrict] = ACTIONS(1299), + [anon_sym___restrict__] = ACTIONS(1299), + [anon_sym__Atomic] = ACTIONS(1299), + [anon_sym__Noreturn] = ACTIONS(1299), + [anon_sym_noreturn] = ACTIONS(1299), + [anon_sym_alignas] = ACTIONS(1299), + [anon_sym__Alignas] = ACTIONS(1299), + [sym_primitive_type] = ACTIONS(1299), + [anon_sym_enum] = ACTIONS(1299), + [anon_sym_struct] = ACTIONS(1299), + [anon_sym_union] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_switch] = ACTIONS(1299), + [anon_sym_case] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1299), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_do] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1299), + [anon_sym_break] = ACTIONS(1299), + [anon_sym_continue] = ACTIONS(1299), + [anon_sym_goto] = ACTIONS(1299), + [anon_sym___try] = ACTIONS(1299), + [anon_sym___leave] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1299), + [anon_sym___alignof__] = ACTIONS(1299), + [anon_sym___alignof] = ACTIONS(1299), + [anon_sym__alignof] = ACTIONS(1299), + [anon_sym_alignof] = ACTIONS(1299), + [anon_sym__Alignof] = ACTIONS(1299), + [anon_sym_offsetof] = ACTIONS(1299), + [anon_sym__Generic] = ACTIONS(1299), + [anon_sym_asm] = ACTIONS(1299), + [anon_sym___asm__] = ACTIONS(1299), + [sym_number_literal] = ACTIONS(1301), + [anon_sym_L_SQUOTE] = ACTIONS(1301), + [anon_sym_u_SQUOTE] = ACTIONS(1301), + [anon_sym_U_SQUOTE] = ACTIONS(1301), + [anon_sym_u8_SQUOTE] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1301), + [anon_sym_L_DQUOTE] = ACTIONS(1301), + [anon_sym_u_DQUOTE] = ACTIONS(1301), + [anon_sym_U_DQUOTE] = ACTIONS(1301), + [anon_sym_u8_DQUOTE] = ACTIONS(1301), + [anon_sym_DQUOTE] = ACTIONS(1301), + [sym_true] = ACTIONS(1299), + [sym_false] = ACTIONS(1299), + [anon_sym_NULL] = ACTIONS(1299), + [anon_sym_nullptr] = ACTIONS(1299), [sym_comment] = ACTIONS(3), }, [142] = { - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token2] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [aux_sym_preproc_else_token1] = ACTIONS(1292), - [aux_sym_preproc_elif_token1] = ACTIONS(1292), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [sym_identifier] = ACTIONS(1303), + [aux_sym_preproc_include_token1] = ACTIONS(1303), + [aux_sym_preproc_def_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token2] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), + [aux_sym_preproc_else_token1] = ACTIONS(1303), + [aux_sym_preproc_elif_token1] = ACTIONS(1303), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1303), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1303), + [sym_preproc_directive] = ACTIONS(1303), + [anon_sym_LPAREN2] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_TILDE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym___extension__] = ACTIONS(1303), + [anon_sym_typedef] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym___attribute__] = ACTIONS(1303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1305), + [anon_sym___declspec] = ACTIONS(1303), + [anon_sym___cdecl] = ACTIONS(1303), + [anon_sym___clrcall] = ACTIONS(1303), + [anon_sym___stdcall] = ACTIONS(1303), + [anon_sym___fastcall] = ACTIONS(1303), + [anon_sym___thiscall] = ACTIONS(1303), + [anon_sym___vectorcall] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_signed] = ACTIONS(1303), + [anon_sym_unsigned] = ACTIONS(1303), + [anon_sym_long] = ACTIONS(1303), + [anon_sym_short] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_auto] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_inline] = ACTIONS(1303), + [anon_sym___inline] = ACTIONS(1303), + [anon_sym___inline__] = ACTIONS(1303), + [anon_sym___forceinline] = ACTIONS(1303), + [anon_sym_thread_local] = ACTIONS(1303), + [anon_sym___thread] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_constexpr] = ACTIONS(1303), + [anon_sym_volatile] = ACTIONS(1303), + [anon_sym_restrict] = ACTIONS(1303), + [anon_sym___restrict__] = ACTIONS(1303), + [anon_sym__Atomic] = ACTIONS(1303), + [anon_sym__Noreturn] = ACTIONS(1303), + [anon_sym_noreturn] = ACTIONS(1303), + [anon_sym_alignas] = ACTIONS(1303), + [anon_sym__Alignas] = ACTIONS(1303), + [sym_primitive_type] = ACTIONS(1303), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_switch] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_goto] = ACTIONS(1303), + [anon_sym___try] = ACTIONS(1303), + [anon_sym___leave] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1305), + [anon_sym_PLUS_PLUS] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1303), + [anon_sym___alignof__] = ACTIONS(1303), + [anon_sym___alignof] = ACTIONS(1303), + [anon_sym__alignof] = ACTIONS(1303), + [anon_sym_alignof] = ACTIONS(1303), + [anon_sym__Alignof] = ACTIONS(1303), + [anon_sym_offsetof] = ACTIONS(1303), + [anon_sym__Generic] = ACTIONS(1303), + [anon_sym_asm] = ACTIONS(1303), + [anon_sym___asm__] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(1305), + [anon_sym_L_SQUOTE] = ACTIONS(1305), + [anon_sym_u_SQUOTE] = ACTIONS(1305), + [anon_sym_U_SQUOTE] = ACTIONS(1305), + [anon_sym_u8_SQUOTE] = ACTIONS(1305), + [anon_sym_SQUOTE] = ACTIONS(1305), + [anon_sym_L_DQUOTE] = ACTIONS(1305), + [anon_sym_u_DQUOTE] = ACTIONS(1305), + [anon_sym_U_DQUOTE] = ACTIONS(1305), + [anon_sym_u8_DQUOTE] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [anon_sym_NULL] = ACTIONS(1303), + [anon_sym_nullptr] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, [143] = { - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token2] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [aux_sym_preproc_else_token1] = ACTIONS(1296), - [aux_sym_preproc_elif_token1] = ACTIONS(1296), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(1296), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym___inline] = ACTIONS(1296), - [anon_sym___inline__] = ACTIONS(1296), - [anon_sym___forceinline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym___thread] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym___try] = ACTIONS(1296), - [anon_sym___leave] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym___alignof__] = ACTIONS(1296), - [anon_sym___alignof] = ACTIONS(1296), - [anon_sym__alignof] = ACTIONS(1296), - [anon_sym_alignof] = ACTIONS(1296), - [anon_sym__Alignof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), + [sym_identifier] = ACTIONS(1307), + [aux_sym_preproc_include_token1] = ACTIONS(1307), + [aux_sym_preproc_def_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token2] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), + [aux_sym_preproc_else_token1] = ACTIONS(1307), + [aux_sym_preproc_elif_token1] = ACTIONS(1307), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1307), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1307), + [sym_preproc_directive] = ACTIONS(1307), + [anon_sym_LPAREN2] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym___extension__] = ACTIONS(1307), + [anon_sym_typedef] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym___attribute__] = ACTIONS(1307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), + [anon_sym___declspec] = ACTIONS(1307), + [anon_sym___cdecl] = ACTIONS(1307), + [anon_sym___clrcall] = ACTIONS(1307), + [anon_sym___stdcall] = ACTIONS(1307), + [anon_sym___fastcall] = ACTIONS(1307), + [anon_sym___thiscall] = ACTIONS(1307), + [anon_sym___vectorcall] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(1307), + [anon_sym_unsigned] = ACTIONS(1307), + [anon_sym_long] = ACTIONS(1307), + [anon_sym_short] = ACTIONS(1307), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_auto] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_inline] = ACTIONS(1307), + [anon_sym___inline] = ACTIONS(1307), + [anon_sym___inline__] = ACTIONS(1307), + [anon_sym___forceinline] = ACTIONS(1307), + [anon_sym_thread_local] = ACTIONS(1307), + [anon_sym___thread] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_constexpr] = ACTIONS(1307), + [anon_sym_volatile] = ACTIONS(1307), + [anon_sym_restrict] = ACTIONS(1307), + [anon_sym___restrict__] = ACTIONS(1307), + [anon_sym__Atomic] = ACTIONS(1307), + [anon_sym__Noreturn] = ACTIONS(1307), + [anon_sym_noreturn] = ACTIONS(1307), + [anon_sym_alignas] = ACTIONS(1307), + [anon_sym__Alignas] = ACTIONS(1307), + [sym_primitive_type] = ACTIONS(1307), + [anon_sym_enum] = ACTIONS(1307), + [anon_sym_struct] = ACTIONS(1307), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_switch] = ACTIONS(1307), + [anon_sym_case] = ACTIONS(1307), + [anon_sym_default] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_goto] = ACTIONS(1307), + [anon_sym___try] = ACTIONS(1307), + [anon_sym___leave] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym___alignof__] = ACTIONS(1307), + [anon_sym___alignof] = ACTIONS(1307), + [anon_sym__alignof] = ACTIONS(1307), + [anon_sym_alignof] = ACTIONS(1307), + [anon_sym__Alignof] = ACTIONS(1307), + [anon_sym_offsetof] = ACTIONS(1307), + [anon_sym__Generic] = ACTIONS(1307), + [anon_sym_asm] = ACTIONS(1307), + [anon_sym___asm__] = ACTIONS(1307), + [sym_number_literal] = ACTIONS(1309), + [anon_sym_L_SQUOTE] = ACTIONS(1309), + [anon_sym_u_SQUOTE] = ACTIONS(1309), + [anon_sym_U_SQUOTE] = ACTIONS(1309), + [anon_sym_u8_SQUOTE] = ACTIONS(1309), + [anon_sym_SQUOTE] = ACTIONS(1309), + [anon_sym_L_DQUOTE] = ACTIONS(1309), + [anon_sym_u_DQUOTE] = ACTIONS(1309), + [anon_sym_U_DQUOTE] = ACTIONS(1309), + [anon_sym_u8_DQUOTE] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1309), + [sym_true] = ACTIONS(1307), + [sym_false] = ACTIONS(1307), + [anon_sym_NULL] = ACTIONS(1307), + [anon_sym_nullptr] = ACTIONS(1307), [sym_comment] = ACTIONS(3), }, [144] = { - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token2] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [aux_sym_preproc_else_token1] = ACTIONS(1300), - [aux_sym_preproc_elif_token1] = ACTIONS(1300), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym___extension__] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym___inline] = ACTIONS(1300), - [anon_sym___inline__] = ACTIONS(1300), - [anon_sym___forceinline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym___thread] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym___try] = ACTIONS(1300), - [anon_sym___leave] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym___alignof__] = ACTIONS(1300), - [anon_sym___alignof] = ACTIONS(1300), - [anon_sym__alignof] = ACTIONS(1300), - [anon_sym_alignof] = ACTIONS(1300), - [anon_sym__Alignof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1311), + [aux_sym_preproc_include_token1] = ACTIONS(1311), + [aux_sym_preproc_def_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token2] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), + [aux_sym_preproc_else_token1] = ACTIONS(1311), + [aux_sym_preproc_elif_token1] = ACTIONS(1311), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1311), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1311), + [sym_preproc_directive] = ACTIONS(1311), + [anon_sym_LPAREN2] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1313), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym___extension__] = ACTIONS(1311), + [anon_sym_typedef] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym___attribute__] = ACTIONS(1311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), + [anon_sym___declspec] = ACTIONS(1311), + [anon_sym___cdecl] = ACTIONS(1311), + [anon_sym___clrcall] = ACTIONS(1311), + [anon_sym___stdcall] = ACTIONS(1311), + [anon_sym___fastcall] = ACTIONS(1311), + [anon_sym___thiscall] = ACTIONS(1311), + [anon_sym___vectorcall] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_signed] = ACTIONS(1311), + [anon_sym_unsigned] = ACTIONS(1311), + [anon_sym_long] = ACTIONS(1311), + [anon_sym_short] = ACTIONS(1311), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_auto] = ACTIONS(1311), + [anon_sym_register] = ACTIONS(1311), + [anon_sym_inline] = ACTIONS(1311), + [anon_sym___inline] = ACTIONS(1311), + [anon_sym___inline__] = ACTIONS(1311), + [anon_sym___forceinline] = ACTIONS(1311), + [anon_sym_thread_local] = ACTIONS(1311), + [anon_sym___thread] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_constexpr] = ACTIONS(1311), + [anon_sym_volatile] = ACTIONS(1311), + [anon_sym_restrict] = ACTIONS(1311), + [anon_sym___restrict__] = ACTIONS(1311), + [anon_sym__Atomic] = ACTIONS(1311), + [anon_sym__Noreturn] = ACTIONS(1311), + [anon_sym_noreturn] = ACTIONS(1311), + [anon_sym_alignas] = ACTIONS(1311), + [anon_sym__Alignas] = ACTIONS(1311), + [sym_primitive_type] = ACTIONS(1311), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_switch] = ACTIONS(1311), + [anon_sym_case] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_goto] = ACTIONS(1311), + [anon_sym___try] = ACTIONS(1311), + [anon_sym___leave] = ACTIONS(1311), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_sizeof] = ACTIONS(1311), + [anon_sym___alignof__] = ACTIONS(1311), + [anon_sym___alignof] = ACTIONS(1311), + [anon_sym__alignof] = ACTIONS(1311), + [anon_sym_alignof] = ACTIONS(1311), + [anon_sym__Alignof] = ACTIONS(1311), + [anon_sym_offsetof] = ACTIONS(1311), + [anon_sym__Generic] = ACTIONS(1311), + [anon_sym_asm] = ACTIONS(1311), + [anon_sym___asm__] = ACTIONS(1311), + [sym_number_literal] = ACTIONS(1313), + [anon_sym_L_SQUOTE] = ACTIONS(1313), + [anon_sym_u_SQUOTE] = ACTIONS(1313), + [anon_sym_U_SQUOTE] = ACTIONS(1313), + [anon_sym_u8_SQUOTE] = ACTIONS(1313), + [anon_sym_SQUOTE] = ACTIONS(1313), + [anon_sym_L_DQUOTE] = ACTIONS(1313), + [anon_sym_u_DQUOTE] = ACTIONS(1313), + [anon_sym_U_DQUOTE] = ACTIONS(1313), + [anon_sym_u8_DQUOTE] = ACTIONS(1313), + [anon_sym_DQUOTE] = ACTIONS(1313), + [sym_true] = ACTIONS(1311), + [sym_false] = ACTIONS(1311), + [anon_sym_NULL] = ACTIONS(1311), + [anon_sym_nullptr] = ACTIONS(1311), [sym_comment] = ACTIONS(3), }, [145] = { - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token2] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [aux_sym_preproc_else_token1] = ACTIONS(1304), - [aux_sym_preproc_elif_token1] = ACTIONS(1304), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym___extension__] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym___inline] = ACTIONS(1304), - [anon_sym___inline__] = ACTIONS(1304), - [anon_sym___forceinline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym___thread] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym___try] = ACTIONS(1304), - [anon_sym___leave] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym___alignof__] = ACTIONS(1304), - [anon_sym___alignof] = ACTIONS(1304), - [anon_sym__alignof] = ACTIONS(1304), - [anon_sym_alignof] = ACTIONS(1304), - [anon_sym__Alignof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token2] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [aux_sym_preproc_else_token1] = ACTIONS(1315), + [aux_sym_preproc_elif_token1] = ACTIONS(1315), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [anon_sym_alignas] = ACTIONS(1315), + [anon_sym__Alignas] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym___try] = ACTIONS(1315), + [anon_sym___leave] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, [146] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token2] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [aux_sym_preproc_else_token1] = ACTIONS(1308), - [aux_sym_preproc_elif_token1] = ACTIONS(1308), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym___inline] = ACTIONS(1308), - [anon_sym___inline__] = ACTIONS(1308), - [anon_sym___forceinline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym___try] = ACTIONS(1308), - [anon_sym___leave] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym___alignof__] = ACTIONS(1308), - [anon_sym___alignof] = ACTIONS(1308), - [anon_sym__alignof] = ACTIONS(1308), - [anon_sym_alignof] = ACTIONS(1308), - [anon_sym__Alignof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1319), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token2] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), + [aux_sym_preproc_else_token1] = ACTIONS(1319), + [aux_sym_preproc_elif_token1] = ACTIONS(1319), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1319), + [sym_preproc_directive] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym___extension__] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym___attribute__] = ACTIONS(1319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___cdecl] = ACTIONS(1319), + [anon_sym___clrcall] = ACTIONS(1319), + [anon_sym___stdcall] = ACTIONS(1319), + [anon_sym___fastcall] = ACTIONS(1319), + [anon_sym___thiscall] = ACTIONS(1319), + [anon_sym___vectorcall] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1319), + [anon_sym_unsigned] = ACTIONS(1319), + [anon_sym_long] = ACTIONS(1319), + [anon_sym_short] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_auto] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1319), + [anon_sym___inline] = ACTIONS(1319), + [anon_sym___inline__] = ACTIONS(1319), + [anon_sym___forceinline] = ACTIONS(1319), + [anon_sym_thread_local] = ACTIONS(1319), + [anon_sym___thread] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_constexpr] = ACTIONS(1319), + [anon_sym_volatile] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1319), + [anon_sym___restrict__] = ACTIONS(1319), + [anon_sym__Atomic] = ACTIONS(1319), + [anon_sym__Noreturn] = ACTIONS(1319), + [anon_sym_noreturn] = ACTIONS(1319), + [anon_sym_alignas] = ACTIONS(1319), + [anon_sym__Alignas] = ACTIONS(1319), + [sym_primitive_type] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_case] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_goto] = ACTIONS(1319), + [anon_sym___try] = ACTIONS(1319), + [anon_sym___leave] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_sizeof] = ACTIONS(1319), + [anon_sym___alignof__] = ACTIONS(1319), + [anon_sym___alignof] = ACTIONS(1319), + [anon_sym__alignof] = ACTIONS(1319), + [anon_sym_alignof] = ACTIONS(1319), + [anon_sym__Alignof] = ACTIONS(1319), + [anon_sym_offsetof] = ACTIONS(1319), + [anon_sym__Generic] = ACTIONS(1319), + [anon_sym_asm] = ACTIONS(1319), + [anon_sym___asm__] = ACTIONS(1319), + [sym_number_literal] = ACTIONS(1321), + [anon_sym_L_SQUOTE] = ACTIONS(1321), + [anon_sym_u_SQUOTE] = ACTIONS(1321), + [anon_sym_U_SQUOTE] = ACTIONS(1321), + [anon_sym_u8_SQUOTE] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_L_DQUOTE] = ACTIONS(1321), + [anon_sym_u_DQUOTE] = ACTIONS(1321), + [anon_sym_U_DQUOTE] = ACTIONS(1321), + [anon_sym_u8_DQUOTE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym_true] = ACTIONS(1319), + [sym_false] = ACTIONS(1319), + [anon_sym_NULL] = ACTIONS(1319), + [anon_sym_nullptr] = ACTIONS(1319), [sym_comment] = ACTIONS(3), }, [147] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token2] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [aux_sym_preproc_else_token1] = ACTIONS(1312), - [aux_sym_preproc_elif_token1] = ACTIONS(1312), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym___inline] = ACTIONS(1312), - [anon_sym___inline__] = ACTIONS(1312), - [anon_sym___forceinline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym___try] = ACTIONS(1312), - [anon_sym___leave] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym___alignof__] = ACTIONS(1312), - [anon_sym___alignof] = ACTIONS(1312), - [anon_sym__alignof] = ACTIONS(1312), - [anon_sym_alignof] = ACTIONS(1312), - [anon_sym__Alignof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1323), + [aux_sym_preproc_include_token1] = ACTIONS(1323), + [aux_sym_preproc_def_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token2] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), + [aux_sym_preproc_else_token1] = ACTIONS(1323), + [aux_sym_preproc_elif_token1] = ACTIONS(1323), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1323), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1323), + [sym_preproc_directive] = ACTIONS(1323), + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym___extension__] = ACTIONS(1323), + [anon_sym_typedef] = ACTIONS(1323), + [anon_sym_extern] = ACTIONS(1323), + [anon_sym___attribute__] = ACTIONS(1323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(1323), + [anon_sym___cdecl] = ACTIONS(1323), + [anon_sym___clrcall] = ACTIONS(1323), + [anon_sym___stdcall] = ACTIONS(1323), + [anon_sym___fastcall] = ACTIONS(1323), + [anon_sym___thiscall] = ACTIONS(1323), + [anon_sym___vectorcall] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_signed] = ACTIONS(1323), + [anon_sym_unsigned] = ACTIONS(1323), + [anon_sym_long] = ACTIONS(1323), + [anon_sym_short] = ACTIONS(1323), + [anon_sym_static] = ACTIONS(1323), + [anon_sym_auto] = ACTIONS(1323), + [anon_sym_register] = ACTIONS(1323), + [anon_sym_inline] = ACTIONS(1323), + [anon_sym___inline] = ACTIONS(1323), + [anon_sym___inline__] = ACTIONS(1323), + [anon_sym___forceinline] = ACTIONS(1323), + [anon_sym_thread_local] = ACTIONS(1323), + [anon_sym___thread] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_constexpr] = ACTIONS(1323), + [anon_sym_volatile] = ACTIONS(1323), + [anon_sym_restrict] = ACTIONS(1323), + [anon_sym___restrict__] = ACTIONS(1323), + [anon_sym__Atomic] = ACTIONS(1323), + [anon_sym__Noreturn] = ACTIONS(1323), + [anon_sym_noreturn] = ACTIONS(1323), + [anon_sym_alignas] = ACTIONS(1323), + [anon_sym__Alignas] = ACTIONS(1323), + [sym_primitive_type] = ACTIONS(1323), + [anon_sym_enum] = ACTIONS(1323), + [anon_sym_struct] = ACTIONS(1323), + [anon_sym_union] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_switch] = ACTIONS(1323), + [anon_sym_case] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_do] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_goto] = ACTIONS(1323), + [anon_sym___try] = ACTIONS(1323), + [anon_sym___leave] = ACTIONS(1323), + [anon_sym_DASH_DASH] = ACTIONS(1325), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_sizeof] = ACTIONS(1323), + [anon_sym___alignof__] = ACTIONS(1323), + [anon_sym___alignof] = ACTIONS(1323), + [anon_sym__alignof] = ACTIONS(1323), + [anon_sym_alignof] = ACTIONS(1323), + [anon_sym__Alignof] = ACTIONS(1323), + [anon_sym_offsetof] = ACTIONS(1323), + [anon_sym__Generic] = ACTIONS(1323), + [anon_sym_asm] = ACTIONS(1323), + [anon_sym___asm__] = ACTIONS(1323), + [sym_number_literal] = ACTIONS(1325), + [anon_sym_L_SQUOTE] = ACTIONS(1325), + [anon_sym_u_SQUOTE] = ACTIONS(1325), + [anon_sym_U_SQUOTE] = ACTIONS(1325), + [anon_sym_u8_SQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1325), + [anon_sym_L_DQUOTE] = ACTIONS(1325), + [anon_sym_u_DQUOTE] = ACTIONS(1325), + [anon_sym_U_DQUOTE] = ACTIONS(1325), + [anon_sym_u8_DQUOTE] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [anon_sym_NULL] = ACTIONS(1323), + [anon_sym_nullptr] = ACTIONS(1323), [sym_comment] = ACTIONS(3), }, [148] = { - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token2] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [aux_sym_preproc_else_token1] = ACTIONS(1316), - [aux_sym_preproc_elif_token1] = ACTIONS(1316), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym___extension__] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1316), - [anon_sym___cdecl] = ACTIONS(1316), - [anon_sym___clrcall] = ACTIONS(1316), - [anon_sym___stdcall] = ACTIONS(1316), - [anon_sym___fastcall] = ACTIONS(1316), - [anon_sym___thiscall] = ACTIONS(1316), - [anon_sym___vectorcall] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym___inline] = ACTIONS(1316), - [anon_sym___inline__] = ACTIONS(1316), - [anon_sym___forceinline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_constexpr] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym___restrict__] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [anon_sym__Noreturn] = ACTIONS(1316), - [anon_sym_noreturn] = ACTIONS(1316), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym___try] = ACTIONS(1316), - [anon_sym___leave] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym___alignof__] = ACTIONS(1316), - [anon_sym___alignof] = ACTIONS(1316), - [anon_sym__alignof] = ACTIONS(1316), - [anon_sym_alignof] = ACTIONS(1316), - [anon_sym__Alignof] = ACTIONS(1316), - [anon_sym_offsetof] = ACTIONS(1316), - [anon_sym__Generic] = ACTIONS(1316), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym___asm__] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token2] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [aux_sym_preproc_else_token1] = ACTIONS(1327), + [aux_sym_preproc_elif_token1] = ACTIONS(1327), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym___extension__] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym___attribute__] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1327), + [anon_sym___cdecl] = ACTIONS(1327), + [anon_sym___clrcall] = ACTIONS(1327), + [anon_sym___stdcall] = ACTIONS(1327), + [anon_sym___fastcall] = ACTIONS(1327), + [anon_sym___thiscall] = ACTIONS(1327), + [anon_sym___vectorcall] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_auto] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym___inline] = ACTIONS(1327), + [anon_sym___inline__] = ACTIONS(1327), + [anon_sym___forceinline] = ACTIONS(1327), + [anon_sym_thread_local] = ACTIONS(1327), + [anon_sym___thread] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym___restrict__] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [anon_sym__Noreturn] = ACTIONS(1327), + [anon_sym_noreturn] = ACTIONS(1327), + [anon_sym_alignas] = ACTIONS(1327), + [anon_sym__Alignas] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [anon_sym___try] = ACTIONS(1327), + [anon_sym___leave] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym___alignof__] = ACTIONS(1327), + [anon_sym___alignof] = ACTIONS(1327), + [anon_sym__alignof] = ACTIONS(1327), + [anon_sym_alignof] = ACTIONS(1327), + [anon_sym__Alignof] = ACTIONS(1327), + [anon_sym_offsetof] = ACTIONS(1327), + [anon_sym__Generic] = ACTIONS(1327), + [anon_sym_asm] = ACTIONS(1327), + [anon_sym___asm__] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_L_SQUOTE] = ACTIONS(1329), + [anon_sym_u_SQUOTE] = ACTIONS(1329), + [anon_sym_U_SQUOTE] = ACTIONS(1329), + [anon_sym_u8_SQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_L_DQUOTE] = ACTIONS(1329), + [anon_sym_u_DQUOTE] = ACTIONS(1329), + [anon_sym_U_DQUOTE] = ACTIONS(1329), + [anon_sym_u8_DQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [anon_sym_NULL] = ACTIONS(1327), + [anon_sym_nullptr] = ACTIONS(1327), [sym_comment] = ACTIONS(3), }, [149] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token2] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [aux_sym_preproc_else_token1] = ACTIONS(1320), - [aux_sym_preproc_elif_token1] = ACTIONS(1320), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym___extension__] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym___inline] = ACTIONS(1320), - [anon_sym___inline__] = ACTIONS(1320), - [anon_sym___forceinline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym___try] = ACTIONS(1320), - [anon_sym___leave] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym___alignof__] = ACTIONS(1320), - [anon_sym___alignof] = ACTIONS(1320), - [anon_sym__alignof] = ACTIONS(1320), - [anon_sym_alignof] = ACTIONS(1320), - [anon_sym__Alignof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1331), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token2] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [aux_sym_preproc_else_token1] = ACTIONS(1331), + [aux_sym_preproc_elif_token1] = ACTIONS(1331), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym___extension__] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym___attribute__] = ACTIONS(1331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym___inline] = ACTIONS(1331), + [anon_sym___inline__] = ACTIONS(1331), + [anon_sym___forceinline] = ACTIONS(1331), + [anon_sym_thread_local] = ACTIONS(1331), + [anon_sym___thread] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [anon_sym_alignas] = ACTIONS(1331), + [anon_sym__Alignas] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym___try] = ACTIONS(1331), + [anon_sym___leave] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1331), + [anon_sym___alignof__] = ACTIONS(1331), + [anon_sym___alignof] = ACTIONS(1331), + [anon_sym__alignof] = ACTIONS(1331), + [anon_sym_alignof] = ACTIONS(1331), + [anon_sym__Alignof] = ACTIONS(1331), + [anon_sym_offsetof] = ACTIONS(1331), + [anon_sym__Generic] = ACTIONS(1331), + [anon_sym_asm] = ACTIONS(1331), + [anon_sym___asm__] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_L_SQUOTE] = ACTIONS(1333), + [anon_sym_u_SQUOTE] = ACTIONS(1333), + [anon_sym_U_SQUOTE] = ACTIONS(1333), + [anon_sym_u8_SQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_L_DQUOTE] = ACTIONS(1333), + [anon_sym_u_DQUOTE] = ACTIONS(1333), + [anon_sym_U_DQUOTE] = ACTIONS(1333), + [anon_sym_u8_DQUOTE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [anon_sym_NULL] = ACTIONS(1331), + [anon_sym_nullptr] = ACTIONS(1331), [sym_comment] = ACTIONS(3), }, [150] = { - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token2] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [aux_sym_preproc_else_token1] = ACTIONS(1324), - [aux_sym_preproc_elif_token1] = ACTIONS(1324), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym___extension__] = ACTIONS(1324), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym___inline] = ACTIONS(1324), - [anon_sym___inline__] = ACTIONS(1324), - [anon_sym___forceinline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym___thread] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym___alignof__] = ACTIONS(1324), - [anon_sym___alignof] = ACTIONS(1324), - [anon_sym__alignof] = ACTIONS(1324), - [anon_sym_alignof] = ACTIONS(1324), - [anon_sym__Alignof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1335), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token2] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), + [aux_sym_preproc_else_token1] = ACTIONS(1335), + [aux_sym_preproc_elif_token1] = ACTIONS(1335), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1335), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1335), + [sym_preproc_directive] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym___extension__] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym___attribute__] = ACTIONS(1335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), + [anon_sym___declspec] = ACTIONS(1335), + [anon_sym___cdecl] = ACTIONS(1335), + [anon_sym___clrcall] = ACTIONS(1335), + [anon_sym___stdcall] = ACTIONS(1335), + [anon_sym___fastcall] = ACTIONS(1335), + [anon_sym___thiscall] = ACTIONS(1335), + [anon_sym___vectorcall] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_signed] = ACTIONS(1335), + [anon_sym_unsigned] = ACTIONS(1335), + [anon_sym_long] = ACTIONS(1335), + [anon_sym_short] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_auto] = ACTIONS(1335), + [anon_sym_register] = ACTIONS(1335), + [anon_sym_inline] = ACTIONS(1335), + [anon_sym___inline] = ACTIONS(1335), + [anon_sym___inline__] = ACTIONS(1335), + [anon_sym___forceinline] = ACTIONS(1335), + [anon_sym_thread_local] = ACTIONS(1335), + [anon_sym___thread] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_constexpr] = ACTIONS(1335), + [anon_sym_volatile] = ACTIONS(1335), + [anon_sym_restrict] = ACTIONS(1335), + [anon_sym___restrict__] = ACTIONS(1335), + [anon_sym__Atomic] = ACTIONS(1335), + [anon_sym__Noreturn] = ACTIONS(1335), + [anon_sym_noreturn] = ACTIONS(1335), + [anon_sym_alignas] = ACTIONS(1335), + [anon_sym__Alignas] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_switch] = ACTIONS(1335), + [anon_sym_case] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_goto] = ACTIONS(1335), + [anon_sym___try] = ACTIONS(1335), + [anon_sym___leave] = ACTIONS(1335), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(1335), + [anon_sym___alignof__] = ACTIONS(1335), + [anon_sym___alignof] = ACTIONS(1335), + [anon_sym__alignof] = ACTIONS(1335), + [anon_sym_alignof] = ACTIONS(1335), + [anon_sym__Alignof] = ACTIONS(1335), + [anon_sym_offsetof] = ACTIONS(1335), + [anon_sym__Generic] = ACTIONS(1335), + [anon_sym_asm] = ACTIONS(1335), + [anon_sym___asm__] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(1337), + [anon_sym_L_SQUOTE] = ACTIONS(1337), + [anon_sym_u_SQUOTE] = ACTIONS(1337), + [anon_sym_U_SQUOTE] = ACTIONS(1337), + [anon_sym_u8_SQUOTE] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_L_DQUOTE] = ACTIONS(1337), + [anon_sym_u_DQUOTE] = ACTIONS(1337), + [anon_sym_U_DQUOTE] = ACTIONS(1337), + [anon_sym_u8_DQUOTE] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym_true] = ACTIONS(1335), + [sym_false] = ACTIONS(1335), + [anon_sym_NULL] = ACTIONS(1335), + [anon_sym_nullptr] = ACTIONS(1335), [sym_comment] = ACTIONS(3), }, [151] = { - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token2] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [aux_sym_preproc_else_token1] = ACTIONS(1328), - [aux_sym_preproc_elif_token1] = ACTIONS(1328), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym___extension__] = ACTIONS(1328), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym___inline] = ACTIONS(1328), - [anon_sym___inline__] = ACTIONS(1328), - [anon_sym___forceinline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym___thread] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [sym_primitive_type] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym___try] = ACTIONS(1328), - [anon_sym___leave] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym___alignof__] = ACTIONS(1328), - [anon_sym___alignof] = ACTIONS(1328), - [anon_sym__alignof] = ACTIONS(1328), - [anon_sym_alignof] = ACTIONS(1328), - [anon_sym__Alignof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1339), + [aux_sym_preproc_include_token1] = ACTIONS(1339), + [aux_sym_preproc_def_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token2] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), + [aux_sym_preproc_else_token1] = ACTIONS(1339), + [aux_sym_preproc_elif_token1] = ACTIONS(1339), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1339), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1339), + [sym_preproc_directive] = ACTIONS(1339), + [anon_sym_LPAREN2] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym___extension__] = ACTIONS(1339), + [anon_sym_typedef] = ACTIONS(1339), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym___attribute__] = ACTIONS(1339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), + [anon_sym___declspec] = ACTIONS(1339), + [anon_sym___cdecl] = ACTIONS(1339), + [anon_sym___clrcall] = ACTIONS(1339), + [anon_sym___stdcall] = ACTIONS(1339), + [anon_sym___fastcall] = ACTIONS(1339), + [anon_sym___thiscall] = ACTIONS(1339), + [anon_sym___vectorcall] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_signed] = ACTIONS(1339), + [anon_sym_unsigned] = ACTIONS(1339), + [anon_sym_long] = ACTIONS(1339), + [anon_sym_short] = ACTIONS(1339), + [anon_sym_static] = ACTIONS(1339), + [anon_sym_auto] = ACTIONS(1339), + [anon_sym_register] = ACTIONS(1339), + [anon_sym_inline] = ACTIONS(1339), + [anon_sym___inline] = ACTIONS(1339), + [anon_sym___inline__] = ACTIONS(1339), + [anon_sym___forceinline] = ACTIONS(1339), + [anon_sym_thread_local] = ACTIONS(1339), + [anon_sym___thread] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_constexpr] = ACTIONS(1339), + [anon_sym_volatile] = ACTIONS(1339), + [anon_sym_restrict] = ACTIONS(1339), + [anon_sym___restrict__] = ACTIONS(1339), + [anon_sym__Atomic] = ACTIONS(1339), + [anon_sym__Noreturn] = ACTIONS(1339), + [anon_sym_noreturn] = ACTIONS(1339), + [anon_sym_alignas] = ACTIONS(1339), + [anon_sym__Alignas] = ACTIONS(1339), + [sym_primitive_type] = ACTIONS(1339), + [anon_sym_enum] = ACTIONS(1339), + [anon_sym_struct] = ACTIONS(1339), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1339), + [anon_sym_case] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_do] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_goto] = ACTIONS(1339), + [anon_sym___try] = ACTIONS(1339), + [anon_sym___leave] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_sizeof] = ACTIONS(1339), + [anon_sym___alignof__] = ACTIONS(1339), + [anon_sym___alignof] = ACTIONS(1339), + [anon_sym__alignof] = ACTIONS(1339), + [anon_sym_alignof] = ACTIONS(1339), + [anon_sym__Alignof] = ACTIONS(1339), + [anon_sym_offsetof] = ACTIONS(1339), + [anon_sym__Generic] = ACTIONS(1339), + [anon_sym_asm] = ACTIONS(1339), + [anon_sym___asm__] = ACTIONS(1339), + [sym_number_literal] = ACTIONS(1341), + [anon_sym_L_SQUOTE] = ACTIONS(1341), + [anon_sym_u_SQUOTE] = ACTIONS(1341), + [anon_sym_U_SQUOTE] = ACTIONS(1341), + [anon_sym_u8_SQUOTE] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(1341), + [anon_sym_L_DQUOTE] = ACTIONS(1341), + [anon_sym_u_DQUOTE] = ACTIONS(1341), + [anon_sym_U_DQUOTE] = ACTIONS(1341), + [anon_sym_u8_DQUOTE] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym_true] = ACTIONS(1339), + [sym_false] = ACTIONS(1339), + [anon_sym_NULL] = ACTIONS(1339), + [anon_sym_nullptr] = ACTIONS(1339), [sym_comment] = ACTIONS(3), }, [152] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token2] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [aux_sym_preproc_else_token1] = ACTIONS(1332), - [aux_sym_preproc_elif_token1] = ACTIONS(1332), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym___extension__] = ACTIONS(1332), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym___inline] = ACTIONS(1332), - [anon_sym___inline__] = ACTIONS(1332), - [anon_sym___forceinline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym___thread] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym___try] = ACTIONS(1332), - [anon_sym___leave] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym___alignof__] = ACTIONS(1332), - [anon_sym___alignof] = ACTIONS(1332), - [anon_sym__alignof] = ACTIONS(1332), - [anon_sym_alignof] = ACTIONS(1332), - [anon_sym__Alignof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1343), + [aux_sym_preproc_include_token1] = ACTIONS(1343), + [aux_sym_preproc_def_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token2] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), + [aux_sym_preproc_else_token1] = ACTIONS(1343), + [aux_sym_preproc_elif_token1] = ACTIONS(1343), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1343), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1343), + [sym_preproc_directive] = ACTIONS(1343), + [anon_sym_LPAREN2] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym___extension__] = ACTIONS(1343), + [anon_sym_typedef] = ACTIONS(1343), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym___attribute__] = ACTIONS(1343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), + [anon_sym___declspec] = ACTIONS(1343), + [anon_sym___cdecl] = ACTIONS(1343), + [anon_sym___clrcall] = ACTIONS(1343), + [anon_sym___stdcall] = ACTIONS(1343), + [anon_sym___fastcall] = ACTIONS(1343), + [anon_sym___thiscall] = ACTIONS(1343), + [anon_sym___vectorcall] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_signed] = ACTIONS(1343), + [anon_sym_unsigned] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_auto] = ACTIONS(1343), + [anon_sym_register] = ACTIONS(1343), + [anon_sym_inline] = ACTIONS(1343), + [anon_sym___inline] = ACTIONS(1343), + [anon_sym___inline__] = ACTIONS(1343), + [anon_sym___forceinline] = ACTIONS(1343), + [anon_sym_thread_local] = ACTIONS(1343), + [anon_sym___thread] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_constexpr] = ACTIONS(1343), + [anon_sym_volatile] = ACTIONS(1343), + [anon_sym_restrict] = ACTIONS(1343), + [anon_sym___restrict__] = ACTIONS(1343), + [anon_sym__Atomic] = ACTIONS(1343), + [anon_sym__Noreturn] = ACTIONS(1343), + [anon_sym_noreturn] = ACTIONS(1343), + [anon_sym_alignas] = ACTIONS(1343), + [anon_sym__Alignas] = ACTIONS(1343), + [sym_primitive_type] = ACTIONS(1343), + [anon_sym_enum] = ACTIONS(1343), + [anon_sym_struct] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_case] = ACTIONS(1343), + [anon_sym_default] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_goto] = ACTIONS(1343), + [anon_sym___try] = ACTIONS(1343), + [anon_sym___leave] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_sizeof] = ACTIONS(1343), + [anon_sym___alignof__] = ACTIONS(1343), + [anon_sym___alignof] = ACTIONS(1343), + [anon_sym__alignof] = ACTIONS(1343), + [anon_sym_alignof] = ACTIONS(1343), + [anon_sym__Alignof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1343), + [anon_sym__Generic] = ACTIONS(1343), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym___asm__] = ACTIONS(1343), + [sym_number_literal] = ACTIONS(1345), + [anon_sym_L_SQUOTE] = ACTIONS(1345), + [anon_sym_u_SQUOTE] = ACTIONS(1345), + [anon_sym_U_SQUOTE] = ACTIONS(1345), + [anon_sym_u8_SQUOTE] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_L_DQUOTE] = ACTIONS(1345), + [anon_sym_u_DQUOTE] = ACTIONS(1345), + [anon_sym_U_DQUOTE] = ACTIONS(1345), + [anon_sym_u8_DQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym_true] = ACTIONS(1343), + [sym_false] = ACTIONS(1343), + [anon_sym_NULL] = ACTIONS(1343), + [anon_sym_nullptr] = ACTIONS(1343), [sym_comment] = ACTIONS(3), }, [153] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token2] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [aux_sym_preproc_else_token1] = ACTIONS(1336), - [aux_sym_preproc_elif_token1] = ACTIONS(1336), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym___extension__] = ACTIONS(1336), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym___inline] = ACTIONS(1336), - [anon_sym___inline__] = ACTIONS(1336), - [anon_sym___forceinline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym___try] = ACTIONS(1336), - [anon_sym___leave] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym___alignof__] = ACTIONS(1336), - [anon_sym___alignof] = ACTIONS(1336), - [anon_sym__alignof] = ACTIONS(1336), - [anon_sym_alignof] = ACTIONS(1336), - [anon_sym__Alignof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), + [sym_identifier] = ACTIONS(1347), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token2] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), + [aux_sym_preproc_else_token1] = ACTIONS(1347), + [aux_sym_preproc_elif_token1] = ACTIONS(1347), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1347), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1347), + [sym_preproc_directive] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym___extension__] = ACTIONS(1347), + [anon_sym_typedef] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym___attribute__] = ACTIONS(1347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), + [anon_sym___declspec] = ACTIONS(1347), + [anon_sym___cdecl] = ACTIONS(1347), + [anon_sym___clrcall] = ACTIONS(1347), + [anon_sym___stdcall] = ACTIONS(1347), + [anon_sym___fastcall] = ACTIONS(1347), + [anon_sym___thiscall] = ACTIONS(1347), + [anon_sym___vectorcall] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_signed] = ACTIONS(1347), + [anon_sym_unsigned] = ACTIONS(1347), + [anon_sym_long] = ACTIONS(1347), + [anon_sym_short] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1347), + [anon_sym_auto] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_inline] = ACTIONS(1347), + [anon_sym___inline] = ACTIONS(1347), + [anon_sym___inline__] = ACTIONS(1347), + [anon_sym___forceinline] = ACTIONS(1347), + [anon_sym_thread_local] = ACTIONS(1347), + [anon_sym___thread] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_constexpr] = ACTIONS(1347), + [anon_sym_volatile] = ACTIONS(1347), + [anon_sym_restrict] = ACTIONS(1347), + [anon_sym___restrict__] = ACTIONS(1347), + [anon_sym__Atomic] = ACTIONS(1347), + [anon_sym__Noreturn] = ACTIONS(1347), + [anon_sym_noreturn] = ACTIONS(1347), + [anon_sym_alignas] = ACTIONS(1347), + [anon_sym__Alignas] = ACTIONS(1347), + [sym_primitive_type] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [anon_sym_case] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_goto] = ACTIONS(1347), + [anon_sym___try] = ACTIONS(1347), + [anon_sym___leave] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_sizeof] = ACTIONS(1347), + [anon_sym___alignof__] = ACTIONS(1347), + [anon_sym___alignof] = ACTIONS(1347), + [anon_sym__alignof] = ACTIONS(1347), + [anon_sym_alignof] = ACTIONS(1347), + [anon_sym__Alignof] = ACTIONS(1347), + [anon_sym_offsetof] = ACTIONS(1347), + [anon_sym__Generic] = ACTIONS(1347), + [anon_sym_asm] = ACTIONS(1347), + [anon_sym___asm__] = ACTIONS(1347), + [sym_number_literal] = ACTIONS(1349), + [anon_sym_L_SQUOTE] = ACTIONS(1349), + [anon_sym_u_SQUOTE] = ACTIONS(1349), + [anon_sym_U_SQUOTE] = ACTIONS(1349), + [anon_sym_u8_SQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [anon_sym_L_DQUOTE] = ACTIONS(1349), + [anon_sym_u_DQUOTE] = ACTIONS(1349), + [anon_sym_U_DQUOTE] = ACTIONS(1349), + [anon_sym_u8_DQUOTE] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym_true] = ACTIONS(1347), + [sym_false] = ACTIONS(1347), + [anon_sym_NULL] = ACTIONS(1347), + [anon_sym_nullptr] = ACTIONS(1347), [sym_comment] = ACTIONS(3), }, [154] = { - [sym_identifier] = ACTIONS(1340), - [aux_sym_preproc_include_token1] = ACTIONS(1340), - [aux_sym_preproc_def_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token2] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), - [aux_sym_preproc_else_token1] = ACTIONS(1340), - [aux_sym_preproc_elif_token1] = ACTIONS(1340), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1340), - [sym_preproc_directive] = ACTIONS(1340), - [anon_sym_LPAREN2] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym___extension__] = ACTIONS(1340), - [anon_sym_typedef] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym___attribute__] = ACTIONS(1340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), - [anon_sym___declspec] = ACTIONS(1340), - [anon_sym___cdecl] = ACTIONS(1340), - [anon_sym___clrcall] = ACTIONS(1340), - [anon_sym___stdcall] = ACTIONS(1340), - [anon_sym___fastcall] = ACTIONS(1340), - [anon_sym___thiscall] = ACTIONS(1340), - [anon_sym___vectorcall] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_auto] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1340), - [anon_sym_inline] = ACTIONS(1340), - [anon_sym___inline] = ACTIONS(1340), - [anon_sym___inline__] = ACTIONS(1340), - [anon_sym___forceinline] = ACTIONS(1340), - [anon_sym_thread_local] = ACTIONS(1340), - [anon_sym___thread] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [sym_primitive_type] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_switch] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_goto] = ACTIONS(1340), - [anon_sym___try] = ACTIONS(1340), - [anon_sym___leave] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1340), - [anon_sym___alignof__] = ACTIONS(1340), - [anon_sym___alignof] = ACTIONS(1340), - [anon_sym__alignof] = ACTIONS(1340), - [anon_sym_alignof] = ACTIONS(1340), - [anon_sym__Alignof] = ACTIONS(1340), - [anon_sym_offsetof] = ACTIONS(1340), - [anon_sym__Generic] = ACTIONS(1340), - [anon_sym_asm] = ACTIONS(1340), - [anon_sym___asm__] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1342), - [anon_sym_L_SQUOTE] = ACTIONS(1342), - [anon_sym_u_SQUOTE] = ACTIONS(1342), - [anon_sym_U_SQUOTE] = ACTIONS(1342), - [anon_sym_u8_SQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_L_DQUOTE] = ACTIONS(1342), - [anon_sym_u_DQUOTE] = ACTIONS(1342), - [anon_sym_U_DQUOTE] = ACTIONS(1342), - [anon_sym_u8_DQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_true] = ACTIONS(1340), - [sym_false] = ACTIONS(1340), - [anon_sym_NULL] = ACTIONS(1340), - [anon_sym_nullptr] = ACTIONS(1340), + [sym_identifier] = ACTIONS(1351), + [aux_sym_preproc_include_token1] = ACTIONS(1351), + [aux_sym_preproc_def_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token2] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), + [aux_sym_preproc_else_token1] = ACTIONS(1351), + [aux_sym_preproc_elif_token1] = ACTIONS(1351), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1351), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1351), + [sym_preproc_directive] = ACTIONS(1351), + [anon_sym_LPAREN2] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym___extension__] = ACTIONS(1351), + [anon_sym_typedef] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym___attribute__] = ACTIONS(1351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1353), + [anon_sym___declspec] = ACTIONS(1351), + [anon_sym___cdecl] = ACTIONS(1351), + [anon_sym___clrcall] = ACTIONS(1351), + [anon_sym___stdcall] = ACTIONS(1351), + [anon_sym___fastcall] = ACTIONS(1351), + [anon_sym___thiscall] = ACTIONS(1351), + [anon_sym___vectorcall] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_signed] = ACTIONS(1351), + [anon_sym_unsigned] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_auto] = ACTIONS(1351), + [anon_sym_register] = ACTIONS(1351), + [anon_sym_inline] = ACTIONS(1351), + [anon_sym___inline] = ACTIONS(1351), + [anon_sym___inline__] = ACTIONS(1351), + [anon_sym___forceinline] = ACTIONS(1351), + [anon_sym_thread_local] = ACTIONS(1351), + [anon_sym___thread] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_constexpr] = ACTIONS(1351), + [anon_sym_volatile] = ACTIONS(1351), + [anon_sym_restrict] = ACTIONS(1351), + [anon_sym___restrict__] = ACTIONS(1351), + [anon_sym__Atomic] = ACTIONS(1351), + [anon_sym__Noreturn] = ACTIONS(1351), + [anon_sym_noreturn] = ACTIONS(1351), + [anon_sym_alignas] = ACTIONS(1351), + [anon_sym__Alignas] = ACTIONS(1351), + [sym_primitive_type] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_goto] = ACTIONS(1351), + [anon_sym___try] = ACTIONS(1351), + [anon_sym___leave] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_sizeof] = ACTIONS(1351), + [anon_sym___alignof__] = ACTIONS(1351), + [anon_sym___alignof] = ACTIONS(1351), + [anon_sym__alignof] = ACTIONS(1351), + [anon_sym_alignof] = ACTIONS(1351), + [anon_sym__Alignof] = ACTIONS(1351), + [anon_sym_offsetof] = ACTIONS(1351), + [anon_sym__Generic] = ACTIONS(1351), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym___asm__] = ACTIONS(1351), + [sym_number_literal] = ACTIONS(1353), + [anon_sym_L_SQUOTE] = ACTIONS(1353), + [anon_sym_u_SQUOTE] = ACTIONS(1353), + [anon_sym_U_SQUOTE] = ACTIONS(1353), + [anon_sym_u8_SQUOTE] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_L_DQUOTE] = ACTIONS(1353), + [anon_sym_u_DQUOTE] = ACTIONS(1353), + [anon_sym_U_DQUOTE] = ACTIONS(1353), + [anon_sym_u8_DQUOTE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [anon_sym_NULL] = ACTIONS(1351), + [anon_sym_nullptr] = ACTIONS(1351), [sym_comment] = ACTIONS(3), }, [155] = { - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token2] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [aux_sym_preproc_else_token1] = ACTIONS(1344), - [aux_sym_preproc_elif_token1] = ACTIONS(1344), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym___extension__] = ACTIONS(1344), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym___inline] = ACTIONS(1344), - [anon_sym___inline__] = ACTIONS(1344), - [anon_sym___forceinline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym___thread] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym___try] = ACTIONS(1344), - [anon_sym___leave] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym___alignof__] = ACTIONS(1344), - [anon_sym___alignof] = ACTIONS(1344), - [anon_sym__alignof] = ACTIONS(1344), - [anon_sym_alignof] = ACTIONS(1344), - [anon_sym__Alignof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1355), + [aux_sym_preproc_include_token1] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1355), + [aux_sym_preproc_if_token1] = ACTIONS(1355), + [aux_sym_preproc_if_token2] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1355), + [aux_sym_preproc_else_token1] = ACTIONS(1355), + [aux_sym_preproc_elif_token1] = ACTIONS(1355), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1355), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1355), + [sym_preproc_directive] = ACTIONS(1355), + [anon_sym_LPAREN2] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1357), + [anon_sym_TILDE] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym___extension__] = ACTIONS(1355), + [anon_sym_typedef] = ACTIONS(1355), + [anon_sym_extern] = ACTIONS(1355), + [anon_sym___attribute__] = ACTIONS(1355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1357), + [anon_sym___declspec] = ACTIONS(1355), + [anon_sym___cdecl] = ACTIONS(1355), + [anon_sym___clrcall] = ACTIONS(1355), + [anon_sym___stdcall] = ACTIONS(1355), + [anon_sym___fastcall] = ACTIONS(1355), + [anon_sym___thiscall] = ACTIONS(1355), + [anon_sym___vectorcall] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_signed] = ACTIONS(1355), + [anon_sym_unsigned] = ACTIONS(1355), + [anon_sym_long] = ACTIONS(1355), + [anon_sym_short] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_auto] = ACTIONS(1355), + [anon_sym_register] = ACTIONS(1355), + [anon_sym_inline] = ACTIONS(1355), + [anon_sym___inline] = ACTIONS(1355), + [anon_sym___inline__] = ACTIONS(1355), + [anon_sym___forceinline] = ACTIONS(1355), + [anon_sym_thread_local] = ACTIONS(1355), + [anon_sym___thread] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_constexpr] = ACTIONS(1355), + [anon_sym_volatile] = ACTIONS(1355), + [anon_sym_restrict] = ACTIONS(1355), + [anon_sym___restrict__] = ACTIONS(1355), + [anon_sym__Atomic] = ACTIONS(1355), + [anon_sym__Noreturn] = ACTIONS(1355), + [anon_sym_noreturn] = ACTIONS(1355), + [anon_sym_alignas] = ACTIONS(1355), + [anon_sym__Alignas] = ACTIONS(1355), + [sym_primitive_type] = ACTIONS(1355), + [anon_sym_enum] = ACTIONS(1355), + [anon_sym_struct] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_switch] = ACTIONS(1355), + [anon_sym_case] = ACTIONS(1355), + [anon_sym_default] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_do] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_goto] = ACTIONS(1355), + [anon_sym___try] = ACTIONS(1355), + [anon_sym___leave] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1355), + [anon_sym___alignof__] = ACTIONS(1355), + [anon_sym___alignof] = ACTIONS(1355), + [anon_sym__alignof] = ACTIONS(1355), + [anon_sym_alignof] = ACTIONS(1355), + [anon_sym__Alignof] = ACTIONS(1355), + [anon_sym_offsetof] = ACTIONS(1355), + [anon_sym__Generic] = ACTIONS(1355), + [anon_sym_asm] = ACTIONS(1355), + [anon_sym___asm__] = ACTIONS(1355), + [sym_number_literal] = ACTIONS(1357), + [anon_sym_L_SQUOTE] = ACTIONS(1357), + [anon_sym_u_SQUOTE] = ACTIONS(1357), + [anon_sym_U_SQUOTE] = ACTIONS(1357), + [anon_sym_u8_SQUOTE] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1357), + [anon_sym_L_DQUOTE] = ACTIONS(1357), + [anon_sym_u_DQUOTE] = ACTIONS(1357), + [anon_sym_U_DQUOTE] = ACTIONS(1357), + [anon_sym_u8_DQUOTE] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [sym_true] = ACTIONS(1355), + [sym_false] = ACTIONS(1355), + [anon_sym_NULL] = ACTIONS(1355), + [anon_sym_nullptr] = ACTIONS(1355), [sym_comment] = ACTIONS(3), }, [156] = { - [sym_else_clause] = STATE(190), - [sym_identifier] = ACTIONS(1106), - [aux_sym_preproc_include_token1] = ACTIONS(1106), - [aux_sym_preproc_def_token1] = ACTIONS(1106), - [aux_sym_preproc_if_token1] = ACTIONS(1106), - [aux_sym_preproc_if_token2] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1106), - [sym_preproc_directive] = ACTIONS(1106), - [anon_sym_LPAREN2] = ACTIONS(1108), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1108), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym___extension__] = ACTIONS(1106), - [anon_sym_typedef] = ACTIONS(1106), - [anon_sym_extern] = ACTIONS(1106), - [anon_sym___attribute__] = ACTIONS(1106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1108), - [anon_sym___declspec] = ACTIONS(1106), - [anon_sym___cdecl] = ACTIONS(1106), - [anon_sym___clrcall] = ACTIONS(1106), - [anon_sym___stdcall] = ACTIONS(1106), - [anon_sym___fastcall] = ACTIONS(1106), - [anon_sym___thiscall] = ACTIONS(1106), - [anon_sym___vectorcall] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_signed] = ACTIONS(1106), - [anon_sym_unsigned] = ACTIONS(1106), - [anon_sym_long] = ACTIONS(1106), - [anon_sym_short] = ACTIONS(1106), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_auto] = ACTIONS(1106), - [anon_sym_register] = ACTIONS(1106), - [anon_sym_inline] = ACTIONS(1106), - [anon_sym___inline] = ACTIONS(1106), - [anon_sym___inline__] = ACTIONS(1106), - [anon_sym___forceinline] = ACTIONS(1106), - [anon_sym_thread_local] = ACTIONS(1106), - [anon_sym___thread] = ACTIONS(1106), - [anon_sym_const] = ACTIONS(1106), - [anon_sym_constexpr] = ACTIONS(1106), - [anon_sym_volatile] = ACTIONS(1106), - [anon_sym_restrict] = ACTIONS(1106), - [anon_sym___restrict__] = ACTIONS(1106), - [anon_sym__Atomic] = ACTIONS(1106), - [anon_sym__Noreturn] = ACTIONS(1106), - [anon_sym_noreturn] = ACTIONS(1106), - [sym_primitive_type] = ACTIONS(1106), - [anon_sym_enum] = ACTIONS(1106), - [anon_sym_struct] = ACTIONS(1106), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_if] = ACTIONS(1106), - [anon_sym_else] = ACTIONS(1348), - [anon_sym_switch] = ACTIONS(1106), - [anon_sym_case] = ACTIONS(1106), - [anon_sym_default] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1106), - [anon_sym_do] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(1106), - [anon_sym_return] = ACTIONS(1106), - [anon_sym_break] = ACTIONS(1106), - [anon_sym_continue] = ACTIONS(1106), - [anon_sym_goto] = ACTIONS(1106), - [anon_sym___try] = ACTIONS(1106), - [anon_sym___leave] = ACTIONS(1106), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_sizeof] = ACTIONS(1106), - [anon_sym___alignof__] = ACTIONS(1106), - [anon_sym___alignof] = ACTIONS(1106), - [anon_sym__alignof] = ACTIONS(1106), - [anon_sym_alignof] = ACTIONS(1106), - [anon_sym__Alignof] = ACTIONS(1106), - [anon_sym_offsetof] = ACTIONS(1106), - [anon_sym__Generic] = ACTIONS(1106), - [anon_sym_asm] = ACTIONS(1106), - [anon_sym___asm__] = ACTIONS(1106), - [sym_number_literal] = ACTIONS(1108), - [anon_sym_L_SQUOTE] = ACTIONS(1108), - [anon_sym_u_SQUOTE] = ACTIONS(1108), - [anon_sym_U_SQUOTE] = ACTIONS(1108), - [anon_sym_u8_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_L_DQUOTE] = ACTIONS(1108), - [anon_sym_u_DQUOTE] = ACTIONS(1108), - [anon_sym_U_DQUOTE] = ACTIONS(1108), - [anon_sym_u8_DQUOTE] = ACTIONS(1108), - [anon_sym_DQUOTE] = ACTIONS(1108), - [sym_true] = ACTIONS(1106), - [sym_false] = ACTIONS(1106), - [anon_sym_NULL] = ACTIONS(1106), - [anon_sym_nullptr] = ACTIONS(1106), + [sym_else_clause] = STATE(276), + [sym_identifier] = ACTIONS(1117), + [aux_sym_preproc_include_token1] = ACTIONS(1117), + [aux_sym_preproc_def_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token2] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1117), + [sym_preproc_directive] = ACTIONS(1117), + [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym___extension__] = ACTIONS(1117), + [anon_sym_typedef] = ACTIONS(1117), + [anon_sym_extern] = ACTIONS(1117), + [anon_sym___attribute__] = ACTIONS(1117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1119), + [anon_sym___declspec] = ACTIONS(1117), + [anon_sym___cdecl] = ACTIONS(1117), + [anon_sym___clrcall] = ACTIONS(1117), + [anon_sym___stdcall] = ACTIONS(1117), + [anon_sym___fastcall] = ACTIONS(1117), + [anon_sym___thiscall] = ACTIONS(1117), + [anon_sym___vectorcall] = ACTIONS(1117), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_signed] = ACTIONS(1117), + [anon_sym_unsigned] = ACTIONS(1117), + [anon_sym_long] = ACTIONS(1117), + [anon_sym_short] = ACTIONS(1117), + [anon_sym_static] = ACTIONS(1117), + [anon_sym_auto] = ACTIONS(1117), + [anon_sym_register] = ACTIONS(1117), + [anon_sym_inline] = ACTIONS(1117), + [anon_sym___inline] = ACTIONS(1117), + [anon_sym___inline__] = ACTIONS(1117), + [anon_sym___forceinline] = ACTIONS(1117), + [anon_sym_thread_local] = ACTIONS(1117), + [anon_sym___thread] = ACTIONS(1117), + [anon_sym_const] = ACTIONS(1117), + [anon_sym_constexpr] = ACTIONS(1117), + [anon_sym_volatile] = ACTIONS(1117), + [anon_sym_restrict] = ACTIONS(1117), + [anon_sym___restrict__] = ACTIONS(1117), + [anon_sym__Atomic] = ACTIONS(1117), + [anon_sym__Noreturn] = ACTIONS(1117), + [anon_sym_noreturn] = ACTIONS(1117), + [anon_sym_alignas] = ACTIONS(1117), + [anon_sym__Alignas] = ACTIONS(1117), + [sym_primitive_type] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_union] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1359), + [anon_sym_switch] = ACTIONS(1117), + [anon_sym_case] = ACTIONS(1117), + [anon_sym_default] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_goto] = ACTIONS(1117), + [anon_sym___try] = ACTIONS(1117), + [anon_sym___leave] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_sizeof] = ACTIONS(1117), + [anon_sym___alignof__] = ACTIONS(1117), + [anon_sym___alignof] = ACTIONS(1117), + [anon_sym__alignof] = ACTIONS(1117), + [anon_sym_alignof] = ACTIONS(1117), + [anon_sym__Alignof] = ACTIONS(1117), + [anon_sym_offsetof] = ACTIONS(1117), + [anon_sym__Generic] = ACTIONS(1117), + [anon_sym_asm] = ACTIONS(1117), + [anon_sym___asm__] = ACTIONS(1117), + [sym_number_literal] = ACTIONS(1119), + [anon_sym_L_SQUOTE] = ACTIONS(1119), + [anon_sym_u_SQUOTE] = ACTIONS(1119), + [anon_sym_U_SQUOTE] = ACTIONS(1119), + [anon_sym_u8_SQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_L_DQUOTE] = ACTIONS(1119), + [anon_sym_u_DQUOTE] = ACTIONS(1119), + [anon_sym_U_DQUOTE] = ACTIONS(1119), + [anon_sym_u8_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [anon_sym_NULL] = ACTIONS(1117), + [anon_sym_nullptr] = ACTIONS(1117), [sym_comment] = ACTIONS(3), }, [157] = { - [sym__expression] = STATE(733), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(708), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(708), - [sym_call_expression] = STATE(708), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(708), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(708), - [sym_initializer_list] = STATE(713), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(736), - [sym_null] = STATE(708), - [sym_identifier] = ACTIONS(1350), - [anon_sym_COMMA] = ACTIONS(1352), - [aux_sym_preproc_if_token2] = ACTIONS(1352), - [aux_sym_preproc_else_token1] = ACTIONS(1352), - [aux_sym_preproc_elif_token1] = ACTIONS(1350), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_PERCENT] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1350), - [anon_sym_GT_GT] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_EQ] = ACTIONS(1350), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_STAR_EQ] = ACTIONS(1352), - [anon_sym_SLASH_EQ] = ACTIONS(1352), - [anon_sym_PERCENT_EQ] = ACTIONS(1352), - [anon_sym_PLUS_EQ] = ACTIONS(1352), - [anon_sym_DASH_EQ] = ACTIONS(1352), - [anon_sym_LT_LT_EQ] = ACTIONS(1352), - [anon_sym_GT_GT_EQ] = ACTIONS(1352), - [anon_sym_AMP_EQ] = ACTIONS(1352), - [anon_sym_CARET_EQ] = ACTIONS(1352), - [anon_sym_PIPE_EQ] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1350), - [anon_sym_DASH_GT] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_else_clause] = STATE(241), + [sym_identifier] = ACTIONS(1117), + [aux_sym_preproc_include_token1] = ACTIONS(1117), + [aux_sym_preproc_def_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token1] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1117), + [sym_preproc_directive] = ACTIONS(1117), + [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym___extension__] = ACTIONS(1117), + [anon_sym_typedef] = ACTIONS(1117), + [anon_sym_extern] = ACTIONS(1117), + [anon_sym___attribute__] = ACTIONS(1117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1119), + [anon_sym___declspec] = ACTIONS(1117), + [anon_sym___cdecl] = ACTIONS(1117), + [anon_sym___clrcall] = ACTIONS(1117), + [anon_sym___stdcall] = ACTIONS(1117), + [anon_sym___fastcall] = ACTIONS(1117), + [anon_sym___thiscall] = ACTIONS(1117), + [anon_sym___vectorcall] = ACTIONS(1117), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_RBRACE] = ACTIONS(1119), + [anon_sym_signed] = ACTIONS(1117), + [anon_sym_unsigned] = ACTIONS(1117), + [anon_sym_long] = ACTIONS(1117), + [anon_sym_short] = ACTIONS(1117), + [anon_sym_static] = ACTIONS(1117), + [anon_sym_auto] = ACTIONS(1117), + [anon_sym_register] = ACTIONS(1117), + [anon_sym_inline] = ACTIONS(1117), + [anon_sym___inline] = ACTIONS(1117), + [anon_sym___inline__] = ACTIONS(1117), + [anon_sym___forceinline] = ACTIONS(1117), + [anon_sym_thread_local] = ACTIONS(1117), + [anon_sym___thread] = ACTIONS(1117), + [anon_sym_const] = ACTIONS(1117), + [anon_sym_constexpr] = ACTIONS(1117), + [anon_sym_volatile] = ACTIONS(1117), + [anon_sym_restrict] = ACTIONS(1117), + [anon_sym___restrict__] = ACTIONS(1117), + [anon_sym__Atomic] = ACTIONS(1117), + [anon_sym__Noreturn] = ACTIONS(1117), + [anon_sym_noreturn] = ACTIONS(1117), + [anon_sym_alignas] = ACTIONS(1117), + [anon_sym__Alignas] = ACTIONS(1117), + [sym_primitive_type] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_union] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(1117), + [anon_sym_case] = ACTIONS(1117), + [anon_sym_default] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_goto] = ACTIONS(1117), + [anon_sym___try] = ACTIONS(1117), + [anon_sym___leave] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_sizeof] = ACTIONS(1117), + [anon_sym___alignof__] = ACTIONS(1117), + [anon_sym___alignof] = ACTIONS(1117), + [anon_sym__alignof] = ACTIONS(1117), + [anon_sym_alignof] = ACTIONS(1117), + [anon_sym__Alignof] = ACTIONS(1117), + [anon_sym_offsetof] = ACTIONS(1117), + [anon_sym__Generic] = ACTIONS(1117), + [anon_sym_asm] = ACTIONS(1117), + [anon_sym___asm__] = ACTIONS(1117), + [sym_number_literal] = ACTIONS(1119), + [anon_sym_L_SQUOTE] = ACTIONS(1119), + [anon_sym_u_SQUOTE] = ACTIONS(1119), + [anon_sym_U_SQUOTE] = ACTIONS(1119), + [anon_sym_u8_SQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_L_DQUOTE] = ACTIONS(1119), + [anon_sym_u_DQUOTE] = ACTIONS(1119), + [anon_sym_U_DQUOTE] = ACTIONS(1119), + [anon_sym_u8_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [anon_sym_NULL] = ACTIONS(1117), + [anon_sym_nullptr] = ACTIONS(1117), [sym_comment] = ACTIONS(3), }, [158] = { - [sym_else_clause] = STATE(220), - [ts_builtin_sym_end] = ACTIONS(1108), - [sym_identifier] = ACTIONS(1106), - [aux_sym_preproc_include_token1] = ACTIONS(1106), - [aux_sym_preproc_def_token1] = ACTIONS(1106), - [aux_sym_preproc_if_token1] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1106), - [sym_preproc_directive] = ACTIONS(1106), - [anon_sym_LPAREN2] = ACTIONS(1108), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1108), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym___extension__] = ACTIONS(1106), - [anon_sym_typedef] = ACTIONS(1106), - [anon_sym_extern] = ACTIONS(1106), - [anon_sym___attribute__] = ACTIONS(1106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1108), - [anon_sym___declspec] = ACTIONS(1106), - [anon_sym___cdecl] = ACTIONS(1106), - [anon_sym___clrcall] = ACTIONS(1106), - [anon_sym___stdcall] = ACTIONS(1106), - [anon_sym___fastcall] = ACTIONS(1106), - [anon_sym___thiscall] = ACTIONS(1106), - [anon_sym___vectorcall] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_signed] = ACTIONS(1106), - [anon_sym_unsigned] = ACTIONS(1106), - [anon_sym_long] = ACTIONS(1106), - [anon_sym_short] = ACTIONS(1106), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_auto] = ACTIONS(1106), - [anon_sym_register] = ACTIONS(1106), - [anon_sym_inline] = ACTIONS(1106), - [anon_sym___inline] = ACTIONS(1106), - [anon_sym___inline__] = ACTIONS(1106), - [anon_sym___forceinline] = ACTIONS(1106), - [anon_sym_thread_local] = ACTIONS(1106), - [anon_sym___thread] = ACTIONS(1106), - [anon_sym_const] = ACTIONS(1106), - [anon_sym_constexpr] = ACTIONS(1106), - [anon_sym_volatile] = ACTIONS(1106), - [anon_sym_restrict] = ACTIONS(1106), - [anon_sym___restrict__] = ACTIONS(1106), - [anon_sym__Atomic] = ACTIONS(1106), - [anon_sym__Noreturn] = ACTIONS(1106), - [anon_sym_noreturn] = ACTIONS(1106), - [sym_primitive_type] = ACTIONS(1106), - [anon_sym_enum] = ACTIONS(1106), - [anon_sym_struct] = ACTIONS(1106), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_if] = ACTIONS(1106), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1106), - [anon_sym_case] = ACTIONS(1106), - [anon_sym_default] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1106), - [anon_sym_do] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(1106), - [anon_sym_return] = ACTIONS(1106), - [anon_sym_break] = ACTIONS(1106), - [anon_sym_continue] = ACTIONS(1106), - [anon_sym_goto] = ACTIONS(1106), - [anon_sym___try] = ACTIONS(1106), - [anon_sym___leave] = ACTIONS(1106), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_sizeof] = ACTIONS(1106), - [anon_sym___alignof__] = ACTIONS(1106), - [anon_sym___alignof] = ACTIONS(1106), - [anon_sym__alignof] = ACTIONS(1106), - [anon_sym_alignof] = ACTIONS(1106), - [anon_sym__Alignof] = ACTIONS(1106), - [anon_sym_offsetof] = ACTIONS(1106), - [anon_sym__Generic] = ACTIONS(1106), - [anon_sym_asm] = ACTIONS(1106), - [anon_sym___asm__] = ACTIONS(1106), - [sym_number_literal] = ACTIONS(1108), - [anon_sym_L_SQUOTE] = ACTIONS(1108), - [anon_sym_u_SQUOTE] = ACTIONS(1108), - [anon_sym_U_SQUOTE] = ACTIONS(1108), - [anon_sym_u8_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_L_DQUOTE] = ACTIONS(1108), - [anon_sym_u_DQUOTE] = ACTIONS(1108), - [anon_sym_U_DQUOTE] = ACTIONS(1108), - [anon_sym_u8_DQUOTE] = ACTIONS(1108), - [anon_sym_DQUOTE] = ACTIONS(1108), - [sym_true] = ACTIONS(1106), - [sym_false] = ACTIONS(1106), - [anon_sym_NULL] = ACTIONS(1106), - [anon_sym_nullptr] = ACTIONS(1106), + [sym_else_clause] = STATE(306), + [ts_builtin_sym_end] = ACTIONS(1119), + [sym_identifier] = ACTIONS(1117), + [aux_sym_preproc_include_token1] = ACTIONS(1117), + [aux_sym_preproc_def_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token1] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1117), + [sym_preproc_directive] = ACTIONS(1117), + [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym___extension__] = ACTIONS(1117), + [anon_sym_typedef] = ACTIONS(1117), + [anon_sym_extern] = ACTIONS(1117), + [anon_sym___attribute__] = ACTIONS(1117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1119), + [anon_sym___declspec] = ACTIONS(1117), + [anon_sym___cdecl] = ACTIONS(1117), + [anon_sym___clrcall] = ACTIONS(1117), + [anon_sym___stdcall] = ACTIONS(1117), + [anon_sym___fastcall] = ACTIONS(1117), + [anon_sym___thiscall] = ACTIONS(1117), + [anon_sym___vectorcall] = ACTIONS(1117), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_signed] = ACTIONS(1117), + [anon_sym_unsigned] = ACTIONS(1117), + [anon_sym_long] = ACTIONS(1117), + [anon_sym_short] = ACTIONS(1117), + [anon_sym_static] = ACTIONS(1117), + [anon_sym_auto] = ACTIONS(1117), + [anon_sym_register] = ACTIONS(1117), + [anon_sym_inline] = ACTIONS(1117), + [anon_sym___inline] = ACTIONS(1117), + [anon_sym___inline__] = ACTIONS(1117), + [anon_sym___forceinline] = ACTIONS(1117), + [anon_sym_thread_local] = ACTIONS(1117), + [anon_sym___thread] = ACTIONS(1117), + [anon_sym_const] = ACTIONS(1117), + [anon_sym_constexpr] = ACTIONS(1117), + [anon_sym_volatile] = ACTIONS(1117), + [anon_sym_restrict] = ACTIONS(1117), + [anon_sym___restrict__] = ACTIONS(1117), + [anon_sym__Atomic] = ACTIONS(1117), + [anon_sym__Noreturn] = ACTIONS(1117), + [anon_sym_noreturn] = ACTIONS(1117), + [anon_sym_alignas] = ACTIONS(1117), + [anon_sym__Alignas] = ACTIONS(1117), + [sym_primitive_type] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_union] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1363), + [anon_sym_switch] = ACTIONS(1117), + [anon_sym_case] = ACTIONS(1117), + [anon_sym_default] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_goto] = ACTIONS(1117), + [anon_sym___try] = ACTIONS(1117), + [anon_sym___leave] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_sizeof] = ACTIONS(1117), + [anon_sym___alignof__] = ACTIONS(1117), + [anon_sym___alignof] = ACTIONS(1117), + [anon_sym__alignof] = ACTIONS(1117), + [anon_sym_alignof] = ACTIONS(1117), + [anon_sym__Alignof] = ACTIONS(1117), + [anon_sym_offsetof] = ACTIONS(1117), + [anon_sym__Generic] = ACTIONS(1117), + [anon_sym_asm] = ACTIONS(1117), + [anon_sym___asm__] = ACTIONS(1117), + [sym_number_literal] = ACTIONS(1119), + [anon_sym_L_SQUOTE] = ACTIONS(1119), + [anon_sym_u_SQUOTE] = ACTIONS(1119), + [anon_sym_U_SQUOTE] = ACTIONS(1119), + [anon_sym_u8_SQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_L_DQUOTE] = ACTIONS(1119), + [anon_sym_u_DQUOTE] = ACTIONS(1119), + [anon_sym_U_DQUOTE] = ACTIONS(1119), + [anon_sym_u8_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [anon_sym_NULL] = ACTIONS(1117), + [anon_sym_nullptr] = ACTIONS(1117), [sym_comment] = ACTIONS(3), }, [159] = { - [sym__expression] = STATE(733), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(708), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(708), - [sym_call_expression] = STATE(708), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(708), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(708), - [sym_initializer_list] = STATE(713), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_identifier] = ACTIONS(1364), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_PERCENT] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1350), - [anon_sym_GT_GT] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_EQ] = ACTIONS(1350), - [anon_sym_COLON] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_STAR_EQ] = ACTIONS(1352), - [anon_sym_SLASH_EQ] = ACTIONS(1352), - [anon_sym_PERCENT_EQ] = ACTIONS(1352), - [anon_sym_PLUS_EQ] = ACTIONS(1352), - [anon_sym_DASH_EQ] = ACTIONS(1352), - [anon_sym_LT_LT_EQ] = ACTIONS(1352), - [anon_sym_GT_GT_EQ] = ACTIONS(1352), - [anon_sym_AMP_EQ] = ACTIONS(1352), - [anon_sym_CARET_EQ] = ACTIONS(1352), - [anon_sym_PIPE_EQ] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1350), - [anon_sym_DASH_GT] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [160] = { - [sym_else_clause] = STATE(269), - [sym_identifier] = ACTIONS(1106), - [aux_sym_preproc_include_token1] = ACTIONS(1106), - [aux_sym_preproc_def_token1] = ACTIONS(1106), - [aux_sym_preproc_if_token1] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1106), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1106), - [sym_preproc_directive] = ACTIONS(1106), - [anon_sym_LPAREN2] = ACTIONS(1108), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1108), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym___extension__] = ACTIONS(1106), - [anon_sym_typedef] = ACTIONS(1106), - [anon_sym_extern] = ACTIONS(1106), - [anon_sym___attribute__] = ACTIONS(1106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1108), - [anon_sym___declspec] = ACTIONS(1106), - [anon_sym___cdecl] = ACTIONS(1106), - [anon_sym___clrcall] = ACTIONS(1106), - [anon_sym___stdcall] = ACTIONS(1106), - [anon_sym___fastcall] = ACTIONS(1106), - [anon_sym___thiscall] = ACTIONS(1106), - [anon_sym___vectorcall] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_RBRACE] = ACTIONS(1108), - [anon_sym_signed] = ACTIONS(1106), - [anon_sym_unsigned] = ACTIONS(1106), - [anon_sym_long] = ACTIONS(1106), - [anon_sym_short] = ACTIONS(1106), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_auto] = ACTIONS(1106), - [anon_sym_register] = ACTIONS(1106), - [anon_sym_inline] = ACTIONS(1106), - [anon_sym___inline] = ACTIONS(1106), - [anon_sym___inline__] = ACTIONS(1106), - [anon_sym___forceinline] = ACTIONS(1106), - [anon_sym_thread_local] = ACTIONS(1106), - [anon_sym___thread] = ACTIONS(1106), - [anon_sym_const] = ACTIONS(1106), - [anon_sym_constexpr] = ACTIONS(1106), - [anon_sym_volatile] = ACTIONS(1106), - [anon_sym_restrict] = ACTIONS(1106), - [anon_sym___restrict__] = ACTIONS(1106), - [anon_sym__Atomic] = ACTIONS(1106), - [anon_sym__Noreturn] = ACTIONS(1106), - [anon_sym_noreturn] = ACTIONS(1106), - [sym_primitive_type] = ACTIONS(1106), - [anon_sym_enum] = ACTIONS(1106), - [anon_sym_struct] = ACTIONS(1106), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_if] = ACTIONS(1106), - [anon_sym_else] = ACTIONS(1372), - [anon_sym_switch] = ACTIONS(1106), - [anon_sym_case] = ACTIONS(1106), - [anon_sym_default] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1106), - [anon_sym_do] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(1106), - [anon_sym_return] = ACTIONS(1106), - [anon_sym_break] = ACTIONS(1106), - [anon_sym_continue] = ACTIONS(1106), - [anon_sym_goto] = ACTIONS(1106), - [anon_sym___try] = ACTIONS(1106), - [anon_sym___leave] = ACTIONS(1106), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_sizeof] = ACTIONS(1106), - [anon_sym___alignof__] = ACTIONS(1106), - [anon_sym___alignof] = ACTIONS(1106), - [anon_sym__alignof] = ACTIONS(1106), - [anon_sym_alignof] = ACTIONS(1106), - [anon_sym__Alignof] = ACTIONS(1106), - [anon_sym_offsetof] = ACTIONS(1106), - [anon_sym__Generic] = ACTIONS(1106), - [anon_sym_asm] = ACTIONS(1106), - [anon_sym___asm__] = ACTIONS(1106), - [sym_number_literal] = ACTIONS(1108), - [anon_sym_L_SQUOTE] = ACTIONS(1108), - [anon_sym_u_SQUOTE] = ACTIONS(1108), - [anon_sym_U_SQUOTE] = ACTIONS(1108), - [anon_sym_u8_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_L_DQUOTE] = ACTIONS(1108), - [anon_sym_u_DQUOTE] = ACTIONS(1108), - [anon_sym_U_DQUOTE] = ACTIONS(1108), - [anon_sym_u8_DQUOTE] = ACTIONS(1108), - [anon_sym_DQUOTE] = ACTIONS(1108), - [sym_true] = ACTIONS(1106), - [sym_false] = ACTIONS(1106), - [anon_sym_NULL] = ACTIONS(1106), - [anon_sym_nullptr] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1239), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_LPAREN2] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym___extension__] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym___attribute__] = ACTIONS(1239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1239), + [anon_sym___cdecl] = ACTIONS(1239), + [anon_sym___clrcall] = ACTIONS(1239), + [anon_sym___stdcall] = ACTIONS(1239), + [anon_sym___fastcall] = ACTIONS(1239), + [anon_sym___thiscall] = ACTIONS(1239), + [anon_sym___vectorcall] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym___inline] = ACTIONS(1239), + [anon_sym___inline__] = ACTIONS(1239), + [anon_sym___forceinline] = ACTIONS(1239), + [anon_sym_thread_local] = ACTIONS(1239), + [anon_sym___thread] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_constexpr] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym___restrict__] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym__Noreturn] = ACTIONS(1239), + [anon_sym_noreturn] = ACTIONS(1239), + [anon_sym_alignas] = ACTIONS(1239), + [anon_sym__Alignas] = ACTIONS(1239), + [sym_primitive_type] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_switch] = ACTIONS(1239), + [anon_sym_case] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_goto] = ACTIONS(1239), + [anon_sym___try] = ACTIONS(1239), + [anon_sym___leave] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_sizeof] = ACTIONS(1239), + [anon_sym___alignof__] = ACTIONS(1239), + [anon_sym___alignof] = ACTIONS(1239), + [anon_sym__alignof] = ACTIONS(1239), + [anon_sym_alignof] = ACTIONS(1239), + [anon_sym__Alignof] = ACTIONS(1239), + [anon_sym_offsetof] = ACTIONS(1239), + [anon_sym__Generic] = ACTIONS(1239), + [anon_sym_asm] = ACTIONS(1239), + [anon_sym___asm__] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1241), + [anon_sym_L_SQUOTE] = ACTIONS(1241), + [anon_sym_u_SQUOTE] = ACTIONS(1241), + [anon_sym_U_SQUOTE] = ACTIONS(1241), + [anon_sym_u8_SQUOTE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_L_DQUOTE] = ACTIONS(1241), + [anon_sym_u_DQUOTE] = ACTIONS(1241), + [anon_sym_U_DQUOTE] = ACTIONS(1241), + [anon_sym_u8_DQUOTE] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [anon_sym_NULL] = ACTIONS(1239), + [anon_sym_nullptr] = ACTIONS(1239), [sym_comment] = ACTIONS(3), }, [161] = { - [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___extension__] = ACTIONS(1120), - [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_signed] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1120), - [anon_sym_long] = ACTIONS(1120), - [anon_sym_short] = ACTIONS(1120), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_auto] = ACTIONS(1120), - [anon_sym_register] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym___inline] = ACTIONS(1120), - [anon_sym___inline__] = ACTIONS(1120), - [anon_sym___forceinline] = ACTIONS(1120), - [anon_sym_thread_local] = ACTIONS(1120), - [anon_sym___thread] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1120), - [anon_sym___leave] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_sizeof] = ACTIONS(1120), - [anon_sym___alignof__] = ACTIONS(1120), - [anon_sym___alignof] = ACTIONS(1120), - [anon_sym__alignof] = ACTIONS(1120), - [anon_sym_alignof] = ACTIONS(1120), - [anon_sym__Alignof] = ACTIONS(1120), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1120), - [anon_sym_nullptr] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1127), + [aux_sym_preproc_include_token1] = ACTIONS(1127), + [aux_sym_preproc_def_token1] = ACTIONS(1127), + [aux_sym_preproc_if_token1] = ACTIONS(1127), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1127), + [sym_preproc_directive] = ACTIONS(1127), + [anon_sym_LPAREN2] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1129), + [anon_sym___extension__] = ACTIONS(1127), + [anon_sym_typedef] = ACTIONS(1127), + [anon_sym_extern] = ACTIONS(1127), + [anon_sym___attribute__] = ACTIONS(1127), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1129), + [anon_sym___declspec] = ACTIONS(1127), + [anon_sym___cdecl] = ACTIONS(1127), + [anon_sym___clrcall] = ACTIONS(1127), + [anon_sym___stdcall] = ACTIONS(1127), + [anon_sym___fastcall] = ACTIONS(1127), + [anon_sym___thiscall] = ACTIONS(1127), + [anon_sym___vectorcall] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_RBRACE] = ACTIONS(1129), + [anon_sym_signed] = ACTIONS(1127), + [anon_sym_unsigned] = ACTIONS(1127), + [anon_sym_long] = ACTIONS(1127), + [anon_sym_short] = ACTIONS(1127), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_auto] = ACTIONS(1127), + [anon_sym_register] = ACTIONS(1127), + [anon_sym_inline] = ACTIONS(1127), + [anon_sym___inline] = ACTIONS(1127), + [anon_sym___inline__] = ACTIONS(1127), + [anon_sym___forceinline] = ACTIONS(1127), + [anon_sym_thread_local] = ACTIONS(1127), + [anon_sym___thread] = ACTIONS(1127), + [anon_sym_const] = ACTIONS(1127), + [anon_sym_constexpr] = ACTIONS(1127), + [anon_sym_volatile] = ACTIONS(1127), + [anon_sym_restrict] = ACTIONS(1127), + [anon_sym___restrict__] = ACTIONS(1127), + [anon_sym__Atomic] = ACTIONS(1127), + [anon_sym__Noreturn] = ACTIONS(1127), + [anon_sym_noreturn] = ACTIONS(1127), + [anon_sym_alignas] = ACTIONS(1127), + [anon_sym__Alignas] = ACTIONS(1127), + [sym_primitive_type] = ACTIONS(1127), + [anon_sym_enum] = ACTIONS(1127), + [anon_sym_struct] = ACTIONS(1127), + [anon_sym_union] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1127), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_switch] = ACTIONS(1127), + [anon_sym_case] = ACTIONS(1127), + [anon_sym_default] = ACTIONS(1127), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1127), + [anon_sym_for] = ACTIONS(1127), + [anon_sym_return] = ACTIONS(1127), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1127), + [anon_sym_goto] = ACTIONS(1127), + [anon_sym___try] = ACTIONS(1127), + [anon_sym___leave] = ACTIONS(1127), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_sizeof] = ACTIONS(1127), + [anon_sym___alignof__] = ACTIONS(1127), + [anon_sym___alignof] = ACTIONS(1127), + [anon_sym__alignof] = ACTIONS(1127), + [anon_sym_alignof] = ACTIONS(1127), + [anon_sym__Alignof] = ACTIONS(1127), + [anon_sym_offsetof] = ACTIONS(1127), + [anon_sym__Generic] = ACTIONS(1127), + [anon_sym_asm] = ACTIONS(1127), + [anon_sym___asm__] = ACTIONS(1127), + [sym_number_literal] = ACTIONS(1129), + [anon_sym_L_SQUOTE] = ACTIONS(1129), + [anon_sym_u_SQUOTE] = ACTIONS(1129), + [anon_sym_U_SQUOTE] = ACTIONS(1129), + [anon_sym_u8_SQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1129), + [anon_sym_L_DQUOTE] = ACTIONS(1129), + [anon_sym_u_DQUOTE] = ACTIONS(1129), + [anon_sym_U_DQUOTE] = ACTIONS(1129), + [anon_sym_u8_DQUOTE] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [anon_sym_NULL] = ACTIONS(1127), + [anon_sym_nullptr] = ACTIONS(1127), [sym_comment] = ACTIONS(3), }, [162] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1135), + [aux_sym_preproc_include_token1] = ACTIONS(1135), + [aux_sym_preproc_def_token1] = ACTIONS(1135), + [aux_sym_preproc_if_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1135), + [sym_preproc_directive] = ACTIONS(1135), + [anon_sym_LPAREN2] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1137), + [anon_sym___extension__] = ACTIONS(1135), + [anon_sym_typedef] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym___attribute__] = ACTIONS(1135), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___declspec] = ACTIONS(1135), + [anon_sym___cdecl] = ACTIONS(1135), + [anon_sym___clrcall] = ACTIONS(1135), + [anon_sym___stdcall] = ACTIONS(1135), + [anon_sym___fastcall] = ACTIONS(1135), + [anon_sym___thiscall] = ACTIONS(1135), + [anon_sym___vectorcall] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_RBRACE] = ACTIONS(1137), + [anon_sym_signed] = ACTIONS(1135), + [anon_sym_unsigned] = ACTIONS(1135), + [anon_sym_long] = ACTIONS(1135), + [anon_sym_short] = ACTIONS(1135), + [anon_sym_static] = ACTIONS(1135), + [anon_sym_auto] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_inline] = ACTIONS(1135), + [anon_sym___inline] = ACTIONS(1135), + [anon_sym___inline__] = ACTIONS(1135), + [anon_sym___forceinline] = ACTIONS(1135), + [anon_sym_thread_local] = ACTIONS(1135), + [anon_sym___thread] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_constexpr] = ACTIONS(1135), + [anon_sym_volatile] = ACTIONS(1135), + [anon_sym_restrict] = ACTIONS(1135), + [anon_sym___restrict__] = ACTIONS(1135), + [anon_sym__Atomic] = ACTIONS(1135), + [anon_sym__Noreturn] = ACTIONS(1135), + [anon_sym_noreturn] = ACTIONS(1135), + [anon_sym_alignas] = ACTIONS(1135), + [anon_sym__Alignas] = ACTIONS(1135), + [sym_primitive_type] = ACTIONS(1135), + [anon_sym_enum] = ACTIONS(1135), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_union] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_switch] = ACTIONS(1135), + [anon_sym_case] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_goto] = ACTIONS(1135), + [anon_sym___try] = ACTIONS(1135), + [anon_sym___leave] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_sizeof] = ACTIONS(1135), + [anon_sym___alignof__] = ACTIONS(1135), + [anon_sym___alignof] = ACTIONS(1135), + [anon_sym__alignof] = ACTIONS(1135), + [anon_sym_alignof] = ACTIONS(1135), + [anon_sym__Alignof] = ACTIONS(1135), + [anon_sym_offsetof] = ACTIONS(1135), + [anon_sym__Generic] = ACTIONS(1135), + [anon_sym_asm] = ACTIONS(1135), + [anon_sym___asm__] = ACTIONS(1135), + [sym_number_literal] = ACTIONS(1137), + [anon_sym_L_SQUOTE] = ACTIONS(1137), + [anon_sym_u_SQUOTE] = ACTIONS(1137), + [anon_sym_U_SQUOTE] = ACTIONS(1137), + [anon_sym_u8_SQUOTE] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1137), + [anon_sym_L_DQUOTE] = ACTIONS(1137), + [anon_sym_u_DQUOTE] = ACTIONS(1137), + [anon_sym_U_DQUOTE] = ACTIONS(1137), + [anon_sym_u8_DQUOTE] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym_true] = ACTIONS(1135), + [sym_false] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [anon_sym_nullptr] = ACTIONS(1135), [sym_comment] = ACTIONS(3), }, [163] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1133), + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), [sym_comment] = ACTIONS(3), }, [164] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1179), + [aux_sym_preproc_include_token1] = ACTIONS(1179), + [aux_sym_preproc_def_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), + [sym_preproc_directive] = ACTIONS(1179), + [anon_sym_LPAREN2] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym___extension__] = ACTIONS(1179), + [anon_sym_typedef] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym___attribute__] = ACTIONS(1179), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym___declspec] = ACTIONS(1179), + [anon_sym___cdecl] = ACTIONS(1179), + [anon_sym___clrcall] = ACTIONS(1179), + [anon_sym___stdcall] = ACTIONS(1179), + [anon_sym___fastcall] = ACTIONS(1179), + [anon_sym___thiscall] = ACTIONS(1179), + [anon_sym___vectorcall] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_signed] = ACTIONS(1179), + [anon_sym_unsigned] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_auto] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_inline] = ACTIONS(1179), + [anon_sym___inline] = ACTIONS(1179), + [anon_sym___inline__] = ACTIONS(1179), + [anon_sym___forceinline] = ACTIONS(1179), + [anon_sym_thread_local] = ACTIONS(1179), + [anon_sym___thread] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_constexpr] = ACTIONS(1179), + [anon_sym_volatile] = ACTIONS(1179), + [anon_sym_restrict] = ACTIONS(1179), + [anon_sym___restrict__] = ACTIONS(1179), + [anon_sym__Atomic] = ACTIONS(1179), + [anon_sym__Noreturn] = ACTIONS(1179), + [anon_sym_noreturn] = ACTIONS(1179), + [anon_sym_alignas] = ACTIONS(1179), + [anon_sym__Alignas] = ACTIONS(1179), + [sym_primitive_type] = ACTIONS(1179), + [anon_sym_enum] = ACTIONS(1179), + [anon_sym_struct] = ACTIONS(1179), + [anon_sym_union] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_case] = ACTIONS(1179), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_goto] = ACTIONS(1179), + [anon_sym___try] = ACTIONS(1179), + [anon_sym___leave] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_sizeof] = ACTIONS(1179), + [anon_sym___alignof__] = ACTIONS(1179), + [anon_sym___alignof] = ACTIONS(1179), + [anon_sym__alignof] = ACTIONS(1179), + [anon_sym_alignof] = ACTIONS(1179), + [anon_sym__Alignof] = ACTIONS(1179), + [anon_sym_offsetof] = ACTIONS(1179), + [anon_sym__Generic] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym___asm__] = ACTIONS(1179), + [sym_number_literal] = ACTIONS(1181), + [anon_sym_L_SQUOTE] = ACTIONS(1181), + [anon_sym_u_SQUOTE] = ACTIONS(1181), + [anon_sym_U_SQUOTE] = ACTIONS(1181), + [anon_sym_u8_SQUOTE] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_L_DQUOTE] = ACTIONS(1181), + [anon_sym_u_DQUOTE] = ACTIONS(1181), + [anon_sym_U_DQUOTE] = ACTIONS(1181), + [anon_sym_u8_DQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym_true] = ACTIONS(1179), + [sym_false] = ACTIONS(1179), + [anon_sym_NULL] = ACTIONS(1179), + [anon_sym_nullptr] = ACTIONS(1179), [sym_comment] = ACTIONS(3), }, [165] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1227), + [aux_sym_preproc_include_token1] = ACTIONS(1227), + [aux_sym_preproc_def_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), + [sym_preproc_directive] = ACTIONS(1227), + [anon_sym_LPAREN2] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym___extension__] = ACTIONS(1227), + [anon_sym_typedef] = ACTIONS(1227), + [anon_sym_extern] = ACTIONS(1227), + [anon_sym___attribute__] = ACTIONS(1227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1229), + [anon_sym___declspec] = ACTIONS(1227), + [anon_sym___cdecl] = ACTIONS(1227), + [anon_sym___clrcall] = ACTIONS(1227), + [anon_sym___stdcall] = ACTIONS(1227), + [anon_sym___fastcall] = ACTIONS(1227), + [anon_sym___thiscall] = ACTIONS(1227), + [anon_sym___vectorcall] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_signed] = ACTIONS(1227), + [anon_sym_unsigned] = ACTIONS(1227), + [anon_sym_long] = ACTIONS(1227), + [anon_sym_short] = ACTIONS(1227), + [anon_sym_static] = ACTIONS(1227), + [anon_sym_auto] = ACTIONS(1227), + [anon_sym_register] = ACTIONS(1227), + [anon_sym_inline] = ACTIONS(1227), + [anon_sym___inline] = ACTIONS(1227), + [anon_sym___inline__] = ACTIONS(1227), + [anon_sym___forceinline] = ACTIONS(1227), + [anon_sym_thread_local] = ACTIONS(1227), + [anon_sym___thread] = ACTIONS(1227), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_constexpr] = ACTIONS(1227), + [anon_sym_volatile] = ACTIONS(1227), + [anon_sym_restrict] = ACTIONS(1227), + [anon_sym___restrict__] = ACTIONS(1227), + [anon_sym__Atomic] = ACTIONS(1227), + [anon_sym__Noreturn] = ACTIONS(1227), + [anon_sym_noreturn] = ACTIONS(1227), + [anon_sym_alignas] = ACTIONS(1227), + [anon_sym__Alignas] = ACTIONS(1227), + [sym_primitive_type] = ACTIONS(1227), + [anon_sym_enum] = ACTIONS(1227), + [anon_sym_struct] = ACTIONS(1227), + [anon_sym_union] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_else] = ACTIONS(1227), + [anon_sym_switch] = ACTIONS(1227), + [anon_sym_case] = ACTIONS(1227), + [anon_sym_default] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_goto] = ACTIONS(1227), + [anon_sym___try] = ACTIONS(1227), + [anon_sym___leave] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_sizeof] = ACTIONS(1227), + [anon_sym___alignof__] = ACTIONS(1227), + [anon_sym___alignof] = ACTIONS(1227), + [anon_sym__alignof] = ACTIONS(1227), + [anon_sym_alignof] = ACTIONS(1227), + [anon_sym__Alignof] = ACTIONS(1227), + [anon_sym_offsetof] = ACTIONS(1227), + [anon_sym__Generic] = ACTIONS(1227), + [anon_sym_asm] = ACTIONS(1227), + [anon_sym___asm__] = ACTIONS(1227), + [sym_number_literal] = ACTIONS(1229), + [anon_sym_L_SQUOTE] = ACTIONS(1229), + [anon_sym_u_SQUOTE] = ACTIONS(1229), + [anon_sym_U_SQUOTE] = ACTIONS(1229), + [anon_sym_u8_SQUOTE] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_L_DQUOTE] = ACTIONS(1229), + [anon_sym_u_DQUOTE] = ACTIONS(1229), + [anon_sym_U_DQUOTE] = ACTIONS(1229), + [anon_sym_u8_DQUOTE] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym_true] = ACTIONS(1227), + [sym_false] = ACTIONS(1227), + [anon_sym_NULL] = ACTIONS(1227), + [anon_sym_nullptr] = ACTIONS(1227), [sym_comment] = ACTIONS(3), }, [166] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1219), + [aux_sym_preproc_include_token1] = ACTIONS(1219), + [aux_sym_preproc_def_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), + [sym_preproc_directive] = ACTIONS(1219), + [anon_sym_LPAREN2] = ACTIONS(1221), + [anon_sym_BANG] = ACTIONS(1221), + [anon_sym_TILDE] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym___extension__] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1219), + [anon_sym_extern] = ACTIONS(1219), + [anon_sym___attribute__] = ACTIONS(1219), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), + [anon_sym___declspec] = ACTIONS(1219), + [anon_sym___cdecl] = ACTIONS(1219), + [anon_sym___clrcall] = ACTIONS(1219), + [anon_sym___stdcall] = ACTIONS(1219), + [anon_sym___fastcall] = ACTIONS(1219), + [anon_sym___thiscall] = ACTIONS(1219), + [anon_sym___vectorcall] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_signed] = ACTIONS(1219), + [anon_sym_unsigned] = ACTIONS(1219), + [anon_sym_long] = ACTIONS(1219), + [anon_sym_short] = ACTIONS(1219), + [anon_sym_static] = ACTIONS(1219), + [anon_sym_auto] = ACTIONS(1219), + [anon_sym_register] = ACTIONS(1219), + [anon_sym_inline] = ACTIONS(1219), + [anon_sym___inline] = ACTIONS(1219), + [anon_sym___inline__] = ACTIONS(1219), + [anon_sym___forceinline] = ACTIONS(1219), + [anon_sym_thread_local] = ACTIONS(1219), + [anon_sym___thread] = ACTIONS(1219), + [anon_sym_const] = ACTIONS(1219), + [anon_sym_constexpr] = ACTIONS(1219), + [anon_sym_volatile] = ACTIONS(1219), + [anon_sym_restrict] = ACTIONS(1219), + [anon_sym___restrict__] = ACTIONS(1219), + [anon_sym__Atomic] = ACTIONS(1219), + [anon_sym__Noreturn] = ACTIONS(1219), + [anon_sym_noreturn] = ACTIONS(1219), + [anon_sym_alignas] = ACTIONS(1219), + [anon_sym__Alignas] = ACTIONS(1219), + [sym_primitive_type] = ACTIONS(1219), + [anon_sym_enum] = ACTIONS(1219), + [anon_sym_struct] = ACTIONS(1219), + [anon_sym_union] = ACTIONS(1219), + [anon_sym_if] = ACTIONS(1219), + [anon_sym_else] = ACTIONS(1219), + [anon_sym_switch] = ACTIONS(1219), + [anon_sym_case] = ACTIONS(1219), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1219), + [anon_sym_for] = ACTIONS(1219), + [anon_sym_return] = ACTIONS(1219), + [anon_sym_break] = ACTIONS(1219), + [anon_sym_continue] = ACTIONS(1219), + [anon_sym_goto] = ACTIONS(1219), + [anon_sym___try] = ACTIONS(1219), + [anon_sym___leave] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1219), + [anon_sym___alignof__] = ACTIONS(1219), + [anon_sym___alignof] = ACTIONS(1219), + [anon_sym__alignof] = ACTIONS(1219), + [anon_sym_alignof] = ACTIONS(1219), + [anon_sym__Alignof] = ACTIONS(1219), + [anon_sym_offsetof] = ACTIONS(1219), + [anon_sym__Generic] = ACTIONS(1219), + [anon_sym_asm] = ACTIONS(1219), + [anon_sym___asm__] = ACTIONS(1219), + [sym_number_literal] = ACTIONS(1221), + [anon_sym_L_SQUOTE] = ACTIONS(1221), + [anon_sym_u_SQUOTE] = ACTIONS(1221), + [anon_sym_U_SQUOTE] = ACTIONS(1221), + [anon_sym_u8_SQUOTE] = ACTIONS(1221), + [anon_sym_SQUOTE] = ACTIONS(1221), + [anon_sym_L_DQUOTE] = ACTIONS(1221), + [anon_sym_u_DQUOTE] = ACTIONS(1221), + [anon_sym_U_DQUOTE] = ACTIONS(1221), + [anon_sym_u8_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym_true] = ACTIONS(1219), + [sym_false] = ACTIONS(1219), + [anon_sym_NULL] = ACTIONS(1219), + [anon_sym_nullptr] = ACTIONS(1219), [sym_comment] = ACTIONS(3), }, [167] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_RBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, [168] = { - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token2] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym___extension__] = ACTIONS(1232), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym___inline] = ACTIONS(1232), - [anon_sym___inline__] = ACTIONS(1232), - [anon_sym___forceinline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym___thread] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym___try] = ACTIONS(1232), - [anon_sym___leave] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym___alignof__] = ACTIONS(1232), - [anon_sym___alignof] = ACTIONS(1232), - [anon_sym__alignof] = ACTIONS(1232), - [anon_sym_alignof] = ACTIONS(1232), - [anon_sym__Alignof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), + [sym_identifier] = ACTIONS(1187), + [aux_sym_preproc_include_token1] = ACTIONS(1187), + [aux_sym_preproc_def_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), + [sym_preproc_directive] = ACTIONS(1187), + [anon_sym_LPAREN2] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym___extension__] = ACTIONS(1187), + [anon_sym_typedef] = ACTIONS(1187), + [anon_sym_extern] = ACTIONS(1187), + [anon_sym___attribute__] = ACTIONS(1187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), + [anon_sym___declspec] = ACTIONS(1187), + [anon_sym___cdecl] = ACTIONS(1187), + [anon_sym___clrcall] = ACTIONS(1187), + [anon_sym___stdcall] = ACTIONS(1187), + [anon_sym___fastcall] = ACTIONS(1187), + [anon_sym___thiscall] = ACTIONS(1187), + [anon_sym___vectorcall] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1189), + [anon_sym_signed] = ACTIONS(1187), + [anon_sym_unsigned] = ACTIONS(1187), + [anon_sym_long] = ACTIONS(1187), + [anon_sym_short] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1187), + [anon_sym_auto] = ACTIONS(1187), + [anon_sym_register] = ACTIONS(1187), + [anon_sym_inline] = ACTIONS(1187), + [anon_sym___inline] = ACTIONS(1187), + [anon_sym___inline__] = ACTIONS(1187), + [anon_sym___forceinline] = ACTIONS(1187), + [anon_sym_thread_local] = ACTIONS(1187), + [anon_sym___thread] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_constexpr] = ACTIONS(1187), + [anon_sym_volatile] = ACTIONS(1187), + [anon_sym_restrict] = ACTIONS(1187), + [anon_sym___restrict__] = ACTIONS(1187), + [anon_sym__Atomic] = ACTIONS(1187), + [anon_sym__Noreturn] = ACTIONS(1187), + [anon_sym_noreturn] = ACTIONS(1187), + [anon_sym_alignas] = ACTIONS(1187), + [anon_sym__Alignas] = ACTIONS(1187), + [sym_primitive_type] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_union] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_switch] = ACTIONS(1187), + [anon_sym_case] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_goto] = ACTIONS(1187), + [anon_sym___try] = ACTIONS(1187), + [anon_sym___leave] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1187), + [anon_sym___alignof__] = ACTIONS(1187), + [anon_sym___alignof] = ACTIONS(1187), + [anon_sym__alignof] = ACTIONS(1187), + [anon_sym_alignof] = ACTIONS(1187), + [anon_sym__Alignof] = ACTIONS(1187), + [anon_sym_offsetof] = ACTIONS(1187), + [anon_sym__Generic] = ACTIONS(1187), + [anon_sym_asm] = ACTIONS(1187), + [anon_sym___asm__] = ACTIONS(1187), + [sym_number_literal] = ACTIONS(1189), + [anon_sym_L_SQUOTE] = ACTIONS(1189), + [anon_sym_u_SQUOTE] = ACTIONS(1189), + [anon_sym_U_SQUOTE] = ACTIONS(1189), + [anon_sym_u8_SQUOTE] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_L_DQUOTE] = ACTIONS(1189), + [anon_sym_u_DQUOTE] = ACTIONS(1189), + [anon_sym_U_DQUOTE] = ACTIONS(1189), + [anon_sym_u8_DQUOTE] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [sym_true] = ACTIONS(1187), + [sym_false] = ACTIONS(1187), + [anon_sym_NULL] = ACTIONS(1187), + [anon_sym_nullptr] = ACTIONS(1187), [sym_comment] = ACTIONS(3), }, [169] = { - [sym_identifier] = ACTIONS(1228), - [aux_sym_preproc_include_token1] = ACTIONS(1228), - [aux_sym_preproc_def_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token2] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), - [sym_preproc_directive] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym___extension__] = ACTIONS(1228), - [anon_sym_typedef] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym___attribute__] = ACTIONS(1228), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), - [anon_sym___declspec] = ACTIONS(1228), - [anon_sym___cdecl] = ACTIONS(1228), - [anon_sym___clrcall] = ACTIONS(1228), - [anon_sym___stdcall] = ACTIONS(1228), - [anon_sym___fastcall] = ACTIONS(1228), - [anon_sym___thiscall] = ACTIONS(1228), - [anon_sym___vectorcall] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_auto] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_inline] = ACTIONS(1228), - [anon_sym___inline] = ACTIONS(1228), - [anon_sym___inline__] = ACTIONS(1228), - [anon_sym___forceinline] = ACTIONS(1228), - [anon_sym_thread_local] = ACTIONS(1228), - [anon_sym___thread] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_constexpr] = ACTIONS(1228), - [anon_sym_volatile] = ACTIONS(1228), - [anon_sym_restrict] = ACTIONS(1228), - [anon_sym___restrict__] = ACTIONS(1228), - [anon_sym__Atomic] = ACTIONS(1228), - [anon_sym__Noreturn] = ACTIONS(1228), - [anon_sym_noreturn] = ACTIONS(1228), - [sym_primitive_type] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_switch] = ACTIONS(1228), - [anon_sym_case] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_goto] = ACTIONS(1228), - [anon_sym___try] = ACTIONS(1228), - [anon_sym___leave] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_sizeof] = ACTIONS(1228), - [anon_sym___alignof__] = ACTIONS(1228), - [anon_sym___alignof] = ACTIONS(1228), - [anon_sym__alignof] = ACTIONS(1228), - [anon_sym_alignof] = ACTIONS(1228), - [anon_sym__Alignof] = ACTIONS(1228), - [anon_sym_offsetof] = ACTIONS(1228), - [anon_sym__Generic] = ACTIONS(1228), - [anon_sym_asm] = ACTIONS(1228), - [anon_sym___asm__] = ACTIONS(1228), - [sym_number_literal] = ACTIONS(1230), - [anon_sym_L_SQUOTE] = ACTIONS(1230), - [anon_sym_u_SQUOTE] = ACTIONS(1230), - [anon_sym_U_SQUOTE] = ACTIONS(1230), - [anon_sym_u8_SQUOTE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_L_DQUOTE] = ACTIONS(1230), - [anon_sym_u_DQUOTE] = ACTIONS(1230), - [anon_sym_U_DQUOTE] = ACTIONS(1230), - [anon_sym_u8_DQUOTE] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_true] = ACTIONS(1228), - [sym_false] = ACTIONS(1228), - [anon_sym_NULL] = ACTIONS(1228), - [anon_sym_nullptr] = ACTIONS(1228), + [sym_identifier] = ACTIONS(1211), + [aux_sym_preproc_include_token1] = ACTIONS(1211), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1211), + [sym_preproc_directive] = ACTIONS(1211), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym___extension__] = ACTIONS(1211), + [anon_sym_typedef] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym___attribute__] = ACTIONS(1211), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym___declspec] = ACTIONS(1211), + [anon_sym___cdecl] = ACTIONS(1211), + [anon_sym___clrcall] = ACTIONS(1211), + [anon_sym___stdcall] = ACTIONS(1211), + [anon_sym___fastcall] = ACTIONS(1211), + [anon_sym___thiscall] = ACTIONS(1211), + [anon_sym___vectorcall] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_signed] = ACTIONS(1211), + [anon_sym_unsigned] = ACTIONS(1211), + [anon_sym_long] = ACTIONS(1211), + [anon_sym_short] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1211), + [anon_sym_auto] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_inline] = ACTIONS(1211), + [anon_sym___inline] = ACTIONS(1211), + [anon_sym___inline__] = ACTIONS(1211), + [anon_sym___forceinline] = ACTIONS(1211), + [anon_sym_thread_local] = ACTIONS(1211), + [anon_sym___thread] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_constexpr] = ACTIONS(1211), + [anon_sym_volatile] = ACTIONS(1211), + [anon_sym_restrict] = ACTIONS(1211), + [anon_sym___restrict__] = ACTIONS(1211), + [anon_sym__Atomic] = ACTIONS(1211), + [anon_sym__Noreturn] = ACTIONS(1211), + [anon_sym_noreturn] = ACTIONS(1211), + [anon_sym_alignas] = ACTIONS(1211), + [anon_sym__Alignas] = ACTIONS(1211), + [sym_primitive_type] = ACTIONS(1211), + [anon_sym_enum] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1211), + [anon_sym_union] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_else] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1211), + [anon_sym_case] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_goto] = ACTIONS(1211), + [anon_sym___try] = ACTIONS(1211), + [anon_sym___leave] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1211), + [anon_sym___alignof__] = ACTIONS(1211), + [anon_sym___alignof] = ACTIONS(1211), + [anon_sym__alignof] = ACTIONS(1211), + [anon_sym_alignof] = ACTIONS(1211), + [anon_sym__Alignof] = ACTIONS(1211), + [anon_sym_offsetof] = ACTIONS(1211), + [anon_sym__Generic] = ACTIONS(1211), + [anon_sym_asm] = ACTIONS(1211), + [anon_sym___asm__] = ACTIONS(1211), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_L_SQUOTE] = ACTIONS(1213), + [anon_sym_u_SQUOTE] = ACTIONS(1213), + [anon_sym_U_SQUOTE] = ACTIONS(1213), + [anon_sym_u8_SQUOTE] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_L_DQUOTE] = ACTIONS(1213), + [anon_sym_u_DQUOTE] = ACTIONS(1213), + [anon_sym_U_DQUOTE] = ACTIONS(1213), + [anon_sym_u8_DQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1211), + [sym_false] = ACTIONS(1211), + [anon_sym_NULL] = ACTIONS(1211), + [anon_sym_nullptr] = ACTIONS(1211), [sym_comment] = ACTIONS(3), }, [170] = { - [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___extension__] = ACTIONS(1112), - [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_signed] = ACTIONS(1112), - [anon_sym_unsigned] = ACTIONS(1112), - [anon_sym_long] = ACTIONS(1112), - [anon_sym_short] = ACTIONS(1112), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_auto] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym___inline] = ACTIONS(1112), - [anon_sym___inline__] = ACTIONS(1112), - [anon_sym___forceinline] = ACTIONS(1112), - [anon_sym_thread_local] = ACTIONS(1112), - [anon_sym___thread] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1112), - [anon_sym___leave] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1114), - [anon_sym_PLUS_PLUS] = ACTIONS(1114), - [anon_sym_sizeof] = ACTIONS(1112), - [anon_sym___alignof__] = ACTIONS(1112), - [anon_sym___alignof] = ACTIONS(1112), - [anon_sym__alignof] = ACTIONS(1112), - [anon_sym_alignof] = ACTIONS(1112), - [anon_sym__Alignof] = ACTIONS(1112), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1112), - [anon_sym_nullptr] = ACTIONS(1112), + [sym_identifier] = ACTIONS(1143), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym___extension__] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym___attribute__] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), + [anon_sym___declspec] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_RBRACE] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1143), + [anon_sym_unsigned] = ACTIONS(1143), + [anon_sym_long] = ACTIONS(1143), + [anon_sym_short] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_auto] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym___inline] = ACTIONS(1143), + [anon_sym___inline__] = ACTIONS(1143), + [anon_sym___forceinline] = ACTIONS(1143), + [anon_sym_thread_local] = ACTIONS(1143), + [anon_sym___thread] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym___restrict__] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym__Noreturn] = ACTIONS(1143), + [anon_sym_noreturn] = ACTIONS(1143), + [anon_sym_alignas] = ACTIONS(1143), + [anon_sym__Alignas] = ACTIONS(1143), + [sym_primitive_type] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_union] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(1143), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1143), + [anon_sym___try] = ACTIONS(1143), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_sizeof] = ACTIONS(1143), + [anon_sym___alignof__] = ACTIONS(1143), + [anon_sym___alignof] = ACTIONS(1143), + [anon_sym__alignof] = ACTIONS(1143), + [anon_sym_alignof] = ACTIONS(1143), + [anon_sym__Alignof] = ACTIONS(1143), + [anon_sym_offsetof] = ACTIONS(1143), + [anon_sym__Generic] = ACTIONS(1143), + [anon_sym_asm] = ACTIONS(1143), + [anon_sym___asm__] = ACTIONS(1143), + [sym_number_literal] = ACTIONS(1145), + [anon_sym_L_SQUOTE] = ACTIONS(1145), + [anon_sym_u_SQUOTE] = ACTIONS(1145), + [anon_sym_U_SQUOTE] = ACTIONS(1145), + [anon_sym_u8_SQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_L_DQUOTE] = ACTIONS(1145), + [anon_sym_u_DQUOTE] = ACTIONS(1145), + [anon_sym_U_DQUOTE] = ACTIONS(1145), + [anon_sym_u8_DQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_true] = ACTIONS(1143), + [sym_false] = ACTIONS(1143), + [anon_sym_NULL] = ACTIONS(1143), + [anon_sym_nullptr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), }, [171] = { - [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___extension__] = ACTIONS(1112), - [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_signed] = ACTIONS(1112), - [anon_sym_unsigned] = ACTIONS(1112), - [anon_sym_long] = ACTIONS(1112), - [anon_sym_short] = ACTIONS(1112), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_auto] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym___inline] = ACTIONS(1112), - [anon_sym___inline__] = ACTIONS(1112), - [anon_sym___forceinline] = ACTIONS(1112), - [anon_sym_thread_local] = ACTIONS(1112), - [anon_sym___thread] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1112), - [anon_sym___leave] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1114), - [anon_sym_PLUS_PLUS] = ACTIONS(1114), - [anon_sym_sizeof] = ACTIONS(1112), - [anon_sym___alignof__] = ACTIONS(1112), - [anon_sym___alignof] = ACTIONS(1112), - [anon_sym__alignof] = ACTIONS(1112), - [anon_sym_alignof] = ACTIONS(1112), - [anon_sym__Alignof] = ACTIONS(1112), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1112), - [anon_sym_nullptr] = ACTIONS(1112), + [ts_builtin_sym_end] = ACTIONS(1149), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1147), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, [172] = { - [ts_builtin_sym_end] = ACTIONS(1222), - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym___extension__] = ACTIONS(1220), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym___inline] = ACTIONS(1220), - [anon_sym___inline__] = ACTIONS(1220), - [anon_sym___forceinline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym___thread] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym___alignof__] = ACTIONS(1220), - [anon_sym___alignof] = ACTIONS(1220), - [anon_sym__alignof] = ACTIONS(1220), - [anon_sym_alignof] = ACTIONS(1220), - [anon_sym__Alignof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), + [sym_identifier] = ACTIONS(1163), + [aux_sym_preproc_include_token1] = ACTIONS(1163), + [aux_sym_preproc_def_token1] = ACTIONS(1163), + [aux_sym_preproc_if_token1] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), + [sym_preproc_directive] = ACTIONS(1163), + [anon_sym_LPAREN2] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym___extension__] = ACTIONS(1163), + [anon_sym_typedef] = ACTIONS(1163), + [anon_sym_extern] = ACTIONS(1163), + [anon_sym___attribute__] = ACTIONS(1163), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), + [anon_sym___declspec] = ACTIONS(1163), + [anon_sym___cdecl] = ACTIONS(1163), + [anon_sym___clrcall] = ACTIONS(1163), + [anon_sym___stdcall] = ACTIONS(1163), + [anon_sym___fastcall] = ACTIONS(1163), + [anon_sym___thiscall] = ACTIONS(1163), + [anon_sym___vectorcall] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_signed] = ACTIONS(1163), + [anon_sym_unsigned] = ACTIONS(1163), + [anon_sym_long] = ACTIONS(1163), + [anon_sym_short] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_auto] = ACTIONS(1163), + [anon_sym_register] = ACTIONS(1163), + [anon_sym_inline] = ACTIONS(1163), + [anon_sym___inline] = ACTIONS(1163), + [anon_sym___inline__] = ACTIONS(1163), + [anon_sym___forceinline] = ACTIONS(1163), + [anon_sym_thread_local] = ACTIONS(1163), + [anon_sym___thread] = ACTIONS(1163), + [anon_sym_const] = ACTIONS(1163), + [anon_sym_constexpr] = ACTIONS(1163), + [anon_sym_volatile] = ACTIONS(1163), + [anon_sym_restrict] = ACTIONS(1163), + [anon_sym___restrict__] = ACTIONS(1163), + [anon_sym__Atomic] = ACTIONS(1163), + [anon_sym__Noreturn] = ACTIONS(1163), + [anon_sym_noreturn] = ACTIONS(1163), + [anon_sym_alignas] = ACTIONS(1163), + [anon_sym__Alignas] = ACTIONS(1163), + [sym_primitive_type] = ACTIONS(1163), + [anon_sym_enum] = ACTIONS(1163), + [anon_sym_struct] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_else] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1163), + [anon_sym_case] = ACTIONS(1163), + [anon_sym_default] = ACTIONS(1163), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_do] = ACTIONS(1163), + [anon_sym_for] = ACTIONS(1163), + [anon_sym_return] = ACTIONS(1163), + [anon_sym_break] = ACTIONS(1163), + [anon_sym_continue] = ACTIONS(1163), + [anon_sym_goto] = ACTIONS(1163), + [anon_sym___try] = ACTIONS(1163), + [anon_sym___leave] = ACTIONS(1163), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_sizeof] = ACTIONS(1163), + [anon_sym___alignof__] = ACTIONS(1163), + [anon_sym___alignof] = ACTIONS(1163), + [anon_sym__alignof] = ACTIONS(1163), + [anon_sym_alignof] = ACTIONS(1163), + [anon_sym__Alignof] = ACTIONS(1163), + [anon_sym_offsetof] = ACTIONS(1163), + [anon_sym__Generic] = ACTIONS(1163), + [anon_sym_asm] = ACTIONS(1163), + [anon_sym___asm__] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(1165), + [anon_sym_L_SQUOTE] = ACTIONS(1165), + [anon_sym_u_SQUOTE] = ACTIONS(1165), + [anon_sym_U_SQUOTE] = ACTIONS(1165), + [anon_sym_u8_SQUOTE] = ACTIONS(1165), + [anon_sym_SQUOTE] = ACTIONS(1165), + [anon_sym_L_DQUOTE] = ACTIONS(1165), + [anon_sym_u_DQUOTE] = ACTIONS(1165), + [anon_sym_U_DQUOTE] = ACTIONS(1165), + [anon_sym_u8_DQUOTE] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym_true] = ACTIONS(1163), + [sym_false] = ACTIONS(1163), + [anon_sym_NULL] = ACTIONS(1163), + [anon_sym_nullptr] = ACTIONS(1163), [sym_comment] = ACTIONS(3), }, [173] = { - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token2] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym___extension__] = ACTIONS(1220), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym___inline] = ACTIONS(1220), - [anon_sym___inline__] = ACTIONS(1220), - [anon_sym___forceinline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym___thread] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym___alignof__] = ACTIONS(1220), - [anon_sym___alignof] = ACTIONS(1220), - [anon_sym__alignof] = ACTIONS(1220), - [anon_sym_alignof] = ACTIONS(1220), - [anon_sym__Alignof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), + [sym_identifier] = ACTIONS(1143), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym___extension__] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym___attribute__] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), + [anon_sym___declspec] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_RBRACE] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1143), + [anon_sym_unsigned] = ACTIONS(1143), + [anon_sym_long] = ACTIONS(1143), + [anon_sym_short] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_auto] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym___inline] = ACTIONS(1143), + [anon_sym___inline__] = ACTIONS(1143), + [anon_sym___forceinline] = ACTIONS(1143), + [anon_sym_thread_local] = ACTIONS(1143), + [anon_sym___thread] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym___restrict__] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym__Noreturn] = ACTIONS(1143), + [anon_sym_noreturn] = ACTIONS(1143), + [anon_sym_alignas] = ACTIONS(1143), + [anon_sym__Alignas] = ACTIONS(1143), + [sym_primitive_type] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_union] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(1143), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1143), + [anon_sym___try] = ACTIONS(1143), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_sizeof] = ACTIONS(1143), + [anon_sym___alignof__] = ACTIONS(1143), + [anon_sym___alignof] = ACTIONS(1143), + [anon_sym__alignof] = ACTIONS(1143), + [anon_sym_alignof] = ACTIONS(1143), + [anon_sym__Alignof] = ACTIONS(1143), + [anon_sym_offsetof] = ACTIONS(1143), + [anon_sym__Generic] = ACTIONS(1143), + [anon_sym_asm] = ACTIONS(1143), + [anon_sym___asm__] = ACTIONS(1143), + [sym_number_literal] = ACTIONS(1145), + [anon_sym_L_SQUOTE] = ACTIONS(1145), + [anon_sym_u_SQUOTE] = ACTIONS(1145), + [anon_sym_U_SQUOTE] = ACTIONS(1145), + [anon_sym_u8_SQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_L_DQUOTE] = ACTIONS(1145), + [anon_sym_u_DQUOTE] = ACTIONS(1145), + [anon_sym_U_DQUOTE] = ACTIONS(1145), + [anon_sym_u8_DQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_true] = ACTIONS(1143), + [sym_false] = ACTIONS(1143), + [anon_sym_NULL] = ACTIONS(1143), + [anon_sym_nullptr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), }, [174] = { - [sym_identifier] = ACTIONS(1216), - [aux_sym_preproc_include_token1] = ACTIONS(1216), - [aux_sym_preproc_def_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token2] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_LPAREN2] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym___extension__] = ACTIONS(1216), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym___attribute__] = ACTIONS(1216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), - [anon_sym___declspec] = ACTIONS(1216), - [anon_sym___cdecl] = ACTIONS(1216), - [anon_sym___clrcall] = ACTIONS(1216), - [anon_sym___stdcall] = ACTIONS(1216), - [anon_sym___fastcall] = ACTIONS(1216), - [anon_sym___thiscall] = ACTIONS(1216), - [anon_sym___vectorcall] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym___inline] = ACTIONS(1216), - [anon_sym___inline__] = ACTIONS(1216), - [anon_sym___forceinline] = ACTIONS(1216), - [anon_sym_thread_local] = ACTIONS(1216), - [anon_sym___thread] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_constexpr] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym___restrict__] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym__Noreturn] = ACTIONS(1216), - [anon_sym_noreturn] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym___try] = ACTIONS(1216), - [anon_sym___leave] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [anon_sym_sizeof] = ACTIONS(1216), - [anon_sym___alignof__] = ACTIONS(1216), - [anon_sym___alignof] = ACTIONS(1216), - [anon_sym__alignof] = ACTIONS(1216), - [anon_sym_alignof] = ACTIONS(1216), - [anon_sym__Alignof] = ACTIONS(1216), - [anon_sym_offsetof] = ACTIONS(1216), - [anon_sym__Generic] = ACTIONS(1216), - [anon_sym_asm] = ACTIONS(1216), - [anon_sym___asm__] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_L_SQUOTE] = ACTIONS(1218), - [anon_sym_u_SQUOTE] = ACTIONS(1218), - [anon_sym_U_SQUOTE] = ACTIONS(1218), - [anon_sym_u8_SQUOTE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_L_DQUOTE] = ACTIONS(1218), - [anon_sym_u_DQUOTE] = ACTIONS(1218), - [anon_sym_U_DQUOTE] = ACTIONS(1218), - [anon_sym_u8_DQUOTE] = ACTIONS(1218), - [anon_sym_DQUOTE] = ACTIONS(1218), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [anon_sym_NULL] = ACTIONS(1216), - [anon_sym_nullptr] = ACTIONS(1216), + [ts_builtin_sym_end] = ACTIONS(1149), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1147), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, [175] = { - [ts_builtin_sym_end] = ACTIONS(1202), - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym___extension__] = ACTIONS(1200), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym___inline] = ACTIONS(1200), - [anon_sym___inline__] = ACTIONS(1200), - [anon_sym___forceinline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym___thread] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym___try] = ACTIONS(1200), - [anon_sym___leave] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym___alignof__] = ACTIONS(1200), - [anon_sym___alignof] = ACTIONS(1200), - [anon_sym__alignof] = ACTIONS(1200), - [anon_sym_alignof] = ACTIONS(1200), - [anon_sym__Alignof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), + [ts_builtin_sym_end] = ACTIONS(1237), + [sym_identifier] = ACTIONS(1235), + [aux_sym_preproc_include_token1] = ACTIONS(1235), + [aux_sym_preproc_def_token1] = ACTIONS(1235), + [aux_sym_preproc_if_token1] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1235), + [sym_preproc_directive] = ACTIONS(1235), + [anon_sym_LPAREN2] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym___extension__] = ACTIONS(1235), + [anon_sym_typedef] = ACTIONS(1235), + [anon_sym_extern] = ACTIONS(1235), + [anon_sym___attribute__] = ACTIONS(1235), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1237), + [anon_sym___declspec] = ACTIONS(1235), + [anon_sym___cdecl] = ACTIONS(1235), + [anon_sym___clrcall] = ACTIONS(1235), + [anon_sym___stdcall] = ACTIONS(1235), + [anon_sym___fastcall] = ACTIONS(1235), + [anon_sym___thiscall] = ACTIONS(1235), + [anon_sym___vectorcall] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_signed] = ACTIONS(1235), + [anon_sym_unsigned] = ACTIONS(1235), + [anon_sym_long] = ACTIONS(1235), + [anon_sym_short] = ACTIONS(1235), + [anon_sym_static] = ACTIONS(1235), + [anon_sym_auto] = ACTIONS(1235), + [anon_sym_register] = ACTIONS(1235), + [anon_sym_inline] = ACTIONS(1235), + [anon_sym___inline] = ACTIONS(1235), + [anon_sym___inline__] = ACTIONS(1235), + [anon_sym___forceinline] = ACTIONS(1235), + [anon_sym_thread_local] = ACTIONS(1235), + [anon_sym___thread] = ACTIONS(1235), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_constexpr] = ACTIONS(1235), + [anon_sym_volatile] = ACTIONS(1235), + [anon_sym_restrict] = ACTIONS(1235), + [anon_sym___restrict__] = ACTIONS(1235), + [anon_sym__Atomic] = ACTIONS(1235), + [anon_sym__Noreturn] = ACTIONS(1235), + [anon_sym_noreturn] = ACTIONS(1235), + [anon_sym_alignas] = ACTIONS(1235), + [anon_sym__Alignas] = ACTIONS(1235), + [sym_primitive_type] = ACTIONS(1235), + [anon_sym_enum] = ACTIONS(1235), + [anon_sym_struct] = ACTIONS(1235), + [anon_sym_union] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1235), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_switch] = ACTIONS(1235), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1235), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1235), + [anon_sym_return] = ACTIONS(1235), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_goto] = ACTIONS(1235), + [anon_sym___try] = ACTIONS(1235), + [anon_sym___leave] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_sizeof] = ACTIONS(1235), + [anon_sym___alignof__] = ACTIONS(1235), + [anon_sym___alignof] = ACTIONS(1235), + [anon_sym__alignof] = ACTIONS(1235), + [anon_sym_alignof] = ACTIONS(1235), + [anon_sym__Alignof] = ACTIONS(1235), + [anon_sym_offsetof] = ACTIONS(1235), + [anon_sym__Generic] = ACTIONS(1235), + [anon_sym_asm] = ACTIONS(1235), + [anon_sym___asm__] = ACTIONS(1235), + [sym_number_literal] = ACTIONS(1237), + [anon_sym_L_SQUOTE] = ACTIONS(1237), + [anon_sym_u_SQUOTE] = ACTIONS(1237), + [anon_sym_U_SQUOTE] = ACTIONS(1237), + [anon_sym_u8_SQUOTE] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_L_DQUOTE] = ACTIONS(1237), + [anon_sym_u_DQUOTE] = ACTIONS(1237), + [anon_sym_U_DQUOTE] = ACTIONS(1237), + [anon_sym_u8_DQUOTE] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_true] = ACTIONS(1235), + [sym_false] = ACTIONS(1235), + [anon_sym_NULL] = ACTIONS(1235), + [anon_sym_nullptr] = ACTIONS(1235), [sym_comment] = ACTIONS(3), }, [176] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1153), + [sym_identifier] = ACTIONS(1151), + [aux_sym_preproc_include_token1] = ACTIONS(1151), + [aux_sym_preproc_def_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), + [sym_preproc_directive] = ACTIONS(1151), + [anon_sym_LPAREN2] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_TILDE] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym___extension__] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1151), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym___attribute__] = ACTIONS(1151), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), + [anon_sym___declspec] = ACTIONS(1151), + [anon_sym___cdecl] = ACTIONS(1151), + [anon_sym___clrcall] = ACTIONS(1151), + [anon_sym___stdcall] = ACTIONS(1151), + [anon_sym___fastcall] = ACTIONS(1151), + [anon_sym___thiscall] = ACTIONS(1151), + [anon_sym___vectorcall] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_signed] = ACTIONS(1151), + [anon_sym_unsigned] = ACTIONS(1151), + [anon_sym_long] = ACTIONS(1151), + [anon_sym_short] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1151), + [anon_sym_auto] = ACTIONS(1151), + [anon_sym_register] = ACTIONS(1151), + [anon_sym_inline] = ACTIONS(1151), + [anon_sym___inline] = ACTIONS(1151), + [anon_sym___inline__] = ACTIONS(1151), + [anon_sym___forceinline] = ACTIONS(1151), + [anon_sym_thread_local] = ACTIONS(1151), + [anon_sym___thread] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_constexpr] = ACTIONS(1151), + [anon_sym_volatile] = ACTIONS(1151), + [anon_sym_restrict] = ACTIONS(1151), + [anon_sym___restrict__] = ACTIONS(1151), + [anon_sym__Atomic] = ACTIONS(1151), + [anon_sym__Noreturn] = ACTIONS(1151), + [anon_sym_noreturn] = ACTIONS(1151), + [anon_sym_alignas] = ACTIONS(1151), + [anon_sym__Alignas] = ACTIONS(1151), + [sym_primitive_type] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1151), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_else] = ACTIONS(1151), + [anon_sym_switch] = ACTIONS(1151), + [anon_sym_case] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1151), + [anon_sym_do] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1151), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_break] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1151), + [anon_sym_goto] = ACTIONS(1151), + [anon_sym___try] = ACTIONS(1151), + [anon_sym___leave] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1153), + [anon_sym_PLUS_PLUS] = ACTIONS(1153), + [anon_sym_sizeof] = ACTIONS(1151), + [anon_sym___alignof__] = ACTIONS(1151), + [anon_sym___alignof] = ACTIONS(1151), + [anon_sym__alignof] = ACTIONS(1151), + [anon_sym_alignof] = ACTIONS(1151), + [anon_sym__Alignof] = ACTIONS(1151), + [anon_sym_offsetof] = ACTIONS(1151), + [anon_sym__Generic] = ACTIONS(1151), + [anon_sym_asm] = ACTIONS(1151), + [anon_sym___asm__] = ACTIONS(1151), + [sym_number_literal] = ACTIONS(1153), + [anon_sym_L_SQUOTE] = ACTIONS(1153), + [anon_sym_u_SQUOTE] = ACTIONS(1153), + [anon_sym_U_SQUOTE] = ACTIONS(1153), + [anon_sym_u8_SQUOTE] = ACTIONS(1153), + [anon_sym_SQUOTE] = ACTIONS(1153), + [anon_sym_L_DQUOTE] = ACTIONS(1153), + [anon_sym_u_DQUOTE] = ACTIONS(1153), + [anon_sym_U_DQUOTE] = ACTIONS(1153), + [anon_sym_u8_DQUOTE] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [sym_true] = ACTIONS(1151), + [sym_false] = ACTIONS(1151), + [anon_sym_NULL] = ACTIONS(1151), + [anon_sym_nullptr] = ACTIONS(1151), [sym_comment] = ACTIONS(3), }, [177] = { - [ts_builtin_sym_end] = ACTIONS(1202), - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym___extension__] = ACTIONS(1200), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym___inline] = ACTIONS(1200), - [anon_sym___inline__] = ACTIONS(1200), - [anon_sym___forceinline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym___thread] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym___try] = ACTIONS(1200), - [anon_sym___leave] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym___alignof__] = ACTIONS(1200), - [anon_sym___alignof] = ACTIONS(1200), - [anon_sym__alignof] = ACTIONS(1200), - [anon_sym_alignof] = ACTIONS(1200), - [anon_sym__Alignof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1169), + [aux_sym_preproc_include_token1] = ACTIONS(1169), + [aux_sym_preproc_def_token1] = ACTIONS(1169), + [aux_sym_preproc_if_token1] = ACTIONS(1169), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), + [sym_preproc_directive] = ACTIONS(1169), + [anon_sym_LPAREN2] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1169), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym___extension__] = ACTIONS(1169), + [anon_sym_typedef] = ACTIONS(1169), + [anon_sym_extern] = ACTIONS(1169), + [anon_sym___attribute__] = ACTIONS(1169), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), + [anon_sym___declspec] = ACTIONS(1169), + [anon_sym___cdecl] = ACTIONS(1169), + [anon_sym___clrcall] = ACTIONS(1169), + [anon_sym___stdcall] = ACTIONS(1169), + [anon_sym___fastcall] = ACTIONS(1169), + [anon_sym___thiscall] = ACTIONS(1169), + [anon_sym___vectorcall] = ACTIONS(1169), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_RBRACE] = ACTIONS(1167), + [anon_sym_signed] = ACTIONS(1169), + [anon_sym_unsigned] = ACTIONS(1169), + [anon_sym_long] = ACTIONS(1169), + [anon_sym_short] = ACTIONS(1169), + [anon_sym_static] = ACTIONS(1169), + [anon_sym_auto] = ACTIONS(1169), + [anon_sym_register] = ACTIONS(1169), + [anon_sym_inline] = ACTIONS(1169), + [anon_sym___inline] = ACTIONS(1169), + [anon_sym___inline__] = ACTIONS(1169), + [anon_sym___forceinline] = ACTIONS(1169), + [anon_sym_thread_local] = ACTIONS(1169), + [anon_sym___thread] = ACTIONS(1169), + [anon_sym_const] = ACTIONS(1169), + [anon_sym_constexpr] = ACTIONS(1169), + [anon_sym_volatile] = ACTIONS(1169), + [anon_sym_restrict] = ACTIONS(1169), + [anon_sym___restrict__] = ACTIONS(1169), + [anon_sym__Atomic] = ACTIONS(1169), + [anon_sym__Noreturn] = ACTIONS(1169), + [anon_sym_noreturn] = ACTIONS(1169), + [anon_sym_alignas] = ACTIONS(1169), + [anon_sym__Alignas] = ACTIONS(1169), + [sym_primitive_type] = ACTIONS(1169), + [anon_sym_enum] = ACTIONS(1169), + [anon_sym_struct] = ACTIONS(1169), + [anon_sym_union] = ACTIONS(1169), + [anon_sym_if] = ACTIONS(1169), + [anon_sym_else] = ACTIONS(1169), + [anon_sym_switch] = ACTIONS(1169), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1169), + [anon_sym_do] = ACTIONS(1169), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_return] = ACTIONS(1169), + [anon_sym_break] = ACTIONS(1169), + [anon_sym_continue] = ACTIONS(1169), + [anon_sym_goto] = ACTIONS(1169), + [anon_sym___try] = ACTIONS(1169), + [anon_sym___leave] = ACTIONS(1169), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_sizeof] = ACTIONS(1169), + [anon_sym___alignof__] = ACTIONS(1169), + [anon_sym___alignof] = ACTIONS(1169), + [anon_sym__alignof] = ACTIONS(1169), + [anon_sym_alignof] = ACTIONS(1169), + [anon_sym__Alignof] = ACTIONS(1169), + [anon_sym_offsetof] = ACTIONS(1169), + [anon_sym__Generic] = ACTIONS(1169), + [anon_sym_asm] = ACTIONS(1169), + [anon_sym___asm__] = ACTIONS(1169), + [sym_number_literal] = ACTIONS(1167), + [anon_sym_L_SQUOTE] = ACTIONS(1167), + [anon_sym_u_SQUOTE] = ACTIONS(1167), + [anon_sym_U_SQUOTE] = ACTIONS(1167), + [anon_sym_u8_SQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1167), + [anon_sym_L_DQUOTE] = ACTIONS(1167), + [anon_sym_u_DQUOTE] = ACTIONS(1167), + [anon_sym_U_DQUOTE] = ACTIONS(1167), + [anon_sym_u8_DQUOTE] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_true] = ACTIONS(1169), + [sym_false] = ACTIONS(1169), + [anon_sym_NULL] = ACTIONS(1169), + [anon_sym_nullptr] = ACTIONS(1169), [sym_comment] = ACTIONS(3), }, [178] = { - [ts_builtin_sym_end] = ACTIONS(1218), - [sym_identifier] = ACTIONS(1216), - [aux_sym_preproc_include_token1] = ACTIONS(1216), - [aux_sym_preproc_def_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_LPAREN2] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym___extension__] = ACTIONS(1216), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym___attribute__] = ACTIONS(1216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), - [anon_sym___declspec] = ACTIONS(1216), - [anon_sym___cdecl] = ACTIONS(1216), - [anon_sym___clrcall] = ACTIONS(1216), - [anon_sym___stdcall] = ACTIONS(1216), - [anon_sym___fastcall] = ACTIONS(1216), - [anon_sym___thiscall] = ACTIONS(1216), - [anon_sym___vectorcall] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym___inline] = ACTIONS(1216), - [anon_sym___inline__] = ACTIONS(1216), - [anon_sym___forceinline] = ACTIONS(1216), - [anon_sym_thread_local] = ACTIONS(1216), - [anon_sym___thread] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_constexpr] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym___restrict__] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym__Noreturn] = ACTIONS(1216), - [anon_sym_noreturn] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym___try] = ACTIONS(1216), - [anon_sym___leave] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [anon_sym_sizeof] = ACTIONS(1216), - [anon_sym___alignof__] = ACTIONS(1216), - [anon_sym___alignof] = ACTIONS(1216), - [anon_sym__alignof] = ACTIONS(1216), - [anon_sym_alignof] = ACTIONS(1216), - [anon_sym__Alignof] = ACTIONS(1216), - [anon_sym_offsetof] = ACTIONS(1216), - [anon_sym__Generic] = ACTIONS(1216), - [anon_sym_asm] = ACTIONS(1216), - [anon_sym___asm__] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_L_SQUOTE] = ACTIONS(1218), - [anon_sym_u_SQUOTE] = ACTIONS(1218), - [anon_sym_U_SQUOTE] = ACTIONS(1218), - [anon_sym_u8_SQUOTE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_L_DQUOTE] = ACTIONS(1218), - [anon_sym_u_DQUOTE] = ACTIONS(1218), - [anon_sym_U_DQUOTE] = ACTIONS(1218), - [anon_sym_u8_DQUOTE] = ACTIONS(1218), - [anon_sym_DQUOTE] = ACTIONS(1218), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [anon_sym_NULL] = ACTIONS(1216), - [anon_sym_nullptr] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1171), + [aux_sym_preproc_include_token1] = ACTIONS(1171), + [aux_sym_preproc_def_token1] = ACTIONS(1171), + [aux_sym_preproc_if_token1] = ACTIONS(1171), + [aux_sym_preproc_if_token2] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1171), + [sym_preproc_directive] = ACTIONS(1171), + [anon_sym_LPAREN2] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym___extension__] = ACTIONS(1171), + [anon_sym_typedef] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym___attribute__] = ACTIONS(1171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1173), + [anon_sym___declspec] = ACTIONS(1171), + [anon_sym___cdecl] = ACTIONS(1171), + [anon_sym___clrcall] = ACTIONS(1171), + [anon_sym___stdcall] = ACTIONS(1171), + [anon_sym___fastcall] = ACTIONS(1171), + [anon_sym___thiscall] = ACTIONS(1171), + [anon_sym___vectorcall] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(1171), + [anon_sym_unsigned] = ACTIONS(1171), + [anon_sym_long] = ACTIONS(1171), + [anon_sym_short] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1171), + [anon_sym_auto] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_inline] = ACTIONS(1171), + [anon_sym___inline] = ACTIONS(1171), + [anon_sym___inline__] = ACTIONS(1171), + [anon_sym___forceinline] = ACTIONS(1171), + [anon_sym_thread_local] = ACTIONS(1171), + [anon_sym___thread] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_constexpr] = ACTIONS(1171), + [anon_sym_volatile] = ACTIONS(1171), + [anon_sym_restrict] = ACTIONS(1171), + [anon_sym___restrict__] = ACTIONS(1171), + [anon_sym__Atomic] = ACTIONS(1171), + [anon_sym__Noreturn] = ACTIONS(1171), + [anon_sym_noreturn] = ACTIONS(1171), + [anon_sym_alignas] = ACTIONS(1171), + [anon_sym__Alignas] = ACTIONS(1171), + [sym_primitive_type] = ACTIONS(1171), + [anon_sym_enum] = ACTIONS(1171), + [anon_sym_struct] = ACTIONS(1171), + [anon_sym_union] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_switch] = ACTIONS(1171), + [anon_sym_case] = ACTIONS(1171), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_goto] = ACTIONS(1171), + [anon_sym___try] = ACTIONS(1171), + [anon_sym___leave] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1171), + [anon_sym___alignof__] = ACTIONS(1171), + [anon_sym___alignof] = ACTIONS(1171), + [anon_sym__alignof] = ACTIONS(1171), + [anon_sym_alignof] = ACTIONS(1171), + [anon_sym__Alignof] = ACTIONS(1171), + [anon_sym_offsetof] = ACTIONS(1171), + [anon_sym__Generic] = ACTIONS(1171), + [anon_sym_asm] = ACTIONS(1171), + [anon_sym___asm__] = ACTIONS(1171), + [sym_number_literal] = ACTIONS(1173), + [anon_sym_L_SQUOTE] = ACTIONS(1173), + [anon_sym_u_SQUOTE] = ACTIONS(1173), + [anon_sym_U_SQUOTE] = ACTIONS(1173), + [anon_sym_u8_SQUOTE] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1173), + [anon_sym_L_DQUOTE] = ACTIONS(1173), + [anon_sym_u_DQUOTE] = ACTIONS(1173), + [anon_sym_U_DQUOTE] = ACTIONS(1173), + [anon_sym_u8_DQUOTE] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym_true] = ACTIONS(1171), + [sym_false] = ACTIONS(1171), + [anon_sym_NULL] = ACTIONS(1171), + [anon_sym_nullptr] = ACTIONS(1171), [sym_comment] = ACTIONS(3), }, [179] = { - [ts_builtin_sym_end] = ACTIONS(1214), - [sym_identifier] = ACTIONS(1212), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym___extension__] = ACTIONS(1212), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym___inline] = ACTIONS(1212), - [anon_sym___inline__] = ACTIONS(1212), - [anon_sym___forceinline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym___thread] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1212), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym___try] = ACTIONS(1212), - [anon_sym___leave] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym___alignof__] = ACTIONS(1212), - [anon_sym___alignof] = ACTIONS(1212), - [anon_sym__alignof] = ACTIONS(1212), - [anon_sym_alignof] = ACTIONS(1212), - [anon_sym__Alignof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token2] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), + [sym_preproc_directive] = ACTIONS(1231), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym___extension__] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym___attribute__] = ACTIONS(1231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1231), + [anon_sym___cdecl] = ACTIONS(1231), + [anon_sym___clrcall] = ACTIONS(1231), + [anon_sym___stdcall] = ACTIONS(1231), + [anon_sym___fastcall] = ACTIONS(1231), + [anon_sym___thiscall] = ACTIONS(1231), + [anon_sym___vectorcall] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1231), + [anon_sym_unsigned] = ACTIONS(1231), + [anon_sym_long] = ACTIONS(1231), + [anon_sym_short] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_auto] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_inline] = ACTIONS(1231), + [anon_sym___inline] = ACTIONS(1231), + [anon_sym___inline__] = ACTIONS(1231), + [anon_sym___forceinline] = ACTIONS(1231), + [anon_sym_thread_local] = ACTIONS(1231), + [anon_sym___thread] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_constexpr] = ACTIONS(1231), + [anon_sym_volatile] = ACTIONS(1231), + [anon_sym_restrict] = ACTIONS(1231), + [anon_sym___restrict__] = ACTIONS(1231), + [anon_sym__Atomic] = ACTIONS(1231), + [anon_sym__Noreturn] = ACTIONS(1231), + [anon_sym_noreturn] = ACTIONS(1231), + [anon_sym_alignas] = ACTIONS(1231), + [anon_sym__Alignas] = ACTIONS(1231), + [sym_primitive_type] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_union] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_goto] = ACTIONS(1231), + [anon_sym___try] = ACTIONS(1231), + [anon_sym___leave] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1231), + [anon_sym___alignof__] = ACTIONS(1231), + [anon_sym___alignof] = ACTIONS(1231), + [anon_sym__alignof] = ACTIONS(1231), + [anon_sym_alignof] = ACTIONS(1231), + [anon_sym__Alignof] = ACTIONS(1231), + [anon_sym_offsetof] = ACTIONS(1231), + [anon_sym__Generic] = ACTIONS(1231), + [anon_sym_asm] = ACTIONS(1231), + [anon_sym___asm__] = ACTIONS(1231), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_L_SQUOTE] = ACTIONS(1233), + [anon_sym_u_SQUOTE] = ACTIONS(1233), + [anon_sym_U_SQUOTE] = ACTIONS(1233), + [anon_sym_u8_SQUOTE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_L_DQUOTE] = ACTIONS(1233), + [anon_sym_u_DQUOTE] = ACTIONS(1233), + [anon_sym_U_DQUOTE] = ACTIONS(1233), + [anon_sym_u8_DQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1231), + [sym_false] = ACTIONS(1231), + [anon_sym_NULL] = ACTIONS(1231), + [anon_sym_nullptr] = ACTIONS(1231), [sym_comment] = ACTIONS(3), }, [180] = { - [ts_builtin_sym_end] = ACTIONS(1178), - [sym_identifier] = ACTIONS(1176), - [aux_sym_preproc_include_token1] = ACTIONS(1176), - [aux_sym_preproc_def_token1] = ACTIONS(1176), - [aux_sym_preproc_if_token1] = ACTIONS(1176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1176), - [sym_preproc_directive] = ACTIONS(1176), - [anon_sym_LPAREN2] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_TILDE] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1178), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym___extension__] = ACTIONS(1176), - [anon_sym_typedef] = ACTIONS(1176), - [anon_sym_extern] = ACTIONS(1176), - [anon_sym___attribute__] = ACTIONS(1176), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1178), - [anon_sym___declspec] = ACTIONS(1176), - [anon_sym___cdecl] = ACTIONS(1176), - [anon_sym___clrcall] = ACTIONS(1176), - [anon_sym___stdcall] = ACTIONS(1176), - [anon_sym___fastcall] = ACTIONS(1176), - [anon_sym___thiscall] = ACTIONS(1176), - [anon_sym___vectorcall] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_signed] = ACTIONS(1176), - [anon_sym_unsigned] = ACTIONS(1176), - [anon_sym_long] = ACTIONS(1176), - [anon_sym_short] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1176), - [anon_sym_auto] = ACTIONS(1176), - [anon_sym_register] = ACTIONS(1176), - [anon_sym_inline] = ACTIONS(1176), - [anon_sym___inline] = ACTIONS(1176), - [anon_sym___inline__] = ACTIONS(1176), - [anon_sym___forceinline] = ACTIONS(1176), - [anon_sym_thread_local] = ACTIONS(1176), - [anon_sym___thread] = ACTIONS(1176), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_constexpr] = ACTIONS(1176), - [anon_sym_volatile] = ACTIONS(1176), - [anon_sym_restrict] = ACTIONS(1176), - [anon_sym___restrict__] = ACTIONS(1176), - [anon_sym__Atomic] = ACTIONS(1176), - [anon_sym__Noreturn] = ACTIONS(1176), - [anon_sym_noreturn] = ACTIONS(1176), - [sym_primitive_type] = ACTIONS(1176), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_struct] = ACTIONS(1176), - [anon_sym_union] = ACTIONS(1176), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_else] = ACTIONS(1176), - [anon_sym_switch] = ACTIONS(1176), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_goto] = ACTIONS(1176), - [anon_sym___try] = ACTIONS(1176), - [anon_sym___leave] = ACTIONS(1176), - [anon_sym_DASH_DASH] = ACTIONS(1178), - [anon_sym_PLUS_PLUS] = ACTIONS(1178), - [anon_sym_sizeof] = ACTIONS(1176), - [anon_sym___alignof__] = ACTIONS(1176), - [anon_sym___alignof] = ACTIONS(1176), - [anon_sym__alignof] = ACTIONS(1176), - [anon_sym_alignof] = ACTIONS(1176), - [anon_sym__Alignof] = ACTIONS(1176), - [anon_sym_offsetof] = ACTIONS(1176), - [anon_sym__Generic] = ACTIONS(1176), - [anon_sym_asm] = ACTIONS(1176), - [anon_sym___asm__] = ACTIONS(1176), - [sym_number_literal] = ACTIONS(1178), - [anon_sym_L_SQUOTE] = ACTIONS(1178), - [anon_sym_u_SQUOTE] = ACTIONS(1178), - [anon_sym_U_SQUOTE] = ACTIONS(1178), - [anon_sym_u8_SQUOTE] = ACTIONS(1178), - [anon_sym_SQUOTE] = ACTIONS(1178), - [anon_sym_L_DQUOTE] = ACTIONS(1178), - [anon_sym_u_DQUOTE] = ACTIONS(1178), - [anon_sym_U_DQUOTE] = ACTIONS(1178), - [anon_sym_u8_DQUOTE] = ACTIONS(1178), - [anon_sym_DQUOTE] = ACTIONS(1178), - [sym_true] = ACTIONS(1176), - [sym_false] = ACTIONS(1176), - [anon_sym_NULL] = ACTIONS(1176), - [anon_sym_nullptr] = ACTIONS(1176), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [181] = { - [ts_builtin_sym_end] = ACTIONS(1230), - [sym_identifier] = ACTIONS(1228), - [aux_sym_preproc_include_token1] = ACTIONS(1228), - [aux_sym_preproc_def_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), - [sym_preproc_directive] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym___extension__] = ACTIONS(1228), - [anon_sym_typedef] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym___attribute__] = ACTIONS(1228), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), - [anon_sym___declspec] = ACTIONS(1228), - [anon_sym___cdecl] = ACTIONS(1228), - [anon_sym___clrcall] = ACTIONS(1228), - [anon_sym___stdcall] = ACTIONS(1228), - [anon_sym___fastcall] = ACTIONS(1228), - [anon_sym___thiscall] = ACTIONS(1228), - [anon_sym___vectorcall] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_auto] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_inline] = ACTIONS(1228), - [anon_sym___inline] = ACTIONS(1228), - [anon_sym___inline__] = ACTIONS(1228), - [anon_sym___forceinline] = ACTIONS(1228), - [anon_sym_thread_local] = ACTIONS(1228), - [anon_sym___thread] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_constexpr] = ACTIONS(1228), - [anon_sym_volatile] = ACTIONS(1228), - [anon_sym_restrict] = ACTIONS(1228), - [anon_sym___restrict__] = ACTIONS(1228), - [anon_sym__Atomic] = ACTIONS(1228), - [anon_sym__Noreturn] = ACTIONS(1228), - [anon_sym_noreturn] = ACTIONS(1228), - [sym_primitive_type] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_switch] = ACTIONS(1228), - [anon_sym_case] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_goto] = ACTIONS(1228), - [anon_sym___try] = ACTIONS(1228), - [anon_sym___leave] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_sizeof] = ACTIONS(1228), - [anon_sym___alignof__] = ACTIONS(1228), - [anon_sym___alignof] = ACTIONS(1228), - [anon_sym__alignof] = ACTIONS(1228), - [anon_sym_alignof] = ACTIONS(1228), - [anon_sym__Alignof] = ACTIONS(1228), - [anon_sym_offsetof] = ACTIONS(1228), - [anon_sym__Generic] = ACTIONS(1228), - [anon_sym_asm] = ACTIONS(1228), - [anon_sym___asm__] = ACTIONS(1228), - [sym_number_literal] = ACTIONS(1230), - [anon_sym_L_SQUOTE] = ACTIONS(1230), - [anon_sym_u_SQUOTE] = ACTIONS(1230), - [anon_sym_U_SQUOTE] = ACTIONS(1230), - [anon_sym_u8_SQUOTE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_L_DQUOTE] = ACTIONS(1230), - [anon_sym_u_DQUOTE] = ACTIONS(1230), - [anon_sym_U_DQUOTE] = ACTIONS(1230), - [anon_sym_u8_DQUOTE] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_true] = ACTIONS(1228), - [sym_false] = ACTIONS(1228), - [anon_sym_NULL] = ACTIONS(1228), - [anon_sym_nullptr] = ACTIONS(1228), + [ts_builtin_sym_end] = ACTIONS(1173), + [sym_identifier] = ACTIONS(1171), + [aux_sym_preproc_include_token1] = ACTIONS(1171), + [aux_sym_preproc_def_token1] = ACTIONS(1171), + [aux_sym_preproc_if_token1] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1171), + [sym_preproc_directive] = ACTIONS(1171), + [anon_sym_LPAREN2] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym___extension__] = ACTIONS(1171), + [anon_sym_typedef] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym___attribute__] = ACTIONS(1171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1173), + [anon_sym___declspec] = ACTIONS(1171), + [anon_sym___cdecl] = ACTIONS(1171), + [anon_sym___clrcall] = ACTIONS(1171), + [anon_sym___stdcall] = ACTIONS(1171), + [anon_sym___fastcall] = ACTIONS(1171), + [anon_sym___thiscall] = ACTIONS(1171), + [anon_sym___vectorcall] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(1171), + [anon_sym_unsigned] = ACTIONS(1171), + [anon_sym_long] = ACTIONS(1171), + [anon_sym_short] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1171), + [anon_sym_auto] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_inline] = ACTIONS(1171), + [anon_sym___inline] = ACTIONS(1171), + [anon_sym___inline__] = ACTIONS(1171), + [anon_sym___forceinline] = ACTIONS(1171), + [anon_sym_thread_local] = ACTIONS(1171), + [anon_sym___thread] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_constexpr] = ACTIONS(1171), + [anon_sym_volatile] = ACTIONS(1171), + [anon_sym_restrict] = ACTIONS(1171), + [anon_sym___restrict__] = ACTIONS(1171), + [anon_sym__Atomic] = ACTIONS(1171), + [anon_sym__Noreturn] = ACTIONS(1171), + [anon_sym_noreturn] = ACTIONS(1171), + [anon_sym_alignas] = ACTIONS(1171), + [anon_sym__Alignas] = ACTIONS(1171), + [sym_primitive_type] = ACTIONS(1171), + [anon_sym_enum] = ACTIONS(1171), + [anon_sym_struct] = ACTIONS(1171), + [anon_sym_union] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_switch] = ACTIONS(1171), + [anon_sym_case] = ACTIONS(1171), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_goto] = ACTIONS(1171), + [anon_sym___try] = ACTIONS(1171), + [anon_sym___leave] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1171), + [anon_sym___alignof__] = ACTIONS(1171), + [anon_sym___alignof] = ACTIONS(1171), + [anon_sym__alignof] = ACTIONS(1171), + [anon_sym_alignof] = ACTIONS(1171), + [anon_sym__Alignof] = ACTIONS(1171), + [anon_sym_offsetof] = ACTIONS(1171), + [anon_sym__Generic] = ACTIONS(1171), + [anon_sym_asm] = ACTIONS(1171), + [anon_sym___asm__] = ACTIONS(1171), + [sym_number_literal] = ACTIONS(1173), + [anon_sym_L_SQUOTE] = ACTIONS(1173), + [anon_sym_u_SQUOTE] = ACTIONS(1173), + [anon_sym_U_SQUOTE] = ACTIONS(1173), + [anon_sym_u8_SQUOTE] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1173), + [anon_sym_L_DQUOTE] = ACTIONS(1173), + [anon_sym_u_DQUOTE] = ACTIONS(1173), + [anon_sym_U_DQUOTE] = ACTIONS(1173), + [anon_sym_u8_DQUOTE] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym_true] = ACTIONS(1171), + [sym_false] = ACTIONS(1171), + [anon_sym_NULL] = ACTIONS(1171), + [anon_sym_nullptr] = ACTIONS(1171), [sym_comment] = ACTIONS(3), }, [182] = { - [ts_builtin_sym_end] = ACTIONS(1234), - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym___extension__] = ACTIONS(1232), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym___inline] = ACTIONS(1232), - [anon_sym___inline__] = ACTIONS(1232), - [anon_sym___forceinline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym___thread] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym___try] = ACTIONS(1232), - [anon_sym___leave] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym___alignof__] = ACTIONS(1232), - [anon_sym___alignof] = ACTIONS(1232), - [anon_sym__alignof] = ACTIONS(1232), - [anon_sym_alignof] = ACTIONS(1232), - [anon_sym__Alignof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), + [ts_builtin_sym_end] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1163), + [aux_sym_preproc_include_token1] = ACTIONS(1163), + [aux_sym_preproc_def_token1] = ACTIONS(1163), + [aux_sym_preproc_if_token1] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), + [sym_preproc_directive] = ACTIONS(1163), + [anon_sym_LPAREN2] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym___extension__] = ACTIONS(1163), + [anon_sym_typedef] = ACTIONS(1163), + [anon_sym_extern] = ACTIONS(1163), + [anon_sym___attribute__] = ACTIONS(1163), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), + [anon_sym___declspec] = ACTIONS(1163), + [anon_sym___cdecl] = ACTIONS(1163), + [anon_sym___clrcall] = ACTIONS(1163), + [anon_sym___stdcall] = ACTIONS(1163), + [anon_sym___fastcall] = ACTIONS(1163), + [anon_sym___thiscall] = ACTIONS(1163), + [anon_sym___vectorcall] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_signed] = ACTIONS(1163), + [anon_sym_unsigned] = ACTIONS(1163), + [anon_sym_long] = ACTIONS(1163), + [anon_sym_short] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_auto] = ACTIONS(1163), + [anon_sym_register] = ACTIONS(1163), + [anon_sym_inline] = ACTIONS(1163), + [anon_sym___inline] = ACTIONS(1163), + [anon_sym___inline__] = ACTIONS(1163), + [anon_sym___forceinline] = ACTIONS(1163), + [anon_sym_thread_local] = ACTIONS(1163), + [anon_sym___thread] = ACTIONS(1163), + [anon_sym_const] = ACTIONS(1163), + [anon_sym_constexpr] = ACTIONS(1163), + [anon_sym_volatile] = ACTIONS(1163), + [anon_sym_restrict] = ACTIONS(1163), + [anon_sym___restrict__] = ACTIONS(1163), + [anon_sym__Atomic] = ACTIONS(1163), + [anon_sym__Noreturn] = ACTIONS(1163), + [anon_sym_noreturn] = ACTIONS(1163), + [anon_sym_alignas] = ACTIONS(1163), + [anon_sym__Alignas] = ACTIONS(1163), + [sym_primitive_type] = ACTIONS(1163), + [anon_sym_enum] = ACTIONS(1163), + [anon_sym_struct] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_else] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1163), + [anon_sym_case] = ACTIONS(1163), + [anon_sym_default] = ACTIONS(1163), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_do] = ACTIONS(1163), + [anon_sym_for] = ACTIONS(1163), + [anon_sym_return] = ACTIONS(1163), + [anon_sym_break] = ACTIONS(1163), + [anon_sym_continue] = ACTIONS(1163), + [anon_sym_goto] = ACTIONS(1163), + [anon_sym___try] = ACTIONS(1163), + [anon_sym___leave] = ACTIONS(1163), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_sizeof] = ACTIONS(1163), + [anon_sym___alignof__] = ACTIONS(1163), + [anon_sym___alignof] = ACTIONS(1163), + [anon_sym__alignof] = ACTIONS(1163), + [anon_sym_alignof] = ACTIONS(1163), + [anon_sym__Alignof] = ACTIONS(1163), + [anon_sym_offsetof] = ACTIONS(1163), + [anon_sym__Generic] = ACTIONS(1163), + [anon_sym_asm] = ACTIONS(1163), + [anon_sym___asm__] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(1165), + [anon_sym_L_SQUOTE] = ACTIONS(1165), + [anon_sym_u_SQUOTE] = ACTIONS(1165), + [anon_sym_U_SQUOTE] = ACTIONS(1165), + [anon_sym_u8_SQUOTE] = ACTIONS(1165), + [anon_sym_SQUOTE] = ACTIONS(1165), + [anon_sym_L_DQUOTE] = ACTIONS(1165), + [anon_sym_u_DQUOTE] = ACTIONS(1165), + [anon_sym_U_DQUOTE] = ACTIONS(1165), + [anon_sym_u8_DQUOTE] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym_true] = ACTIONS(1163), + [sym_false] = ACTIONS(1163), + [anon_sym_NULL] = ACTIONS(1163), + [anon_sym_nullptr] = ACTIONS(1163), [sym_comment] = ACTIONS(3), }, [183] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [184] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [185] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [186] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [187] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1235), + [aux_sym_preproc_include_token1] = ACTIONS(1235), + [aux_sym_preproc_def_token1] = ACTIONS(1235), + [aux_sym_preproc_if_token1] = ACTIONS(1235), + [aux_sym_preproc_if_token2] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1235), + [sym_preproc_directive] = ACTIONS(1235), + [anon_sym_LPAREN2] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym___extension__] = ACTIONS(1235), + [anon_sym_typedef] = ACTIONS(1235), + [anon_sym_extern] = ACTIONS(1235), + [anon_sym___attribute__] = ACTIONS(1235), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1237), + [anon_sym___declspec] = ACTIONS(1235), + [anon_sym___cdecl] = ACTIONS(1235), + [anon_sym___clrcall] = ACTIONS(1235), + [anon_sym___stdcall] = ACTIONS(1235), + [anon_sym___fastcall] = ACTIONS(1235), + [anon_sym___thiscall] = ACTIONS(1235), + [anon_sym___vectorcall] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_signed] = ACTIONS(1235), + [anon_sym_unsigned] = ACTIONS(1235), + [anon_sym_long] = ACTIONS(1235), + [anon_sym_short] = ACTIONS(1235), + [anon_sym_static] = ACTIONS(1235), + [anon_sym_auto] = ACTIONS(1235), + [anon_sym_register] = ACTIONS(1235), + [anon_sym_inline] = ACTIONS(1235), + [anon_sym___inline] = ACTIONS(1235), + [anon_sym___inline__] = ACTIONS(1235), + [anon_sym___forceinline] = ACTIONS(1235), + [anon_sym_thread_local] = ACTIONS(1235), + [anon_sym___thread] = ACTIONS(1235), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_constexpr] = ACTIONS(1235), + [anon_sym_volatile] = ACTIONS(1235), + [anon_sym_restrict] = ACTIONS(1235), + [anon_sym___restrict__] = ACTIONS(1235), + [anon_sym__Atomic] = ACTIONS(1235), + [anon_sym__Noreturn] = ACTIONS(1235), + [anon_sym_noreturn] = ACTIONS(1235), + [anon_sym_alignas] = ACTIONS(1235), + [anon_sym__Alignas] = ACTIONS(1235), + [sym_primitive_type] = ACTIONS(1235), + [anon_sym_enum] = ACTIONS(1235), + [anon_sym_struct] = ACTIONS(1235), + [anon_sym_union] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1235), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_switch] = ACTIONS(1235), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1235), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1235), + [anon_sym_return] = ACTIONS(1235), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_goto] = ACTIONS(1235), + [anon_sym___try] = ACTIONS(1235), + [anon_sym___leave] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_sizeof] = ACTIONS(1235), + [anon_sym___alignof__] = ACTIONS(1235), + [anon_sym___alignof] = ACTIONS(1235), + [anon_sym__alignof] = ACTIONS(1235), + [anon_sym_alignof] = ACTIONS(1235), + [anon_sym__Alignof] = ACTIONS(1235), + [anon_sym_offsetof] = ACTIONS(1235), + [anon_sym__Generic] = ACTIONS(1235), + [anon_sym_asm] = ACTIONS(1235), + [anon_sym___asm__] = ACTIONS(1235), + [sym_number_literal] = ACTIONS(1237), + [anon_sym_L_SQUOTE] = ACTIONS(1237), + [anon_sym_u_SQUOTE] = ACTIONS(1237), + [anon_sym_U_SQUOTE] = ACTIONS(1237), + [anon_sym_u8_SQUOTE] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_L_DQUOTE] = ACTIONS(1237), + [anon_sym_u_DQUOTE] = ACTIONS(1237), + [anon_sym_U_DQUOTE] = ACTIONS(1237), + [anon_sym_u8_DQUOTE] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_true] = ACTIONS(1235), + [sym_false] = ACTIONS(1235), + [anon_sym_NULL] = ACTIONS(1235), + [anon_sym_nullptr] = ACTIONS(1235), [sym_comment] = ACTIONS(3), }, [188] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1169), + [aux_sym_preproc_include_token1] = ACTIONS(1169), + [aux_sym_preproc_def_token1] = ACTIONS(1169), + [aux_sym_preproc_if_token1] = ACTIONS(1169), + [aux_sym_preproc_if_token2] = ACTIONS(1169), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1169), + [sym_preproc_directive] = ACTIONS(1169), + [anon_sym_LPAREN2] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1169), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym___extension__] = ACTIONS(1169), + [anon_sym_typedef] = ACTIONS(1169), + [anon_sym_extern] = ACTIONS(1169), + [anon_sym___attribute__] = ACTIONS(1169), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1167), + [anon_sym___declspec] = ACTIONS(1169), + [anon_sym___cdecl] = ACTIONS(1169), + [anon_sym___clrcall] = ACTIONS(1169), + [anon_sym___stdcall] = ACTIONS(1169), + [anon_sym___fastcall] = ACTIONS(1169), + [anon_sym___thiscall] = ACTIONS(1169), + [anon_sym___vectorcall] = ACTIONS(1169), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_signed] = ACTIONS(1169), + [anon_sym_unsigned] = ACTIONS(1169), + [anon_sym_long] = ACTIONS(1169), + [anon_sym_short] = ACTIONS(1169), + [anon_sym_static] = ACTIONS(1169), + [anon_sym_auto] = ACTIONS(1169), + [anon_sym_register] = ACTIONS(1169), + [anon_sym_inline] = ACTIONS(1169), + [anon_sym___inline] = ACTIONS(1169), + [anon_sym___inline__] = ACTIONS(1169), + [anon_sym___forceinline] = ACTIONS(1169), + [anon_sym_thread_local] = ACTIONS(1169), + [anon_sym___thread] = ACTIONS(1169), + [anon_sym_const] = ACTIONS(1169), + [anon_sym_constexpr] = ACTIONS(1169), + [anon_sym_volatile] = ACTIONS(1169), + [anon_sym_restrict] = ACTIONS(1169), + [anon_sym___restrict__] = ACTIONS(1169), + [anon_sym__Atomic] = ACTIONS(1169), + [anon_sym__Noreturn] = ACTIONS(1169), + [anon_sym_noreturn] = ACTIONS(1169), + [anon_sym_alignas] = ACTIONS(1169), + [anon_sym__Alignas] = ACTIONS(1169), + [sym_primitive_type] = ACTIONS(1169), + [anon_sym_enum] = ACTIONS(1169), + [anon_sym_struct] = ACTIONS(1169), + [anon_sym_union] = ACTIONS(1169), + [anon_sym_if] = ACTIONS(1169), + [anon_sym_else] = ACTIONS(1169), + [anon_sym_switch] = ACTIONS(1169), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_default] = ACTIONS(1169), + [anon_sym_while] = ACTIONS(1169), + [anon_sym_do] = ACTIONS(1169), + [anon_sym_for] = ACTIONS(1169), + [anon_sym_return] = ACTIONS(1169), + [anon_sym_break] = ACTIONS(1169), + [anon_sym_continue] = ACTIONS(1169), + [anon_sym_goto] = ACTIONS(1169), + [anon_sym___try] = ACTIONS(1169), + [anon_sym___leave] = ACTIONS(1169), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_sizeof] = ACTIONS(1169), + [anon_sym___alignof__] = ACTIONS(1169), + [anon_sym___alignof] = ACTIONS(1169), + [anon_sym__alignof] = ACTIONS(1169), + [anon_sym_alignof] = ACTIONS(1169), + [anon_sym__Alignof] = ACTIONS(1169), + [anon_sym_offsetof] = ACTIONS(1169), + [anon_sym__Generic] = ACTIONS(1169), + [anon_sym_asm] = ACTIONS(1169), + [anon_sym___asm__] = ACTIONS(1169), + [sym_number_literal] = ACTIONS(1167), + [anon_sym_L_SQUOTE] = ACTIONS(1167), + [anon_sym_u_SQUOTE] = ACTIONS(1167), + [anon_sym_U_SQUOTE] = ACTIONS(1167), + [anon_sym_u8_SQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1167), + [anon_sym_L_DQUOTE] = ACTIONS(1167), + [anon_sym_u_DQUOTE] = ACTIONS(1167), + [anon_sym_U_DQUOTE] = ACTIONS(1167), + [anon_sym_u8_DQUOTE] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_true] = ACTIONS(1169), + [sym_false] = ACTIONS(1169), + [anon_sym_NULL] = ACTIONS(1169), + [anon_sym_nullptr] = ACTIONS(1169), [sym_comment] = ACTIONS(3), }, [189] = { - [sym_identifier] = ACTIONS(1168), - [aux_sym_preproc_include_token1] = ACTIONS(1168), - [aux_sym_preproc_def_token1] = ACTIONS(1168), - [aux_sym_preproc_if_token1] = ACTIONS(1168), - [aux_sym_preproc_if_token2] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1168), - [sym_preproc_directive] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1170), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym___extension__] = ACTIONS(1168), - [anon_sym_typedef] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym___attribute__] = ACTIONS(1168), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1170), - [anon_sym___declspec] = ACTIONS(1168), - [anon_sym___cdecl] = ACTIONS(1168), - [anon_sym___clrcall] = ACTIONS(1168), - [anon_sym___stdcall] = ACTIONS(1168), - [anon_sym___fastcall] = ACTIONS(1168), - [anon_sym___thiscall] = ACTIONS(1168), - [anon_sym___vectorcall] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_signed] = ACTIONS(1168), - [anon_sym_unsigned] = ACTIONS(1168), - [anon_sym_long] = ACTIONS(1168), - [anon_sym_short] = ACTIONS(1168), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_auto] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_inline] = ACTIONS(1168), - [anon_sym___inline] = ACTIONS(1168), - [anon_sym___inline__] = ACTIONS(1168), - [anon_sym___forceinline] = ACTIONS(1168), - [anon_sym_thread_local] = ACTIONS(1168), - [anon_sym___thread] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_constexpr] = ACTIONS(1168), - [anon_sym_volatile] = ACTIONS(1168), - [anon_sym_restrict] = ACTIONS(1168), - [anon_sym___restrict__] = ACTIONS(1168), - [anon_sym__Atomic] = ACTIONS(1168), - [anon_sym__Noreturn] = ACTIONS(1168), - [anon_sym_noreturn] = ACTIONS(1168), - [sym_primitive_type] = ACTIONS(1168), - [anon_sym_enum] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1168), - [anon_sym_union] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1168), - [anon_sym_case] = ACTIONS(1168), - [anon_sym_default] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_goto] = ACTIONS(1168), - [anon_sym___try] = ACTIONS(1168), - [anon_sym___leave] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_sizeof] = ACTIONS(1168), - [anon_sym___alignof__] = ACTIONS(1168), - [anon_sym___alignof] = ACTIONS(1168), - [anon_sym__alignof] = ACTIONS(1168), - [anon_sym_alignof] = ACTIONS(1168), - [anon_sym__Alignof] = ACTIONS(1168), - [anon_sym_offsetof] = ACTIONS(1168), - [anon_sym__Generic] = ACTIONS(1168), - [anon_sym_asm] = ACTIONS(1168), - [anon_sym___asm__] = ACTIONS(1168), - [sym_number_literal] = ACTIONS(1170), - [anon_sym_L_SQUOTE] = ACTIONS(1170), - [anon_sym_u_SQUOTE] = ACTIONS(1170), - [anon_sym_U_SQUOTE] = ACTIONS(1170), - [anon_sym_u8_SQUOTE] = ACTIONS(1170), - [anon_sym_SQUOTE] = ACTIONS(1170), - [anon_sym_L_DQUOTE] = ACTIONS(1170), - [anon_sym_u_DQUOTE] = ACTIONS(1170), - [anon_sym_U_DQUOTE] = ACTIONS(1170), - [anon_sym_u8_DQUOTE] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1170), - [sym_true] = ACTIONS(1168), - [sym_false] = ACTIONS(1168), - [anon_sym_NULL] = ACTIONS(1168), - [anon_sym_nullptr] = ACTIONS(1168), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [190] = { - [sym_identifier] = ACTIONS(1156), - [aux_sym_preproc_include_token1] = ACTIONS(1156), - [aux_sym_preproc_def_token1] = ACTIONS(1156), - [aux_sym_preproc_if_token1] = ACTIONS(1156), - [aux_sym_preproc_if_token2] = ACTIONS(1156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1156), - [sym_preproc_directive] = ACTIONS(1156), - [anon_sym_LPAREN2] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(1158), - [anon_sym_TILDE] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_AMP] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym___extension__] = ACTIONS(1156), - [anon_sym_typedef] = ACTIONS(1156), - [anon_sym_extern] = ACTIONS(1156), - [anon_sym___attribute__] = ACTIONS(1156), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1158), - [anon_sym___declspec] = ACTIONS(1156), - [anon_sym___cdecl] = ACTIONS(1156), - [anon_sym___clrcall] = ACTIONS(1156), - [anon_sym___stdcall] = ACTIONS(1156), - [anon_sym___fastcall] = ACTIONS(1156), - [anon_sym___thiscall] = ACTIONS(1156), - [anon_sym___vectorcall] = ACTIONS(1156), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_signed] = ACTIONS(1156), - [anon_sym_unsigned] = ACTIONS(1156), - [anon_sym_long] = ACTIONS(1156), - [anon_sym_short] = ACTIONS(1156), - [anon_sym_static] = ACTIONS(1156), - [anon_sym_auto] = ACTIONS(1156), - [anon_sym_register] = ACTIONS(1156), - [anon_sym_inline] = ACTIONS(1156), - [anon_sym___inline] = ACTIONS(1156), - [anon_sym___inline__] = ACTIONS(1156), - [anon_sym___forceinline] = ACTIONS(1156), - [anon_sym_thread_local] = ACTIONS(1156), - [anon_sym___thread] = ACTIONS(1156), - [anon_sym_const] = ACTIONS(1156), - [anon_sym_constexpr] = ACTIONS(1156), - [anon_sym_volatile] = ACTIONS(1156), - [anon_sym_restrict] = ACTIONS(1156), - [anon_sym___restrict__] = ACTIONS(1156), - [anon_sym__Atomic] = ACTIONS(1156), - [anon_sym__Noreturn] = ACTIONS(1156), - [anon_sym_noreturn] = ACTIONS(1156), - [sym_primitive_type] = ACTIONS(1156), - [anon_sym_enum] = ACTIONS(1156), - [anon_sym_struct] = ACTIONS(1156), - [anon_sym_union] = ACTIONS(1156), - [anon_sym_if] = ACTIONS(1156), - [anon_sym_else] = ACTIONS(1156), - [anon_sym_switch] = ACTIONS(1156), - [anon_sym_case] = ACTIONS(1156), - [anon_sym_default] = ACTIONS(1156), - [anon_sym_while] = ACTIONS(1156), - [anon_sym_do] = ACTIONS(1156), - [anon_sym_for] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_continue] = ACTIONS(1156), - [anon_sym_goto] = ACTIONS(1156), - [anon_sym___try] = ACTIONS(1156), - [anon_sym___leave] = ACTIONS(1156), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_sizeof] = ACTIONS(1156), - [anon_sym___alignof__] = ACTIONS(1156), - [anon_sym___alignof] = ACTIONS(1156), - [anon_sym__alignof] = ACTIONS(1156), - [anon_sym_alignof] = ACTIONS(1156), - [anon_sym__Alignof] = ACTIONS(1156), - [anon_sym_offsetof] = ACTIONS(1156), - [anon_sym__Generic] = ACTIONS(1156), - [anon_sym_asm] = ACTIONS(1156), - [anon_sym___asm__] = ACTIONS(1156), - [sym_number_literal] = ACTIONS(1158), - [anon_sym_L_SQUOTE] = ACTIONS(1158), - [anon_sym_u_SQUOTE] = ACTIONS(1158), - [anon_sym_U_SQUOTE] = ACTIONS(1158), - [anon_sym_u8_SQUOTE] = ACTIONS(1158), - [anon_sym_SQUOTE] = ACTIONS(1158), - [anon_sym_L_DQUOTE] = ACTIONS(1158), - [anon_sym_u_DQUOTE] = ACTIONS(1158), - [anon_sym_U_DQUOTE] = ACTIONS(1158), - [anon_sym_u8_DQUOTE] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym_true] = ACTIONS(1156), - [sym_false] = ACTIONS(1156), - [anon_sym_NULL] = ACTIONS(1156), - [anon_sym_nullptr] = ACTIONS(1156), + [ts_builtin_sym_end] = ACTIONS(1233), + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), + [sym_preproc_directive] = ACTIONS(1231), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym___extension__] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym___attribute__] = ACTIONS(1231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1231), + [anon_sym___cdecl] = ACTIONS(1231), + [anon_sym___clrcall] = ACTIONS(1231), + [anon_sym___stdcall] = ACTIONS(1231), + [anon_sym___fastcall] = ACTIONS(1231), + [anon_sym___thiscall] = ACTIONS(1231), + [anon_sym___vectorcall] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1231), + [anon_sym_unsigned] = ACTIONS(1231), + [anon_sym_long] = ACTIONS(1231), + [anon_sym_short] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_auto] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_inline] = ACTIONS(1231), + [anon_sym___inline] = ACTIONS(1231), + [anon_sym___inline__] = ACTIONS(1231), + [anon_sym___forceinline] = ACTIONS(1231), + [anon_sym_thread_local] = ACTIONS(1231), + [anon_sym___thread] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_constexpr] = ACTIONS(1231), + [anon_sym_volatile] = ACTIONS(1231), + [anon_sym_restrict] = ACTIONS(1231), + [anon_sym___restrict__] = ACTIONS(1231), + [anon_sym__Atomic] = ACTIONS(1231), + [anon_sym__Noreturn] = ACTIONS(1231), + [anon_sym_noreturn] = ACTIONS(1231), + [anon_sym_alignas] = ACTIONS(1231), + [anon_sym__Alignas] = ACTIONS(1231), + [sym_primitive_type] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_union] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_goto] = ACTIONS(1231), + [anon_sym___try] = ACTIONS(1231), + [anon_sym___leave] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1231), + [anon_sym___alignof__] = ACTIONS(1231), + [anon_sym___alignof] = ACTIONS(1231), + [anon_sym__alignof] = ACTIONS(1231), + [anon_sym_alignof] = ACTIONS(1231), + [anon_sym__Alignof] = ACTIONS(1231), + [anon_sym_offsetof] = ACTIONS(1231), + [anon_sym__Generic] = ACTIONS(1231), + [anon_sym_asm] = ACTIONS(1231), + [anon_sym___asm__] = ACTIONS(1231), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_L_SQUOTE] = ACTIONS(1233), + [anon_sym_u_SQUOTE] = ACTIONS(1233), + [anon_sym_U_SQUOTE] = ACTIONS(1233), + [anon_sym_u8_SQUOTE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_L_DQUOTE] = ACTIONS(1233), + [anon_sym_u_DQUOTE] = ACTIONS(1233), + [anon_sym_U_DQUOTE] = ACTIONS(1233), + [anon_sym_u8_DQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1231), + [sym_false] = ACTIONS(1231), + [anon_sym_NULL] = ACTIONS(1231), + [anon_sym_nullptr] = ACTIONS(1231), [sym_comment] = ACTIONS(3), }, [191] = { - [sym_identifier] = ACTIONS(1152), - [aux_sym_preproc_include_token1] = ACTIONS(1152), - [aux_sym_preproc_def_token1] = ACTIONS(1152), - [aux_sym_preproc_if_token1] = ACTIONS(1152), - [aux_sym_preproc_if_token2] = ACTIONS(1152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1152), - [sym_preproc_directive] = ACTIONS(1152), - [anon_sym_LPAREN2] = ACTIONS(1154), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1154), - [anon_sym___extension__] = ACTIONS(1152), - [anon_sym_typedef] = ACTIONS(1152), - [anon_sym_extern] = ACTIONS(1152), - [anon_sym___attribute__] = ACTIONS(1152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1154), - [anon_sym___declspec] = ACTIONS(1152), - [anon_sym___cdecl] = ACTIONS(1152), - [anon_sym___clrcall] = ACTIONS(1152), - [anon_sym___stdcall] = ACTIONS(1152), - [anon_sym___fastcall] = ACTIONS(1152), - [anon_sym___thiscall] = ACTIONS(1152), - [anon_sym___vectorcall] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_signed] = ACTIONS(1152), - [anon_sym_unsigned] = ACTIONS(1152), - [anon_sym_long] = ACTIONS(1152), - [anon_sym_short] = ACTIONS(1152), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_auto] = ACTIONS(1152), - [anon_sym_register] = ACTIONS(1152), - [anon_sym_inline] = ACTIONS(1152), - [anon_sym___inline] = ACTIONS(1152), - [anon_sym___inline__] = ACTIONS(1152), - [anon_sym___forceinline] = ACTIONS(1152), - [anon_sym_thread_local] = ACTIONS(1152), - [anon_sym___thread] = ACTIONS(1152), - [anon_sym_const] = ACTIONS(1152), - [anon_sym_constexpr] = ACTIONS(1152), - [anon_sym_volatile] = ACTIONS(1152), - [anon_sym_restrict] = ACTIONS(1152), - [anon_sym___restrict__] = ACTIONS(1152), - [anon_sym__Atomic] = ACTIONS(1152), - [anon_sym__Noreturn] = ACTIONS(1152), - [anon_sym_noreturn] = ACTIONS(1152), - [sym_primitive_type] = ACTIONS(1152), - [anon_sym_enum] = ACTIONS(1152), - [anon_sym_struct] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(1152), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_else] = ACTIONS(1152), - [anon_sym_switch] = ACTIONS(1152), - [anon_sym_case] = ACTIONS(1152), - [anon_sym_default] = ACTIONS(1152), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(1152), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_return] = ACTIONS(1152), - [anon_sym_break] = ACTIONS(1152), - [anon_sym_continue] = ACTIONS(1152), - [anon_sym_goto] = ACTIONS(1152), - [anon_sym___try] = ACTIONS(1152), - [anon_sym___leave] = ACTIONS(1152), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_sizeof] = ACTIONS(1152), - [anon_sym___alignof__] = ACTIONS(1152), - [anon_sym___alignof] = ACTIONS(1152), - [anon_sym__alignof] = ACTIONS(1152), - [anon_sym_alignof] = ACTIONS(1152), - [anon_sym__Alignof] = ACTIONS(1152), - [anon_sym_offsetof] = ACTIONS(1152), - [anon_sym__Generic] = ACTIONS(1152), - [anon_sym_asm] = ACTIONS(1152), - [anon_sym___asm__] = ACTIONS(1152), - [sym_number_literal] = ACTIONS(1154), - [anon_sym_L_SQUOTE] = ACTIONS(1154), - [anon_sym_u_SQUOTE] = ACTIONS(1154), - [anon_sym_U_SQUOTE] = ACTIONS(1154), - [anon_sym_u8_SQUOTE] = ACTIONS(1154), - [anon_sym_SQUOTE] = ACTIONS(1154), - [anon_sym_L_DQUOTE] = ACTIONS(1154), - [anon_sym_u_DQUOTE] = ACTIONS(1154), - [anon_sym_U_DQUOTE] = ACTIONS(1154), - [anon_sym_u8_DQUOTE] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1154), - [sym_true] = ACTIONS(1152), - [sym_false] = ACTIONS(1152), - [anon_sym_NULL] = ACTIONS(1152), - [anon_sym_nullptr] = ACTIONS(1152), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [192] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [193] = { - [sym_identifier] = ACTIONS(1144), - [aux_sym_preproc_include_token1] = ACTIONS(1144), - [aux_sym_preproc_def_token1] = ACTIONS(1144), - [aux_sym_preproc_if_token1] = ACTIONS(1144), - [aux_sym_preproc_if_token2] = ACTIONS(1144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1144), - [sym_preproc_directive] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(1146), - [anon_sym_BANG] = ACTIONS(1146), - [anon_sym_TILDE] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_STAR] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1146), - [anon_sym_SEMI] = ACTIONS(1146), - [anon_sym___extension__] = ACTIONS(1144), - [anon_sym_typedef] = ACTIONS(1144), - [anon_sym_extern] = ACTIONS(1144), - [anon_sym___attribute__] = ACTIONS(1144), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1146), - [anon_sym___declspec] = ACTIONS(1144), - [anon_sym___cdecl] = ACTIONS(1144), - [anon_sym___clrcall] = ACTIONS(1144), - [anon_sym___stdcall] = ACTIONS(1144), - [anon_sym___fastcall] = ACTIONS(1144), - [anon_sym___thiscall] = ACTIONS(1144), - [anon_sym___vectorcall] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(1146), - [anon_sym_signed] = ACTIONS(1144), - [anon_sym_unsigned] = ACTIONS(1144), - [anon_sym_long] = ACTIONS(1144), - [anon_sym_short] = ACTIONS(1144), - [anon_sym_static] = ACTIONS(1144), - [anon_sym_auto] = ACTIONS(1144), - [anon_sym_register] = ACTIONS(1144), - [anon_sym_inline] = ACTIONS(1144), - [anon_sym___inline] = ACTIONS(1144), - [anon_sym___inline__] = ACTIONS(1144), - [anon_sym___forceinline] = ACTIONS(1144), - [anon_sym_thread_local] = ACTIONS(1144), - [anon_sym___thread] = ACTIONS(1144), - [anon_sym_const] = ACTIONS(1144), - [anon_sym_constexpr] = ACTIONS(1144), - [anon_sym_volatile] = ACTIONS(1144), - [anon_sym_restrict] = ACTIONS(1144), - [anon_sym___restrict__] = ACTIONS(1144), - [anon_sym__Atomic] = ACTIONS(1144), - [anon_sym__Noreturn] = ACTIONS(1144), - [anon_sym_noreturn] = ACTIONS(1144), - [sym_primitive_type] = ACTIONS(1144), - [anon_sym_enum] = ACTIONS(1144), - [anon_sym_struct] = ACTIONS(1144), - [anon_sym_union] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(1144), - [anon_sym_else] = ACTIONS(1144), - [anon_sym_switch] = ACTIONS(1144), - [anon_sym_case] = ACTIONS(1144), - [anon_sym_default] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1144), - [anon_sym_do] = ACTIONS(1144), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_return] = ACTIONS(1144), - [anon_sym_break] = ACTIONS(1144), - [anon_sym_continue] = ACTIONS(1144), - [anon_sym_goto] = ACTIONS(1144), - [anon_sym___try] = ACTIONS(1144), - [anon_sym___leave] = ACTIONS(1144), - [anon_sym_DASH_DASH] = ACTIONS(1146), - [anon_sym_PLUS_PLUS] = ACTIONS(1146), - [anon_sym_sizeof] = ACTIONS(1144), - [anon_sym___alignof__] = ACTIONS(1144), - [anon_sym___alignof] = ACTIONS(1144), - [anon_sym__alignof] = ACTIONS(1144), - [anon_sym_alignof] = ACTIONS(1144), - [anon_sym__Alignof] = ACTIONS(1144), - [anon_sym_offsetof] = ACTIONS(1144), - [anon_sym__Generic] = ACTIONS(1144), - [anon_sym_asm] = ACTIONS(1144), - [anon_sym___asm__] = ACTIONS(1144), - [sym_number_literal] = ACTIONS(1146), - [anon_sym_L_SQUOTE] = ACTIONS(1146), - [anon_sym_u_SQUOTE] = ACTIONS(1146), - [anon_sym_U_SQUOTE] = ACTIONS(1146), - [anon_sym_u8_SQUOTE] = ACTIONS(1146), - [anon_sym_SQUOTE] = ACTIONS(1146), - [anon_sym_L_DQUOTE] = ACTIONS(1146), - [anon_sym_u_DQUOTE] = ACTIONS(1146), - [anon_sym_U_DQUOTE] = ACTIONS(1146), - [anon_sym_u8_DQUOTE] = ACTIONS(1146), - [anon_sym_DQUOTE] = ACTIONS(1146), - [sym_true] = ACTIONS(1144), - [sym_false] = ACTIONS(1144), - [anon_sym_NULL] = ACTIONS(1144), - [anon_sym_nullptr] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1179), + [aux_sym_preproc_include_token1] = ACTIONS(1179), + [aux_sym_preproc_def_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token2] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), + [sym_preproc_directive] = ACTIONS(1179), + [anon_sym_LPAREN2] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym___extension__] = ACTIONS(1179), + [anon_sym_typedef] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym___attribute__] = ACTIONS(1179), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym___declspec] = ACTIONS(1179), + [anon_sym___cdecl] = ACTIONS(1179), + [anon_sym___clrcall] = ACTIONS(1179), + [anon_sym___stdcall] = ACTIONS(1179), + [anon_sym___fastcall] = ACTIONS(1179), + [anon_sym___thiscall] = ACTIONS(1179), + [anon_sym___vectorcall] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_signed] = ACTIONS(1179), + [anon_sym_unsigned] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_auto] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_inline] = ACTIONS(1179), + [anon_sym___inline] = ACTIONS(1179), + [anon_sym___inline__] = ACTIONS(1179), + [anon_sym___forceinline] = ACTIONS(1179), + [anon_sym_thread_local] = ACTIONS(1179), + [anon_sym___thread] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_constexpr] = ACTIONS(1179), + [anon_sym_volatile] = ACTIONS(1179), + [anon_sym_restrict] = ACTIONS(1179), + [anon_sym___restrict__] = ACTIONS(1179), + [anon_sym__Atomic] = ACTIONS(1179), + [anon_sym__Noreturn] = ACTIONS(1179), + [anon_sym_noreturn] = ACTIONS(1179), + [anon_sym_alignas] = ACTIONS(1179), + [anon_sym__Alignas] = ACTIONS(1179), + [sym_primitive_type] = ACTIONS(1179), + [anon_sym_enum] = ACTIONS(1179), + [anon_sym_struct] = ACTIONS(1179), + [anon_sym_union] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_case] = ACTIONS(1179), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_goto] = ACTIONS(1179), + [anon_sym___try] = ACTIONS(1179), + [anon_sym___leave] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_sizeof] = ACTIONS(1179), + [anon_sym___alignof__] = ACTIONS(1179), + [anon_sym___alignof] = ACTIONS(1179), + [anon_sym__alignof] = ACTIONS(1179), + [anon_sym_alignof] = ACTIONS(1179), + [anon_sym__Alignof] = ACTIONS(1179), + [anon_sym_offsetof] = ACTIONS(1179), + [anon_sym__Generic] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym___asm__] = ACTIONS(1179), + [sym_number_literal] = ACTIONS(1181), + [anon_sym_L_SQUOTE] = ACTIONS(1181), + [anon_sym_u_SQUOTE] = ACTIONS(1181), + [anon_sym_U_SQUOTE] = ACTIONS(1181), + [anon_sym_u8_SQUOTE] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_L_DQUOTE] = ACTIONS(1181), + [anon_sym_u_DQUOTE] = ACTIONS(1181), + [anon_sym_U_DQUOTE] = ACTIONS(1181), + [anon_sym_u8_DQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym_true] = ACTIONS(1179), + [sym_false] = ACTIONS(1179), + [anon_sym_NULL] = ACTIONS(1179), + [anon_sym_nullptr] = ACTIONS(1179), [sym_comment] = ACTIONS(3), }, [194] = { - [ts_builtin_sym_end] = ACTIONS(1178), - [sym_identifier] = ACTIONS(1176), - [aux_sym_preproc_include_token1] = ACTIONS(1176), - [aux_sym_preproc_def_token1] = ACTIONS(1176), - [aux_sym_preproc_if_token1] = ACTIONS(1176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1176), - [sym_preproc_directive] = ACTIONS(1176), - [anon_sym_LPAREN2] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_TILDE] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1178), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym___extension__] = ACTIONS(1176), - [anon_sym_typedef] = ACTIONS(1176), - [anon_sym_extern] = ACTIONS(1176), - [anon_sym___attribute__] = ACTIONS(1176), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1178), - [anon_sym___declspec] = ACTIONS(1176), - [anon_sym___cdecl] = ACTIONS(1176), - [anon_sym___clrcall] = ACTIONS(1176), - [anon_sym___stdcall] = ACTIONS(1176), - [anon_sym___fastcall] = ACTIONS(1176), - [anon_sym___thiscall] = ACTIONS(1176), - [anon_sym___vectorcall] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_signed] = ACTIONS(1176), - [anon_sym_unsigned] = ACTIONS(1176), - [anon_sym_long] = ACTIONS(1176), - [anon_sym_short] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1176), - [anon_sym_auto] = ACTIONS(1176), - [anon_sym_register] = ACTIONS(1176), - [anon_sym_inline] = ACTIONS(1176), - [anon_sym___inline] = ACTIONS(1176), - [anon_sym___inline__] = ACTIONS(1176), - [anon_sym___forceinline] = ACTIONS(1176), - [anon_sym_thread_local] = ACTIONS(1176), - [anon_sym___thread] = ACTIONS(1176), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_constexpr] = ACTIONS(1176), - [anon_sym_volatile] = ACTIONS(1176), - [anon_sym_restrict] = ACTIONS(1176), - [anon_sym___restrict__] = ACTIONS(1176), - [anon_sym__Atomic] = ACTIONS(1176), - [anon_sym__Noreturn] = ACTIONS(1176), - [anon_sym_noreturn] = ACTIONS(1176), - [sym_primitive_type] = ACTIONS(1176), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_struct] = ACTIONS(1176), - [anon_sym_union] = ACTIONS(1176), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_else] = ACTIONS(1176), - [anon_sym_switch] = ACTIONS(1176), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_goto] = ACTIONS(1176), - [anon_sym___try] = ACTIONS(1176), - [anon_sym___leave] = ACTIONS(1176), - [anon_sym_DASH_DASH] = ACTIONS(1178), - [anon_sym_PLUS_PLUS] = ACTIONS(1178), - [anon_sym_sizeof] = ACTIONS(1176), - [anon_sym___alignof__] = ACTIONS(1176), - [anon_sym___alignof] = ACTIONS(1176), - [anon_sym__alignof] = ACTIONS(1176), - [anon_sym_alignof] = ACTIONS(1176), - [anon_sym__Alignof] = ACTIONS(1176), - [anon_sym_offsetof] = ACTIONS(1176), - [anon_sym__Generic] = ACTIONS(1176), - [anon_sym_asm] = ACTIONS(1176), - [anon_sym___asm__] = ACTIONS(1176), - [sym_number_literal] = ACTIONS(1178), - [anon_sym_L_SQUOTE] = ACTIONS(1178), - [anon_sym_u_SQUOTE] = ACTIONS(1178), - [anon_sym_U_SQUOTE] = ACTIONS(1178), - [anon_sym_u8_SQUOTE] = ACTIONS(1178), - [anon_sym_SQUOTE] = ACTIONS(1178), - [anon_sym_L_DQUOTE] = ACTIONS(1178), - [anon_sym_u_DQUOTE] = ACTIONS(1178), - [anon_sym_U_DQUOTE] = ACTIONS(1178), - [anon_sym_u8_DQUOTE] = ACTIONS(1178), - [anon_sym_DQUOTE] = ACTIONS(1178), - [sym_true] = ACTIONS(1176), - [sym_false] = ACTIONS(1176), - [anon_sym_NULL] = ACTIONS(1176), - [anon_sym_nullptr] = ACTIONS(1176), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [195] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1211), + [aux_sym_preproc_include_token1] = ACTIONS(1211), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token2] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1211), + [sym_preproc_directive] = ACTIONS(1211), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym___extension__] = ACTIONS(1211), + [anon_sym_typedef] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym___attribute__] = ACTIONS(1211), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym___declspec] = ACTIONS(1211), + [anon_sym___cdecl] = ACTIONS(1211), + [anon_sym___clrcall] = ACTIONS(1211), + [anon_sym___stdcall] = ACTIONS(1211), + [anon_sym___fastcall] = ACTIONS(1211), + [anon_sym___thiscall] = ACTIONS(1211), + [anon_sym___vectorcall] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_signed] = ACTIONS(1211), + [anon_sym_unsigned] = ACTIONS(1211), + [anon_sym_long] = ACTIONS(1211), + [anon_sym_short] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1211), + [anon_sym_auto] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_inline] = ACTIONS(1211), + [anon_sym___inline] = ACTIONS(1211), + [anon_sym___inline__] = ACTIONS(1211), + [anon_sym___forceinline] = ACTIONS(1211), + [anon_sym_thread_local] = ACTIONS(1211), + [anon_sym___thread] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_constexpr] = ACTIONS(1211), + [anon_sym_volatile] = ACTIONS(1211), + [anon_sym_restrict] = ACTIONS(1211), + [anon_sym___restrict__] = ACTIONS(1211), + [anon_sym__Atomic] = ACTIONS(1211), + [anon_sym__Noreturn] = ACTIONS(1211), + [anon_sym_noreturn] = ACTIONS(1211), + [anon_sym_alignas] = ACTIONS(1211), + [anon_sym__Alignas] = ACTIONS(1211), + [sym_primitive_type] = ACTIONS(1211), + [anon_sym_enum] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1211), + [anon_sym_union] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_else] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1211), + [anon_sym_case] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_goto] = ACTIONS(1211), + [anon_sym___try] = ACTIONS(1211), + [anon_sym___leave] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1211), + [anon_sym___alignof__] = ACTIONS(1211), + [anon_sym___alignof] = ACTIONS(1211), + [anon_sym__alignof] = ACTIONS(1211), + [anon_sym_alignof] = ACTIONS(1211), + [anon_sym__Alignof] = ACTIONS(1211), + [anon_sym_offsetof] = ACTIONS(1211), + [anon_sym__Generic] = ACTIONS(1211), + [anon_sym_asm] = ACTIONS(1211), + [anon_sym___asm__] = ACTIONS(1211), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_L_SQUOTE] = ACTIONS(1213), + [anon_sym_u_SQUOTE] = ACTIONS(1213), + [anon_sym_U_SQUOTE] = ACTIONS(1213), + [anon_sym_u8_SQUOTE] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_L_DQUOTE] = ACTIONS(1213), + [anon_sym_u_DQUOTE] = ACTIONS(1213), + [anon_sym_U_DQUOTE] = ACTIONS(1213), + [anon_sym_u8_DQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1211), + [sym_false] = ACTIONS(1211), + [anon_sym_NULL] = ACTIONS(1211), + [anon_sym_nullptr] = ACTIONS(1211), [sym_comment] = ACTIONS(3), }, [196] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token2] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1147), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, [197] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token2] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1147), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, [198] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1159), + [aux_sym_preproc_include_token1] = ACTIONS(1159), + [aux_sym_preproc_def_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), + [sym_preproc_directive] = ACTIONS(1159), + [anon_sym_LPAREN2] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(1161), + [anon_sym_TILDE] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1161), + [anon_sym___extension__] = ACTIONS(1159), + [anon_sym_typedef] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym___attribute__] = ACTIONS(1159), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), + [anon_sym___declspec] = ACTIONS(1159), + [anon_sym___cdecl] = ACTIONS(1159), + [anon_sym___clrcall] = ACTIONS(1159), + [anon_sym___stdcall] = ACTIONS(1159), + [anon_sym___fastcall] = ACTIONS(1159), + [anon_sym___thiscall] = ACTIONS(1159), + [anon_sym___vectorcall] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_signed] = ACTIONS(1159), + [anon_sym_unsigned] = ACTIONS(1159), + [anon_sym_long] = ACTIONS(1159), + [anon_sym_short] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_auto] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_inline] = ACTIONS(1159), + [anon_sym___inline] = ACTIONS(1159), + [anon_sym___inline__] = ACTIONS(1159), + [anon_sym___forceinline] = ACTIONS(1159), + [anon_sym_thread_local] = ACTIONS(1159), + [anon_sym___thread] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_constexpr] = ACTIONS(1159), + [anon_sym_volatile] = ACTIONS(1159), + [anon_sym_restrict] = ACTIONS(1159), + [anon_sym___restrict__] = ACTIONS(1159), + [anon_sym__Atomic] = ACTIONS(1159), + [anon_sym__Noreturn] = ACTIONS(1159), + [anon_sym_noreturn] = ACTIONS(1159), + [anon_sym_alignas] = ACTIONS(1159), + [anon_sym__Alignas] = ACTIONS(1159), + [sym_primitive_type] = ACTIONS(1159), + [anon_sym_enum] = ACTIONS(1159), + [anon_sym_struct] = ACTIONS(1159), + [anon_sym_union] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_switch] = ACTIONS(1159), + [anon_sym_case] = ACTIONS(1159), + [anon_sym_default] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_goto] = ACTIONS(1159), + [anon_sym___try] = ACTIONS(1159), + [anon_sym___leave] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1161), + [anon_sym_PLUS_PLUS] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1159), + [anon_sym___alignof__] = ACTIONS(1159), + [anon_sym___alignof] = ACTIONS(1159), + [anon_sym__alignof] = ACTIONS(1159), + [anon_sym_alignof] = ACTIONS(1159), + [anon_sym__Alignof] = ACTIONS(1159), + [anon_sym_offsetof] = ACTIONS(1159), + [anon_sym__Generic] = ACTIONS(1159), + [anon_sym_asm] = ACTIONS(1159), + [anon_sym___asm__] = ACTIONS(1159), + [sym_number_literal] = ACTIONS(1161), + [anon_sym_L_SQUOTE] = ACTIONS(1161), + [anon_sym_u_SQUOTE] = ACTIONS(1161), + [anon_sym_U_SQUOTE] = ACTIONS(1161), + [anon_sym_u8_SQUOTE] = ACTIONS(1161), + [anon_sym_SQUOTE] = ACTIONS(1161), + [anon_sym_L_DQUOTE] = ACTIONS(1161), + [anon_sym_u_DQUOTE] = ACTIONS(1161), + [anon_sym_U_DQUOTE] = ACTIONS(1161), + [anon_sym_u8_DQUOTE] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym_true] = ACTIONS(1159), + [sym_false] = ACTIONS(1159), + [anon_sym_NULL] = ACTIONS(1159), + [anon_sym_nullptr] = ACTIONS(1159), [sym_comment] = ACTIONS(3), }, [199] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1157), + [sym_identifier] = ACTIONS(1155), + [aux_sym_preproc_include_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1155), + [aux_sym_preproc_if_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), + [sym_preproc_directive] = ACTIONS(1155), + [anon_sym_LPAREN2] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1157), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1157), + [anon_sym___extension__] = ACTIONS(1155), + [anon_sym_typedef] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym___attribute__] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1157), + [anon_sym___declspec] = ACTIONS(1155), + [anon_sym___cdecl] = ACTIONS(1155), + [anon_sym___clrcall] = ACTIONS(1155), + [anon_sym___stdcall] = ACTIONS(1155), + [anon_sym___fastcall] = ACTIONS(1155), + [anon_sym___thiscall] = ACTIONS(1155), + [anon_sym___vectorcall] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(1155), + [anon_sym_unsigned] = ACTIONS(1155), + [anon_sym_long] = ACTIONS(1155), + [anon_sym_short] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1155), + [anon_sym_auto] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_inline] = ACTIONS(1155), + [anon_sym___inline] = ACTIONS(1155), + [anon_sym___inline__] = ACTIONS(1155), + [anon_sym___forceinline] = ACTIONS(1155), + [anon_sym_thread_local] = ACTIONS(1155), + [anon_sym___thread] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_constexpr] = ACTIONS(1155), + [anon_sym_volatile] = ACTIONS(1155), + [anon_sym_restrict] = ACTIONS(1155), + [anon_sym___restrict__] = ACTIONS(1155), + [anon_sym__Atomic] = ACTIONS(1155), + [anon_sym__Noreturn] = ACTIONS(1155), + [anon_sym_noreturn] = ACTIONS(1155), + [anon_sym_alignas] = ACTIONS(1155), + [anon_sym__Alignas] = ACTIONS(1155), + [sym_primitive_type] = ACTIONS(1155), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_struct] = ACTIONS(1155), + [anon_sym_union] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_switch] = ACTIONS(1155), + [anon_sym_case] = ACTIONS(1155), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_goto] = ACTIONS(1155), + [anon_sym___try] = ACTIONS(1155), + [anon_sym___leave] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_sizeof] = ACTIONS(1155), + [anon_sym___alignof__] = ACTIONS(1155), + [anon_sym___alignof] = ACTIONS(1155), + [anon_sym__alignof] = ACTIONS(1155), + [anon_sym_alignof] = ACTIONS(1155), + [anon_sym__Alignof] = ACTIONS(1155), + [anon_sym_offsetof] = ACTIONS(1155), + [anon_sym__Generic] = ACTIONS(1155), + [anon_sym_asm] = ACTIONS(1155), + [anon_sym___asm__] = ACTIONS(1155), + [sym_number_literal] = ACTIONS(1157), + [anon_sym_L_SQUOTE] = ACTIONS(1157), + [anon_sym_u_SQUOTE] = ACTIONS(1157), + [anon_sym_U_SQUOTE] = ACTIONS(1157), + [anon_sym_u8_SQUOTE] = ACTIONS(1157), + [anon_sym_SQUOTE] = ACTIONS(1157), + [anon_sym_L_DQUOTE] = ACTIONS(1157), + [anon_sym_u_DQUOTE] = ACTIONS(1157), + [anon_sym_U_DQUOTE] = ACTIONS(1157), + [anon_sym_u8_DQUOTE] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_true] = ACTIONS(1155), + [sym_false] = ACTIONS(1155), + [anon_sym_NULL] = ACTIONS(1155), + [anon_sym_nullptr] = ACTIONS(1155), [sym_comment] = ACTIONS(3), }, [200] = { - [sym_identifier] = ACTIONS(1180), - [aux_sym_preproc_include_token1] = ACTIONS(1180), - [aux_sym_preproc_def_token1] = ACTIONS(1180), - [aux_sym_preproc_if_token1] = ACTIONS(1180), - [aux_sym_preproc_if_token2] = ACTIONS(1180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1180), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1180), - [sym_preproc_directive] = ACTIONS(1180), - [anon_sym_LPAREN2] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1182), - [anon_sym_TILDE] = ACTIONS(1182), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_STAR] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1182), - [anon_sym_SEMI] = ACTIONS(1182), - [anon_sym___extension__] = ACTIONS(1180), - [anon_sym_typedef] = ACTIONS(1180), - [anon_sym_extern] = ACTIONS(1180), - [anon_sym___attribute__] = ACTIONS(1180), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1182), - [anon_sym___declspec] = ACTIONS(1180), - [anon_sym___cdecl] = ACTIONS(1180), - [anon_sym___clrcall] = ACTIONS(1180), - [anon_sym___stdcall] = ACTIONS(1180), - [anon_sym___fastcall] = ACTIONS(1180), - [anon_sym___thiscall] = ACTIONS(1180), - [anon_sym___vectorcall] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_signed] = ACTIONS(1180), - [anon_sym_unsigned] = ACTIONS(1180), - [anon_sym_long] = ACTIONS(1180), - [anon_sym_short] = ACTIONS(1180), - [anon_sym_static] = ACTIONS(1180), - [anon_sym_auto] = ACTIONS(1180), - [anon_sym_register] = ACTIONS(1180), - [anon_sym_inline] = ACTIONS(1180), - [anon_sym___inline] = ACTIONS(1180), - [anon_sym___inline__] = ACTIONS(1180), - [anon_sym___forceinline] = ACTIONS(1180), - [anon_sym_thread_local] = ACTIONS(1180), - [anon_sym___thread] = ACTIONS(1180), - [anon_sym_const] = ACTIONS(1180), - [anon_sym_constexpr] = ACTIONS(1180), - [anon_sym_volatile] = ACTIONS(1180), - [anon_sym_restrict] = ACTIONS(1180), - [anon_sym___restrict__] = ACTIONS(1180), - [anon_sym__Atomic] = ACTIONS(1180), - [anon_sym__Noreturn] = ACTIONS(1180), - [anon_sym_noreturn] = ACTIONS(1180), - [sym_primitive_type] = ACTIONS(1180), - [anon_sym_enum] = ACTIONS(1180), - [anon_sym_struct] = ACTIONS(1180), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_else] = ACTIONS(1180), - [anon_sym_switch] = ACTIONS(1180), - [anon_sym_case] = ACTIONS(1180), - [anon_sym_default] = ACTIONS(1180), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1180), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_break] = ACTIONS(1180), - [anon_sym_continue] = ACTIONS(1180), - [anon_sym_goto] = ACTIONS(1180), - [anon_sym___try] = ACTIONS(1180), - [anon_sym___leave] = ACTIONS(1180), - [anon_sym_DASH_DASH] = ACTIONS(1182), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_sizeof] = ACTIONS(1180), - [anon_sym___alignof__] = ACTIONS(1180), - [anon_sym___alignof] = ACTIONS(1180), - [anon_sym__alignof] = ACTIONS(1180), - [anon_sym_alignof] = ACTIONS(1180), - [anon_sym__Alignof] = ACTIONS(1180), - [anon_sym_offsetof] = ACTIONS(1180), - [anon_sym__Generic] = ACTIONS(1180), - [anon_sym_asm] = ACTIONS(1180), - [anon_sym___asm__] = ACTIONS(1180), - [sym_number_literal] = ACTIONS(1182), - [anon_sym_L_SQUOTE] = ACTIONS(1182), - [anon_sym_u_SQUOTE] = ACTIONS(1182), - [anon_sym_U_SQUOTE] = ACTIONS(1182), - [anon_sym_u8_SQUOTE] = ACTIONS(1182), - [anon_sym_SQUOTE] = ACTIONS(1182), - [anon_sym_L_DQUOTE] = ACTIONS(1182), - [anon_sym_u_DQUOTE] = ACTIONS(1182), - [anon_sym_U_DQUOTE] = ACTIONS(1182), - [anon_sym_u8_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1182), - [sym_true] = ACTIONS(1180), - [sym_false] = ACTIONS(1180), - [anon_sym_NULL] = ACTIONS(1180), - [anon_sym_nullptr] = ACTIONS(1180), + [sym_identifier] = ACTIONS(1151), + [aux_sym_preproc_include_token1] = ACTIONS(1151), + [aux_sym_preproc_def_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token2] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), + [sym_preproc_directive] = ACTIONS(1151), + [anon_sym_LPAREN2] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_TILDE] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym___extension__] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1151), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym___attribute__] = ACTIONS(1151), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), + [anon_sym___declspec] = ACTIONS(1151), + [anon_sym___cdecl] = ACTIONS(1151), + [anon_sym___clrcall] = ACTIONS(1151), + [anon_sym___stdcall] = ACTIONS(1151), + [anon_sym___fastcall] = ACTIONS(1151), + [anon_sym___thiscall] = ACTIONS(1151), + [anon_sym___vectorcall] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_signed] = ACTIONS(1151), + [anon_sym_unsigned] = ACTIONS(1151), + [anon_sym_long] = ACTIONS(1151), + [anon_sym_short] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1151), + [anon_sym_auto] = ACTIONS(1151), + [anon_sym_register] = ACTIONS(1151), + [anon_sym_inline] = ACTIONS(1151), + [anon_sym___inline] = ACTIONS(1151), + [anon_sym___inline__] = ACTIONS(1151), + [anon_sym___forceinline] = ACTIONS(1151), + [anon_sym_thread_local] = ACTIONS(1151), + [anon_sym___thread] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_constexpr] = ACTIONS(1151), + [anon_sym_volatile] = ACTIONS(1151), + [anon_sym_restrict] = ACTIONS(1151), + [anon_sym___restrict__] = ACTIONS(1151), + [anon_sym__Atomic] = ACTIONS(1151), + [anon_sym__Noreturn] = ACTIONS(1151), + [anon_sym_noreturn] = ACTIONS(1151), + [anon_sym_alignas] = ACTIONS(1151), + [anon_sym__Alignas] = ACTIONS(1151), + [sym_primitive_type] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1151), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_else] = ACTIONS(1151), + [anon_sym_switch] = ACTIONS(1151), + [anon_sym_case] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1151), + [anon_sym_do] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1151), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_break] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1151), + [anon_sym_goto] = ACTIONS(1151), + [anon_sym___try] = ACTIONS(1151), + [anon_sym___leave] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1153), + [anon_sym_PLUS_PLUS] = ACTIONS(1153), + [anon_sym_sizeof] = ACTIONS(1151), + [anon_sym___alignof__] = ACTIONS(1151), + [anon_sym___alignof] = ACTIONS(1151), + [anon_sym__alignof] = ACTIONS(1151), + [anon_sym_alignof] = ACTIONS(1151), + [anon_sym__Alignof] = ACTIONS(1151), + [anon_sym_offsetof] = ACTIONS(1151), + [anon_sym__Generic] = ACTIONS(1151), + [anon_sym_asm] = ACTIONS(1151), + [anon_sym___asm__] = ACTIONS(1151), + [sym_number_literal] = ACTIONS(1153), + [anon_sym_L_SQUOTE] = ACTIONS(1153), + [anon_sym_u_SQUOTE] = ACTIONS(1153), + [anon_sym_U_SQUOTE] = ACTIONS(1153), + [anon_sym_u8_SQUOTE] = ACTIONS(1153), + [anon_sym_SQUOTE] = ACTIONS(1153), + [anon_sym_L_DQUOTE] = ACTIONS(1153), + [anon_sym_u_DQUOTE] = ACTIONS(1153), + [anon_sym_U_DQUOTE] = ACTIONS(1153), + [anon_sym_u8_DQUOTE] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [sym_true] = ACTIONS(1151), + [sym_false] = ACTIONS(1151), + [anon_sym_NULL] = ACTIONS(1151), + [anon_sym_nullptr] = ACTIONS(1151), [sym_comment] = ACTIONS(3), }, [201] = { - [sym_identifier] = ACTIONS(1184), - [aux_sym_preproc_include_token1] = ACTIONS(1184), - [aux_sym_preproc_def_token1] = ACTIONS(1184), - [aux_sym_preproc_if_token1] = ACTIONS(1184), - [aux_sym_preproc_if_token2] = ACTIONS(1184), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1184), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1184), - [sym_preproc_directive] = ACTIONS(1184), - [anon_sym_LPAREN2] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym___extension__] = ACTIONS(1184), - [anon_sym_typedef] = ACTIONS(1184), - [anon_sym_extern] = ACTIONS(1184), - [anon_sym___attribute__] = ACTIONS(1184), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1186), - [anon_sym___declspec] = ACTIONS(1184), - [anon_sym___cdecl] = ACTIONS(1184), - [anon_sym___clrcall] = ACTIONS(1184), - [anon_sym___stdcall] = ACTIONS(1184), - [anon_sym___fastcall] = ACTIONS(1184), - [anon_sym___thiscall] = ACTIONS(1184), - [anon_sym___vectorcall] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_signed] = ACTIONS(1184), - [anon_sym_unsigned] = ACTIONS(1184), - [anon_sym_long] = ACTIONS(1184), - [anon_sym_short] = ACTIONS(1184), - [anon_sym_static] = ACTIONS(1184), - [anon_sym_auto] = ACTIONS(1184), - [anon_sym_register] = ACTIONS(1184), - [anon_sym_inline] = ACTIONS(1184), - [anon_sym___inline] = ACTIONS(1184), - [anon_sym___inline__] = ACTIONS(1184), - [anon_sym___forceinline] = ACTIONS(1184), - [anon_sym_thread_local] = ACTIONS(1184), - [anon_sym___thread] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1184), - [anon_sym_constexpr] = ACTIONS(1184), - [anon_sym_volatile] = ACTIONS(1184), - [anon_sym_restrict] = ACTIONS(1184), - [anon_sym___restrict__] = ACTIONS(1184), - [anon_sym__Atomic] = ACTIONS(1184), - [anon_sym__Noreturn] = ACTIONS(1184), - [anon_sym_noreturn] = ACTIONS(1184), - [sym_primitive_type] = ACTIONS(1184), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_struct] = ACTIONS(1184), - [anon_sym_union] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_else] = ACTIONS(1184), - [anon_sym_switch] = ACTIONS(1184), - [anon_sym_case] = ACTIONS(1184), - [anon_sym_default] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_do] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_goto] = ACTIONS(1184), - [anon_sym___try] = ACTIONS(1184), - [anon_sym___leave] = ACTIONS(1184), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_sizeof] = ACTIONS(1184), - [anon_sym___alignof__] = ACTIONS(1184), - [anon_sym___alignof] = ACTIONS(1184), - [anon_sym__alignof] = ACTIONS(1184), - [anon_sym_alignof] = ACTIONS(1184), - [anon_sym__Alignof] = ACTIONS(1184), - [anon_sym_offsetof] = ACTIONS(1184), - [anon_sym__Generic] = ACTIONS(1184), - [anon_sym_asm] = ACTIONS(1184), - [anon_sym___asm__] = ACTIONS(1184), - [sym_number_literal] = ACTIONS(1186), - [anon_sym_L_SQUOTE] = ACTIONS(1186), - [anon_sym_u_SQUOTE] = ACTIONS(1186), - [anon_sym_U_SQUOTE] = ACTIONS(1186), - [anon_sym_u8_SQUOTE] = ACTIONS(1186), - [anon_sym_SQUOTE] = ACTIONS(1186), - [anon_sym_L_DQUOTE] = ACTIONS(1186), - [anon_sym_u_DQUOTE] = ACTIONS(1186), - [anon_sym_U_DQUOTE] = ACTIONS(1186), - [anon_sym_u8_DQUOTE] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym_true] = ACTIONS(1184), - [sym_false] = ACTIONS(1184), - [anon_sym_NULL] = ACTIONS(1184), - [anon_sym_nullptr] = ACTIONS(1184), + [ts_builtin_sym_end] = ACTIONS(1141), + [sym_identifier] = ACTIONS(1139), + [aux_sym_preproc_include_token1] = ACTIONS(1139), + [aux_sym_preproc_def_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), + [sym_preproc_directive] = ACTIONS(1139), + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym___extension__] = ACTIONS(1139), + [anon_sym_typedef] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym___attribute__] = ACTIONS(1139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), + [anon_sym___declspec] = ACTIONS(1139), + [anon_sym___cdecl] = ACTIONS(1139), + [anon_sym___clrcall] = ACTIONS(1139), + [anon_sym___stdcall] = ACTIONS(1139), + [anon_sym___fastcall] = ACTIONS(1139), + [anon_sym___thiscall] = ACTIONS(1139), + [anon_sym___vectorcall] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1139), + [anon_sym_unsigned] = ACTIONS(1139), + [anon_sym_long] = ACTIONS(1139), + [anon_sym_short] = ACTIONS(1139), + [anon_sym_static] = ACTIONS(1139), + [anon_sym_auto] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_inline] = ACTIONS(1139), + [anon_sym___inline] = ACTIONS(1139), + [anon_sym___inline__] = ACTIONS(1139), + [anon_sym___forceinline] = ACTIONS(1139), + [anon_sym_thread_local] = ACTIONS(1139), + [anon_sym___thread] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_constexpr] = ACTIONS(1139), + [anon_sym_volatile] = ACTIONS(1139), + [anon_sym_restrict] = ACTIONS(1139), + [anon_sym___restrict__] = ACTIONS(1139), + [anon_sym__Atomic] = ACTIONS(1139), + [anon_sym__Noreturn] = ACTIONS(1139), + [anon_sym_noreturn] = ACTIONS(1139), + [anon_sym_alignas] = ACTIONS(1139), + [anon_sym__Alignas] = ACTIONS(1139), + [sym_primitive_type] = ACTIONS(1139), + [anon_sym_enum] = ACTIONS(1139), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_union] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_switch] = ACTIONS(1139), + [anon_sym_case] = ACTIONS(1139), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1139), + [anon_sym___leave] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_sizeof] = ACTIONS(1139), + [anon_sym___alignof__] = ACTIONS(1139), + [anon_sym___alignof] = ACTIONS(1139), + [anon_sym__alignof] = ACTIONS(1139), + [anon_sym_alignof] = ACTIONS(1139), + [anon_sym__Alignof] = ACTIONS(1139), + [anon_sym_offsetof] = ACTIONS(1139), + [anon_sym__Generic] = ACTIONS(1139), + [anon_sym_asm] = ACTIONS(1139), + [anon_sym___asm__] = ACTIONS(1139), + [sym_number_literal] = ACTIONS(1141), + [anon_sym_L_SQUOTE] = ACTIONS(1141), + [anon_sym_u_SQUOTE] = ACTIONS(1141), + [anon_sym_U_SQUOTE] = ACTIONS(1141), + [anon_sym_u8_SQUOTE] = ACTIONS(1141), + [anon_sym_SQUOTE] = ACTIONS(1141), + [anon_sym_L_DQUOTE] = ACTIONS(1141), + [anon_sym_u_DQUOTE] = ACTIONS(1141), + [anon_sym_U_DQUOTE] = ACTIONS(1141), + [anon_sym_u8_DQUOTE] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1141), + [sym_true] = ACTIONS(1139), + [sym_false] = ACTIONS(1139), + [anon_sym_NULL] = ACTIONS(1139), + [anon_sym_nullptr] = ACTIONS(1139), [sym_comment] = ACTIONS(3), }, [202] = { - [sym_identifier] = ACTIONS(1188), - [aux_sym_preproc_include_token1] = ACTIONS(1188), - [aux_sym_preproc_def_token1] = ACTIONS(1188), - [aux_sym_preproc_if_token1] = ACTIONS(1188), - [aux_sym_preproc_if_token2] = ACTIONS(1188), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1188), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1188), - [sym_preproc_directive] = ACTIONS(1188), - [anon_sym_LPAREN2] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_TILDE] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym___extension__] = ACTIONS(1188), - [anon_sym_typedef] = ACTIONS(1188), - [anon_sym_extern] = ACTIONS(1188), - [anon_sym___attribute__] = ACTIONS(1188), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1190), - [anon_sym___declspec] = ACTIONS(1188), - [anon_sym___cdecl] = ACTIONS(1188), - [anon_sym___clrcall] = ACTIONS(1188), - [anon_sym___stdcall] = ACTIONS(1188), - [anon_sym___fastcall] = ACTIONS(1188), - [anon_sym___thiscall] = ACTIONS(1188), - [anon_sym___vectorcall] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_signed] = ACTIONS(1188), - [anon_sym_unsigned] = ACTIONS(1188), - [anon_sym_long] = ACTIONS(1188), - [anon_sym_short] = ACTIONS(1188), - [anon_sym_static] = ACTIONS(1188), - [anon_sym_auto] = ACTIONS(1188), - [anon_sym_register] = ACTIONS(1188), - [anon_sym_inline] = ACTIONS(1188), - [anon_sym___inline] = ACTIONS(1188), - [anon_sym___inline__] = ACTIONS(1188), - [anon_sym___forceinline] = ACTIONS(1188), - [anon_sym_thread_local] = ACTIONS(1188), - [anon_sym___thread] = ACTIONS(1188), - [anon_sym_const] = ACTIONS(1188), - [anon_sym_constexpr] = ACTIONS(1188), - [anon_sym_volatile] = ACTIONS(1188), - [anon_sym_restrict] = ACTIONS(1188), - [anon_sym___restrict__] = ACTIONS(1188), - [anon_sym__Atomic] = ACTIONS(1188), - [anon_sym__Noreturn] = ACTIONS(1188), - [anon_sym_noreturn] = ACTIONS(1188), - [sym_primitive_type] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1188), - [anon_sym_struct] = ACTIONS(1188), - [anon_sym_union] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1188), - [anon_sym_else] = ACTIONS(1188), - [anon_sym_switch] = ACTIONS(1188), - [anon_sym_case] = ACTIONS(1188), - [anon_sym_default] = ACTIONS(1188), - [anon_sym_while] = ACTIONS(1188), - [anon_sym_do] = ACTIONS(1188), - [anon_sym_for] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1188), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1188), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1188), - [anon_sym___leave] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_sizeof] = ACTIONS(1188), - [anon_sym___alignof__] = ACTIONS(1188), - [anon_sym___alignof] = ACTIONS(1188), - [anon_sym__alignof] = ACTIONS(1188), - [anon_sym_alignof] = ACTIONS(1188), - [anon_sym__Alignof] = ACTIONS(1188), - [anon_sym_offsetof] = ACTIONS(1188), - [anon_sym__Generic] = ACTIONS(1188), - [anon_sym_asm] = ACTIONS(1188), - [anon_sym___asm__] = ACTIONS(1188), - [sym_number_literal] = ACTIONS(1190), - [anon_sym_L_SQUOTE] = ACTIONS(1190), - [anon_sym_u_SQUOTE] = ACTIONS(1190), - [anon_sym_U_SQUOTE] = ACTIONS(1190), - [anon_sym_u8_SQUOTE] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_L_DQUOTE] = ACTIONS(1190), - [anon_sym_u_DQUOTE] = ACTIONS(1190), - [anon_sym_U_DQUOTE] = ACTIONS(1190), - [anon_sym_u8_DQUOTE] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym_true] = ACTIONS(1188), - [sym_false] = ACTIONS(1188), - [anon_sym_NULL] = ACTIONS(1188), - [anon_sym_nullptr] = ACTIONS(1188), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [203] = { - [sym_identifier] = ACTIONS(1192), - [aux_sym_preproc_include_token1] = ACTIONS(1192), - [aux_sym_preproc_def_token1] = ACTIONS(1192), - [aux_sym_preproc_if_token1] = ACTIONS(1192), - [aux_sym_preproc_if_token2] = ACTIONS(1192), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1192), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1192), - [sym_preproc_directive] = ACTIONS(1192), - [anon_sym_LPAREN2] = ACTIONS(1194), - [anon_sym_BANG] = ACTIONS(1194), - [anon_sym_TILDE] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym___extension__] = ACTIONS(1192), - [anon_sym_typedef] = ACTIONS(1192), - [anon_sym_extern] = ACTIONS(1192), - [anon_sym___attribute__] = ACTIONS(1192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1194), - [anon_sym___declspec] = ACTIONS(1192), - [anon_sym___cdecl] = ACTIONS(1192), - [anon_sym___clrcall] = ACTIONS(1192), - [anon_sym___stdcall] = ACTIONS(1192), - [anon_sym___fastcall] = ACTIONS(1192), - [anon_sym___thiscall] = ACTIONS(1192), - [anon_sym___vectorcall] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_signed] = ACTIONS(1192), - [anon_sym_unsigned] = ACTIONS(1192), - [anon_sym_long] = ACTIONS(1192), - [anon_sym_short] = ACTIONS(1192), - [anon_sym_static] = ACTIONS(1192), - [anon_sym_auto] = ACTIONS(1192), - [anon_sym_register] = ACTIONS(1192), - [anon_sym_inline] = ACTIONS(1192), - [anon_sym___inline] = ACTIONS(1192), - [anon_sym___inline__] = ACTIONS(1192), - [anon_sym___forceinline] = ACTIONS(1192), - [anon_sym_thread_local] = ACTIONS(1192), - [anon_sym___thread] = ACTIONS(1192), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_constexpr] = ACTIONS(1192), - [anon_sym_volatile] = ACTIONS(1192), - [anon_sym_restrict] = ACTIONS(1192), - [anon_sym___restrict__] = ACTIONS(1192), - [anon_sym__Atomic] = ACTIONS(1192), - [anon_sym__Noreturn] = ACTIONS(1192), - [anon_sym_noreturn] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(1192), - [anon_sym_enum] = ACTIONS(1192), - [anon_sym_struct] = ACTIONS(1192), - [anon_sym_union] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1192), - [anon_sym_else] = ACTIONS(1192), - [anon_sym_switch] = ACTIONS(1192), - [anon_sym_case] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(1192), - [anon_sym_while] = ACTIONS(1192), - [anon_sym_do] = ACTIONS(1192), - [anon_sym_for] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1192), - [anon_sym_break] = ACTIONS(1192), - [anon_sym_continue] = ACTIONS(1192), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym___try] = ACTIONS(1192), - [anon_sym___leave] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_sizeof] = ACTIONS(1192), - [anon_sym___alignof__] = ACTIONS(1192), - [anon_sym___alignof] = ACTIONS(1192), - [anon_sym__alignof] = ACTIONS(1192), - [anon_sym_alignof] = ACTIONS(1192), - [anon_sym__Alignof] = ACTIONS(1192), - [anon_sym_offsetof] = ACTIONS(1192), - [anon_sym__Generic] = ACTIONS(1192), - [anon_sym_asm] = ACTIONS(1192), - [anon_sym___asm__] = ACTIONS(1192), - [sym_number_literal] = ACTIONS(1194), - [anon_sym_L_SQUOTE] = ACTIONS(1194), - [anon_sym_u_SQUOTE] = ACTIONS(1194), - [anon_sym_U_SQUOTE] = ACTIONS(1194), - [anon_sym_u8_SQUOTE] = ACTIONS(1194), - [anon_sym_SQUOTE] = ACTIONS(1194), - [anon_sym_L_DQUOTE] = ACTIONS(1194), - [anon_sym_u_DQUOTE] = ACTIONS(1194), - [anon_sym_U_DQUOTE] = ACTIONS(1194), - [anon_sym_u8_DQUOTE] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym_true] = ACTIONS(1192), - [sym_false] = ACTIONS(1192), - [anon_sym_NULL] = ACTIONS(1192), - [anon_sym_nullptr] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1243), + [aux_sym_preproc_def_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token2] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), + [sym_preproc_directive] = ACTIONS(1243), + [anon_sym_LPAREN2] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym___extension__] = ACTIONS(1243), + [anon_sym_typedef] = ACTIONS(1243), + [anon_sym_extern] = ACTIONS(1243), + [anon_sym___attribute__] = ACTIONS(1243), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), + [anon_sym___declspec] = ACTIONS(1243), + [anon_sym___cdecl] = ACTIONS(1243), + [anon_sym___clrcall] = ACTIONS(1243), + [anon_sym___stdcall] = ACTIONS(1243), + [anon_sym___fastcall] = ACTIONS(1243), + [anon_sym___thiscall] = ACTIONS(1243), + [anon_sym___vectorcall] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_signed] = ACTIONS(1243), + [anon_sym_unsigned] = ACTIONS(1243), + [anon_sym_long] = ACTIONS(1243), + [anon_sym_short] = ACTIONS(1243), + [anon_sym_static] = ACTIONS(1243), + [anon_sym_auto] = ACTIONS(1243), + [anon_sym_register] = ACTIONS(1243), + [anon_sym_inline] = ACTIONS(1243), + [anon_sym___inline] = ACTIONS(1243), + [anon_sym___inline__] = ACTIONS(1243), + [anon_sym___forceinline] = ACTIONS(1243), + [anon_sym_thread_local] = ACTIONS(1243), + [anon_sym___thread] = ACTIONS(1243), + [anon_sym_const] = ACTIONS(1243), + [anon_sym_constexpr] = ACTIONS(1243), + [anon_sym_volatile] = ACTIONS(1243), + [anon_sym_restrict] = ACTIONS(1243), + [anon_sym___restrict__] = ACTIONS(1243), + [anon_sym__Atomic] = ACTIONS(1243), + [anon_sym__Noreturn] = ACTIONS(1243), + [anon_sym_noreturn] = ACTIONS(1243), + [anon_sym_alignas] = ACTIONS(1243), + [anon_sym__Alignas] = ACTIONS(1243), + [sym_primitive_type] = ACTIONS(1243), + [anon_sym_enum] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_case] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_goto] = ACTIONS(1243), + [anon_sym___try] = ACTIONS(1243), + [anon_sym___leave] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_sizeof] = ACTIONS(1243), + [anon_sym___alignof__] = ACTIONS(1243), + [anon_sym___alignof] = ACTIONS(1243), + [anon_sym__alignof] = ACTIONS(1243), + [anon_sym_alignof] = ACTIONS(1243), + [anon_sym__Alignof] = ACTIONS(1243), + [anon_sym_offsetof] = ACTIONS(1243), + [anon_sym__Generic] = ACTIONS(1243), + [anon_sym_asm] = ACTIONS(1243), + [anon_sym___asm__] = ACTIONS(1243), + [sym_number_literal] = ACTIONS(1245), + [anon_sym_L_SQUOTE] = ACTIONS(1245), + [anon_sym_u_SQUOTE] = ACTIONS(1245), + [anon_sym_U_SQUOTE] = ACTIONS(1245), + [anon_sym_u8_SQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1245), + [anon_sym_L_DQUOTE] = ACTIONS(1245), + [anon_sym_u_DQUOTE] = ACTIONS(1245), + [anon_sym_U_DQUOTE] = ACTIONS(1245), + [anon_sym_u8_DQUOTE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_true] = ACTIONS(1243), + [sym_false] = ACTIONS(1243), + [anon_sym_NULL] = ACTIONS(1243), + [anon_sym_nullptr] = ACTIONS(1243), [sym_comment] = ACTIONS(3), }, [204] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1243), + [aux_sym_preproc_def_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token2] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), + [sym_preproc_directive] = ACTIONS(1243), + [anon_sym_LPAREN2] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym___extension__] = ACTIONS(1243), + [anon_sym_typedef] = ACTIONS(1243), + [anon_sym_extern] = ACTIONS(1243), + [anon_sym___attribute__] = ACTIONS(1243), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), + [anon_sym___declspec] = ACTIONS(1243), + [anon_sym___cdecl] = ACTIONS(1243), + [anon_sym___clrcall] = ACTIONS(1243), + [anon_sym___stdcall] = ACTIONS(1243), + [anon_sym___fastcall] = ACTIONS(1243), + [anon_sym___thiscall] = ACTIONS(1243), + [anon_sym___vectorcall] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_signed] = ACTIONS(1243), + [anon_sym_unsigned] = ACTIONS(1243), + [anon_sym_long] = ACTIONS(1243), + [anon_sym_short] = ACTIONS(1243), + [anon_sym_static] = ACTIONS(1243), + [anon_sym_auto] = ACTIONS(1243), + [anon_sym_register] = ACTIONS(1243), + [anon_sym_inline] = ACTIONS(1243), + [anon_sym___inline] = ACTIONS(1243), + [anon_sym___inline__] = ACTIONS(1243), + [anon_sym___forceinline] = ACTIONS(1243), + [anon_sym_thread_local] = ACTIONS(1243), + [anon_sym___thread] = ACTIONS(1243), + [anon_sym_const] = ACTIONS(1243), + [anon_sym_constexpr] = ACTIONS(1243), + [anon_sym_volatile] = ACTIONS(1243), + [anon_sym_restrict] = ACTIONS(1243), + [anon_sym___restrict__] = ACTIONS(1243), + [anon_sym__Atomic] = ACTIONS(1243), + [anon_sym__Noreturn] = ACTIONS(1243), + [anon_sym_noreturn] = ACTIONS(1243), + [anon_sym_alignas] = ACTIONS(1243), + [anon_sym__Alignas] = ACTIONS(1243), + [sym_primitive_type] = ACTIONS(1243), + [anon_sym_enum] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_case] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_goto] = ACTIONS(1243), + [anon_sym___try] = ACTIONS(1243), + [anon_sym___leave] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_sizeof] = ACTIONS(1243), + [anon_sym___alignof__] = ACTIONS(1243), + [anon_sym___alignof] = ACTIONS(1243), + [anon_sym__alignof] = ACTIONS(1243), + [anon_sym_alignof] = ACTIONS(1243), + [anon_sym__Alignof] = ACTIONS(1243), + [anon_sym_offsetof] = ACTIONS(1243), + [anon_sym__Generic] = ACTIONS(1243), + [anon_sym_asm] = ACTIONS(1243), + [anon_sym___asm__] = ACTIONS(1243), + [sym_number_literal] = ACTIONS(1245), + [anon_sym_L_SQUOTE] = ACTIONS(1245), + [anon_sym_u_SQUOTE] = ACTIONS(1245), + [anon_sym_U_SQUOTE] = ACTIONS(1245), + [anon_sym_u8_SQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1245), + [anon_sym_L_DQUOTE] = ACTIONS(1245), + [anon_sym_u_DQUOTE] = ACTIONS(1245), + [anon_sym_U_DQUOTE] = ACTIONS(1245), + [anon_sym_u8_DQUOTE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_true] = ACTIONS(1243), + [sym_false] = ACTIONS(1243), + [anon_sym_NULL] = ACTIONS(1243), + [anon_sym_nullptr] = ACTIONS(1243), [sym_comment] = ACTIONS(3), }, [205] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1239), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token2] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_LPAREN2] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym___extension__] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym___attribute__] = ACTIONS(1239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1239), + [anon_sym___cdecl] = ACTIONS(1239), + [anon_sym___clrcall] = ACTIONS(1239), + [anon_sym___stdcall] = ACTIONS(1239), + [anon_sym___fastcall] = ACTIONS(1239), + [anon_sym___thiscall] = ACTIONS(1239), + [anon_sym___vectorcall] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym___inline] = ACTIONS(1239), + [anon_sym___inline__] = ACTIONS(1239), + [anon_sym___forceinline] = ACTIONS(1239), + [anon_sym_thread_local] = ACTIONS(1239), + [anon_sym___thread] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_constexpr] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym___restrict__] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym__Noreturn] = ACTIONS(1239), + [anon_sym_noreturn] = ACTIONS(1239), + [anon_sym_alignas] = ACTIONS(1239), + [anon_sym__Alignas] = ACTIONS(1239), + [sym_primitive_type] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_switch] = ACTIONS(1239), + [anon_sym_case] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_goto] = ACTIONS(1239), + [anon_sym___try] = ACTIONS(1239), + [anon_sym___leave] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_sizeof] = ACTIONS(1239), + [anon_sym___alignof__] = ACTIONS(1239), + [anon_sym___alignof] = ACTIONS(1239), + [anon_sym__alignof] = ACTIONS(1239), + [anon_sym_alignof] = ACTIONS(1239), + [anon_sym__Alignof] = ACTIONS(1239), + [anon_sym_offsetof] = ACTIONS(1239), + [anon_sym__Generic] = ACTIONS(1239), + [anon_sym_asm] = ACTIONS(1239), + [anon_sym___asm__] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1241), + [anon_sym_L_SQUOTE] = ACTIONS(1241), + [anon_sym_u_SQUOTE] = ACTIONS(1241), + [anon_sym_U_SQUOTE] = ACTIONS(1241), + [anon_sym_u8_SQUOTE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_L_DQUOTE] = ACTIONS(1241), + [anon_sym_u_DQUOTE] = ACTIONS(1241), + [anon_sym_U_DQUOTE] = ACTIONS(1241), + [anon_sym_u8_DQUOTE] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [anon_sym_NULL] = ACTIONS(1239), + [anon_sym_nullptr] = ACTIONS(1239), [sym_comment] = ACTIONS(3), }, [206] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [207] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [208] = { - [sym_identifier] = ACTIONS(1196), - [aux_sym_preproc_include_token1] = ACTIONS(1196), - [aux_sym_preproc_def_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token2] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), - [sym_preproc_directive] = ACTIONS(1196), - [anon_sym_LPAREN2] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym___extension__] = ACTIONS(1196), - [anon_sym_typedef] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym___attribute__] = ACTIONS(1196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), - [anon_sym___declspec] = ACTIONS(1196), - [anon_sym___cdecl] = ACTIONS(1196), - [anon_sym___clrcall] = ACTIONS(1196), - [anon_sym___stdcall] = ACTIONS(1196), - [anon_sym___fastcall] = ACTIONS(1196), - [anon_sym___thiscall] = ACTIONS(1196), - [anon_sym___vectorcall] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_auto] = ACTIONS(1196), - [anon_sym_register] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym___inline] = ACTIONS(1196), - [anon_sym___inline__] = ACTIONS(1196), - [anon_sym___forceinline] = ACTIONS(1196), - [anon_sym_thread_local] = ACTIONS(1196), - [anon_sym___thread] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_constexpr] = ACTIONS(1196), - [anon_sym_volatile] = ACTIONS(1196), - [anon_sym_restrict] = ACTIONS(1196), - [anon_sym___restrict__] = ACTIONS(1196), - [anon_sym__Atomic] = ACTIONS(1196), - [anon_sym__Noreturn] = ACTIONS(1196), - [anon_sym_noreturn] = ACTIONS(1196), - [sym_primitive_type] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_case] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_goto] = ACTIONS(1196), - [anon_sym___try] = ACTIONS(1196), - [anon_sym___leave] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_sizeof] = ACTIONS(1196), - [anon_sym___alignof__] = ACTIONS(1196), - [anon_sym___alignof] = ACTIONS(1196), - [anon_sym__alignof] = ACTIONS(1196), - [anon_sym_alignof] = ACTIONS(1196), - [anon_sym__Alignof] = ACTIONS(1196), - [anon_sym_offsetof] = ACTIONS(1196), - [anon_sym__Generic] = ACTIONS(1196), - [anon_sym_asm] = ACTIONS(1196), - [anon_sym___asm__] = ACTIONS(1196), - [sym_number_literal] = ACTIONS(1198), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1198), - [anon_sym_u_DQUOTE] = ACTIONS(1198), - [anon_sym_U_DQUOTE] = ACTIONS(1198), - [anon_sym_u8_DQUOTE] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_true] = ACTIONS(1196), - [sym_false] = ACTIONS(1196), - [anon_sym_NULL] = ACTIONS(1196), - [anon_sym_nullptr] = ACTIONS(1196), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [209] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1239), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token2] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_LPAREN2] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym___extension__] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym___attribute__] = ACTIONS(1239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1239), + [anon_sym___cdecl] = ACTIONS(1239), + [anon_sym___clrcall] = ACTIONS(1239), + [anon_sym___stdcall] = ACTIONS(1239), + [anon_sym___fastcall] = ACTIONS(1239), + [anon_sym___thiscall] = ACTIONS(1239), + [anon_sym___vectorcall] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym___inline] = ACTIONS(1239), + [anon_sym___inline__] = ACTIONS(1239), + [anon_sym___forceinline] = ACTIONS(1239), + [anon_sym_thread_local] = ACTIONS(1239), + [anon_sym___thread] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_constexpr] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym___restrict__] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym__Noreturn] = ACTIONS(1239), + [anon_sym_noreturn] = ACTIONS(1239), + [anon_sym_alignas] = ACTIONS(1239), + [anon_sym__Alignas] = ACTIONS(1239), + [sym_primitive_type] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_switch] = ACTIONS(1239), + [anon_sym_case] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_goto] = ACTIONS(1239), + [anon_sym___try] = ACTIONS(1239), + [anon_sym___leave] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_sizeof] = ACTIONS(1239), + [anon_sym___alignof__] = ACTIONS(1239), + [anon_sym___alignof] = ACTIONS(1239), + [anon_sym__alignof] = ACTIONS(1239), + [anon_sym_alignof] = ACTIONS(1239), + [anon_sym__Alignof] = ACTIONS(1239), + [anon_sym_offsetof] = ACTIONS(1239), + [anon_sym__Generic] = ACTIONS(1239), + [anon_sym_asm] = ACTIONS(1239), + [anon_sym___asm__] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1241), + [anon_sym_L_SQUOTE] = ACTIONS(1241), + [anon_sym_u_SQUOTE] = ACTIONS(1241), + [anon_sym_U_SQUOTE] = ACTIONS(1241), + [anon_sym_u8_SQUOTE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_L_DQUOTE] = ACTIONS(1241), + [anon_sym_u_DQUOTE] = ACTIONS(1241), + [anon_sym_U_DQUOTE] = ACTIONS(1241), + [anon_sym_u8_DQUOTE] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [anon_sym_NULL] = ACTIONS(1239), + [anon_sym_nullptr] = ACTIONS(1239), [sym_comment] = ACTIONS(3), }, [210] = { - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token2] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym___extension__] = ACTIONS(1204), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym___inline] = ACTIONS(1204), - [anon_sym___inline__] = ACTIONS(1204), - [anon_sym___forceinline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym___thread] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym___try] = ACTIONS(1204), - [anon_sym___leave] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym___alignof__] = ACTIONS(1204), - [anon_sym___alignof] = ACTIONS(1204), - [anon_sym__alignof] = ACTIONS(1204), - [anon_sym_alignof] = ACTIONS(1204), - [anon_sym__Alignof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), + [ts_builtin_sym_end] = ACTIONS(1213), + [sym_identifier] = ACTIONS(1211), + [aux_sym_preproc_include_token1] = ACTIONS(1211), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1211), + [sym_preproc_directive] = ACTIONS(1211), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym___extension__] = ACTIONS(1211), + [anon_sym_typedef] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym___attribute__] = ACTIONS(1211), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym___declspec] = ACTIONS(1211), + [anon_sym___cdecl] = ACTIONS(1211), + [anon_sym___clrcall] = ACTIONS(1211), + [anon_sym___stdcall] = ACTIONS(1211), + [anon_sym___fastcall] = ACTIONS(1211), + [anon_sym___thiscall] = ACTIONS(1211), + [anon_sym___vectorcall] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_signed] = ACTIONS(1211), + [anon_sym_unsigned] = ACTIONS(1211), + [anon_sym_long] = ACTIONS(1211), + [anon_sym_short] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1211), + [anon_sym_auto] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_inline] = ACTIONS(1211), + [anon_sym___inline] = ACTIONS(1211), + [anon_sym___inline__] = ACTIONS(1211), + [anon_sym___forceinline] = ACTIONS(1211), + [anon_sym_thread_local] = ACTIONS(1211), + [anon_sym___thread] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_constexpr] = ACTIONS(1211), + [anon_sym_volatile] = ACTIONS(1211), + [anon_sym_restrict] = ACTIONS(1211), + [anon_sym___restrict__] = ACTIONS(1211), + [anon_sym__Atomic] = ACTIONS(1211), + [anon_sym__Noreturn] = ACTIONS(1211), + [anon_sym_noreturn] = ACTIONS(1211), + [anon_sym_alignas] = ACTIONS(1211), + [anon_sym__Alignas] = ACTIONS(1211), + [sym_primitive_type] = ACTIONS(1211), + [anon_sym_enum] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1211), + [anon_sym_union] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_else] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1211), + [anon_sym_case] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_goto] = ACTIONS(1211), + [anon_sym___try] = ACTIONS(1211), + [anon_sym___leave] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1211), + [anon_sym___alignof__] = ACTIONS(1211), + [anon_sym___alignof] = ACTIONS(1211), + [anon_sym__alignof] = ACTIONS(1211), + [anon_sym_alignof] = ACTIONS(1211), + [anon_sym__Alignof] = ACTIONS(1211), + [anon_sym_offsetof] = ACTIONS(1211), + [anon_sym__Generic] = ACTIONS(1211), + [anon_sym_asm] = ACTIONS(1211), + [anon_sym___asm__] = ACTIONS(1211), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_L_SQUOTE] = ACTIONS(1213), + [anon_sym_u_SQUOTE] = ACTIONS(1213), + [anon_sym_U_SQUOTE] = ACTIONS(1213), + [anon_sym_u8_SQUOTE] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_L_DQUOTE] = ACTIONS(1213), + [anon_sym_u_DQUOTE] = ACTIONS(1213), + [anon_sym_U_DQUOTE] = ACTIONS(1213), + [anon_sym_u8_DQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1211), + [sym_false] = ACTIONS(1211), + [anon_sym_NULL] = ACTIONS(1211), + [anon_sym_nullptr] = ACTIONS(1211), [sym_comment] = ACTIONS(3), }, [211] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [212] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [213] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1143), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token2] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym___extension__] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym___attribute__] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), + [anon_sym___declspec] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1143), + [anon_sym_unsigned] = ACTIONS(1143), + [anon_sym_long] = ACTIONS(1143), + [anon_sym_short] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_auto] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym___inline] = ACTIONS(1143), + [anon_sym___inline__] = ACTIONS(1143), + [anon_sym___forceinline] = ACTIONS(1143), + [anon_sym_thread_local] = ACTIONS(1143), + [anon_sym___thread] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym___restrict__] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym__Noreturn] = ACTIONS(1143), + [anon_sym_noreturn] = ACTIONS(1143), + [anon_sym_alignas] = ACTIONS(1143), + [anon_sym__Alignas] = ACTIONS(1143), + [sym_primitive_type] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_union] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(1143), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1143), + [anon_sym___try] = ACTIONS(1143), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_sizeof] = ACTIONS(1143), + [anon_sym___alignof__] = ACTIONS(1143), + [anon_sym___alignof] = ACTIONS(1143), + [anon_sym__alignof] = ACTIONS(1143), + [anon_sym_alignof] = ACTIONS(1143), + [anon_sym__Alignof] = ACTIONS(1143), + [anon_sym_offsetof] = ACTIONS(1143), + [anon_sym__Generic] = ACTIONS(1143), + [anon_sym_asm] = ACTIONS(1143), + [anon_sym___asm__] = ACTIONS(1143), + [sym_number_literal] = ACTIONS(1145), + [anon_sym_L_SQUOTE] = ACTIONS(1145), + [anon_sym_u_SQUOTE] = ACTIONS(1145), + [anon_sym_U_SQUOTE] = ACTIONS(1145), + [anon_sym_u8_SQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_L_DQUOTE] = ACTIONS(1145), + [anon_sym_u_DQUOTE] = ACTIONS(1145), + [anon_sym_U_DQUOTE] = ACTIONS(1145), + [anon_sym_u8_DQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_true] = ACTIONS(1143), + [sym_false] = ACTIONS(1143), + [anon_sym_NULL] = ACTIONS(1143), + [anon_sym_nullptr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), }, [214] = { - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token2] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym___extension__] = ACTIONS(1208), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym___inline] = ACTIONS(1208), - [anon_sym___inline__] = ACTIONS(1208), - [anon_sym___forceinline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym___thread] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym___try] = ACTIONS(1208), - [anon_sym___leave] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym___alignof__] = ACTIONS(1208), - [anon_sym___alignof] = ACTIONS(1208), - [anon_sym__alignof] = ACTIONS(1208), - [anon_sym_alignof] = ACTIONS(1208), - [anon_sym__Alignof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), + [sym_identifier] = ACTIONS(1127), + [aux_sym_preproc_include_token1] = ACTIONS(1127), + [aux_sym_preproc_def_token1] = ACTIONS(1127), + [aux_sym_preproc_if_token1] = ACTIONS(1127), + [aux_sym_preproc_if_token2] = ACTIONS(1127), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1127), + [sym_preproc_directive] = ACTIONS(1127), + [anon_sym_LPAREN2] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1129), + [anon_sym___extension__] = ACTIONS(1127), + [anon_sym_typedef] = ACTIONS(1127), + [anon_sym_extern] = ACTIONS(1127), + [anon_sym___attribute__] = ACTIONS(1127), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1129), + [anon_sym___declspec] = ACTIONS(1127), + [anon_sym___cdecl] = ACTIONS(1127), + [anon_sym___clrcall] = ACTIONS(1127), + [anon_sym___stdcall] = ACTIONS(1127), + [anon_sym___fastcall] = ACTIONS(1127), + [anon_sym___thiscall] = ACTIONS(1127), + [anon_sym___vectorcall] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_signed] = ACTIONS(1127), + [anon_sym_unsigned] = ACTIONS(1127), + [anon_sym_long] = ACTIONS(1127), + [anon_sym_short] = ACTIONS(1127), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_auto] = ACTIONS(1127), + [anon_sym_register] = ACTIONS(1127), + [anon_sym_inline] = ACTIONS(1127), + [anon_sym___inline] = ACTIONS(1127), + [anon_sym___inline__] = ACTIONS(1127), + [anon_sym___forceinline] = ACTIONS(1127), + [anon_sym_thread_local] = ACTIONS(1127), + [anon_sym___thread] = ACTIONS(1127), + [anon_sym_const] = ACTIONS(1127), + [anon_sym_constexpr] = ACTIONS(1127), + [anon_sym_volatile] = ACTIONS(1127), + [anon_sym_restrict] = ACTIONS(1127), + [anon_sym___restrict__] = ACTIONS(1127), + [anon_sym__Atomic] = ACTIONS(1127), + [anon_sym__Noreturn] = ACTIONS(1127), + [anon_sym_noreturn] = ACTIONS(1127), + [anon_sym_alignas] = ACTIONS(1127), + [anon_sym__Alignas] = ACTIONS(1127), + [sym_primitive_type] = ACTIONS(1127), + [anon_sym_enum] = ACTIONS(1127), + [anon_sym_struct] = ACTIONS(1127), + [anon_sym_union] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1127), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_switch] = ACTIONS(1127), + [anon_sym_case] = ACTIONS(1127), + [anon_sym_default] = ACTIONS(1127), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1127), + [anon_sym_for] = ACTIONS(1127), + [anon_sym_return] = ACTIONS(1127), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1127), + [anon_sym_goto] = ACTIONS(1127), + [anon_sym___try] = ACTIONS(1127), + [anon_sym___leave] = ACTIONS(1127), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_sizeof] = ACTIONS(1127), + [anon_sym___alignof__] = ACTIONS(1127), + [anon_sym___alignof] = ACTIONS(1127), + [anon_sym__alignof] = ACTIONS(1127), + [anon_sym_alignof] = ACTIONS(1127), + [anon_sym__Alignof] = ACTIONS(1127), + [anon_sym_offsetof] = ACTIONS(1127), + [anon_sym__Generic] = ACTIONS(1127), + [anon_sym_asm] = ACTIONS(1127), + [anon_sym___asm__] = ACTIONS(1127), + [sym_number_literal] = ACTIONS(1129), + [anon_sym_L_SQUOTE] = ACTIONS(1129), + [anon_sym_u_SQUOTE] = ACTIONS(1129), + [anon_sym_U_SQUOTE] = ACTIONS(1129), + [anon_sym_u8_SQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1129), + [anon_sym_L_DQUOTE] = ACTIONS(1129), + [anon_sym_u_DQUOTE] = ACTIONS(1129), + [anon_sym_U_DQUOTE] = ACTIONS(1129), + [anon_sym_u8_DQUOTE] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [anon_sym_NULL] = ACTIONS(1127), + [anon_sym_nullptr] = ACTIONS(1127), [sym_comment] = ACTIONS(3), }, [215] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1227), + [aux_sym_preproc_include_token1] = ACTIONS(1227), + [aux_sym_preproc_def_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token2] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), + [sym_preproc_directive] = ACTIONS(1227), + [anon_sym_LPAREN2] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym___extension__] = ACTIONS(1227), + [anon_sym_typedef] = ACTIONS(1227), + [anon_sym_extern] = ACTIONS(1227), + [anon_sym___attribute__] = ACTIONS(1227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1229), + [anon_sym___declspec] = ACTIONS(1227), + [anon_sym___cdecl] = ACTIONS(1227), + [anon_sym___clrcall] = ACTIONS(1227), + [anon_sym___stdcall] = ACTIONS(1227), + [anon_sym___fastcall] = ACTIONS(1227), + [anon_sym___thiscall] = ACTIONS(1227), + [anon_sym___vectorcall] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_signed] = ACTIONS(1227), + [anon_sym_unsigned] = ACTIONS(1227), + [anon_sym_long] = ACTIONS(1227), + [anon_sym_short] = ACTIONS(1227), + [anon_sym_static] = ACTIONS(1227), + [anon_sym_auto] = ACTIONS(1227), + [anon_sym_register] = ACTIONS(1227), + [anon_sym_inline] = ACTIONS(1227), + [anon_sym___inline] = ACTIONS(1227), + [anon_sym___inline__] = ACTIONS(1227), + [anon_sym___forceinline] = ACTIONS(1227), + [anon_sym_thread_local] = ACTIONS(1227), + [anon_sym___thread] = ACTIONS(1227), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_constexpr] = ACTIONS(1227), + [anon_sym_volatile] = ACTIONS(1227), + [anon_sym_restrict] = ACTIONS(1227), + [anon_sym___restrict__] = ACTIONS(1227), + [anon_sym__Atomic] = ACTIONS(1227), + [anon_sym__Noreturn] = ACTIONS(1227), + [anon_sym_noreturn] = ACTIONS(1227), + [anon_sym_alignas] = ACTIONS(1227), + [anon_sym__Alignas] = ACTIONS(1227), + [sym_primitive_type] = ACTIONS(1227), + [anon_sym_enum] = ACTIONS(1227), + [anon_sym_struct] = ACTIONS(1227), + [anon_sym_union] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_else] = ACTIONS(1227), + [anon_sym_switch] = ACTIONS(1227), + [anon_sym_case] = ACTIONS(1227), + [anon_sym_default] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_goto] = ACTIONS(1227), + [anon_sym___try] = ACTIONS(1227), + [anon_sym___leave] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_sizeof] = ACTIONS(1227), + [anon_sym___alignof__] = ACTIONS(1227), + [anon_sym___alignof] = ACTIONS(1227), + [anon_sym__alignof] = ACTIONS(1227), + [anon_sym_alignof] = ACTIONS(1227), + [anon_sym__Alignof] = ACTIONS(1227), + [anon_sym_offsetof] = ACTIONS(1227), + [anon_sym__Generic] = ACTIONS(1227), + [anon_sym_asm] = ACTIONS(1227), + [anon_sym___asm__] = ACTIONS(1227), + [sym_number_literal] = ACTIONS(1229), + [anon_sym_L_SQUOTE] = ACTIONS(1229), + [anon_sym_u_SQUOTE] = ACTIONS(1229), + [anon_sym_U_SQUOTE] = ACTIONS(1229), + [anon_sym_u8_SQUOTE] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_L_DQUOTE] = ACTIONS(1229), + [anon_sym_u_DQUOTE] = ACTIONS(1229), + [anon_sym_U_DQUOTE] = ACTIONS(1229), + [anon_sym_u8_DQUOTE] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym_true] = ACTIONS(1227), + [sym_false] = ACTIONS(1227), + [anon_sym_NULL] = ACTIONS(1227), + [anon_sym_nullptr] = ACTIONS(1227), [sym_comment] = ACTIONS(3), }, [216] = { - [sym_identifier] = ACTIONS(1224), - [aux_sym_preproc_include_token1] = ACTIONS(1224), - [aux_sym_preproc_def_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token2] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), - [sym_preproc_directive] = ACTIONS(1224), - [anon_sym_LPAREN2] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym___extension__] = ACTIONS(1224), - [anon_sym_typedef] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym___attribute__] = ACTIONS(1224), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), - [anon_sym___declspec] = ACTIONS(1224), - [anon_sym___cdecl] = ACTIONS(1224), - [anon_sym___clrcall] = ACTIONS(1224), - [anon_sym___stdcall] = ACTIONS(1224), - [anon_sym___fastcall] = ACTIONS(1224), - [anon_sym___thiscall] = ACTIONS(1224), - [anon_sym___vectorcall] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_auto] = ACTIONS(1224), - [anon_sym_register] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym___inline] = ACTIONS(1224), - [anon_sym___inline__] = ACTIONS(1224), - [anon_sym___forceinline] = ACTIONS(1224), - [anon_sym_thread_local] = ACTIONS(1224), - [anon_sym___thread] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_constexpr] = ACTIONS(1224), - [anon_sym_volatile] = ACTIONS(1224), - [anon_sym_restrict] = ACTIONS(1224), - [anon_sym___restrict__] = ACTIONS(1224), - [anon_sym__Atomic] = ACTIONS(1224), - [anon_sym__Noreturn] = ACTIONS(1224), - [anon_sym_noreturn] = ACTIONS(1224), - [sym_primitive_type] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1224), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_goto] = ACTIONS(1224), - [anon_sym___try] = ACTIONS(1224), - [anon_sym___leave] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1224), - [anon_sym___alignof__] = ACTIONS(1224), - [anon_sym___alignof] = ACTIONS(1224), - [anon_sym__alignof] = ACTIONS(1224), - [anon_sym_alignof] = ACTIONS(1224), - [anon_sym__Alignof] = ACTIONS(1224), - [anon_sym_offsetof] = ACTIONS(1224), - [anon_sym__Generic] = ACTIONS(1224), - [anon_sym_asm] = ACTIONS(1224), - [anon_sym___asm__] = ACTIONS(1224), - [sym_number_literal] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1226), - [anon_sym_u_SQUOTE] = ACTIONS(1226), - [anon_sym_U_SQUOTE] = ACTIONS(1226), - [anon_sym_u8_SQUOTE] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_L_DQUOTE] = ACTIONS(1226), - [anon_sym_u_DQUOTE] = ACTIONS(1226), - [anon_sym_U_DQUOTE] = ACTIONS(1226), - [anon_sym_u8_DQUOTE] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_true] = ACTIONS(1224), - [sym_false] = ACTIONS(1224), - [anon_sym_NULL] = ACTIONS(1224), - [anon_sym_nullptr] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1219), + [aux_sym_preproc_include_token1] = ACTIONS(1219), + [aux_sym_preproc_def_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token2] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), + [sym_preproc_directive] = ACTIONS(1219), + [anon_sym_LPAREN2] = ACTIONS(1221), + [anon_sym_BANG] = ACTIONS(1221), + [anon_sym_TILDE] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym___extension__] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1219), + [anon_sym_extern] = ACTIONS(1219), + [anon_sym___attribute__] = ACTIONS(1219), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), + [anon_sym___declspec] = ACTIONS(1219), + [anon_sym___cdecl] = ACTIONS(1219), + [anon_sym___clrcall] = ACTIONS(1219), + [anon_sym___stdcall] = ACTIONS(1219), + [anon_sym___fastcall] = ACTIONS(1219), + [anon_sym___thiscall] = ACTIONS(1219), + [anon_sym___vectorcall] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_signed] = ACTIONS(1219), + [anon_sym_unsigned] = ACTIONS(1219), + [anon_sym_long] = ACTIONS(1219), + [anon_sym_short] = ACTIONS(1219), + [anon_sym_static] = ACTIONS(1219), + [anon_sym_auto] = ACTIONS(1219), + [anon_sym_register] = ACTIONS(1219), + [anon_sym_inline] = ACTIONS(1219), + [anon_sym___inline] = ACTIONS(1219), + [anon_sym___inline__] = ACTIONS(1219), + [anon_sym___forceinline] = ACTIONS(1219), + [anon_sym_thread_local] = ACTIONS(1219), + [anon_sym___thread] = ACTIONS(1219), + [anon_sym_const] = ACTIONS(1219), + [anon_sym_constexpr] = ACTIONS(1219), + [anon_sym_volatile] = ACTIONS(1219), + [anon_sym_restrict] = ACTIONS(1219), + [anon_sym___restrict__] = ACTIONS(1219), + [anon_sym__Atomic] = ACTIONS(1219), + [anon_sym__Noreturn] = ACTIONS(1219), + [anon_sym_noreturn] = ACTIONS(1219), + [anon_sym_alignas] = ACTIONS(1219), + [anon_sym__Alignas] = ACTIONS(1219), + [sym_primitive_type] = ACTIONS(1219), + [anon_sym_enum] = ACTIONS(1219), + [anon_sym_struct] = ACTIONS(1219), + [anon_sym_union] = ACTIONS(1219), + [anon_sym_if] = ACTIONS(1219), + [anon_sym_else] = ACTIONS(1219), + [anon_sym_switch] = ACTIONS(1219), + [anon_sym_case] = ACTIONS(1219), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1219), + [anon_sym_for] = ACTIONS(1219), + [anon_sym_return] = ACTIONS(1219), + [anon_sym_break] = ACTIONS(1219), + [anon_sym_continue] = ACTIONS(1219), + [anon_sym_goto] = ACTIONS(1219), + [anon_sym___try] = ACTIONS(1219), + [anon_sym___leave] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1219), + [anon_sym___alignof__] = ACTIONS(1219), + [anon_sym___alignof] = ACTIONS(1219), + [anon_sym__alignof] = ACTIONS(1219), + [anon_sym_alignof] = ACTIONS(1219), + [anon_sym__Alignof] = ACTIONS(1219), + [anon_sym_offsetof] = ACTIONS(1219), + [anon_sym__Generic] = ACTIONS(1219), + [anon_sym_asm] = ACTIONS(1219), + [anon_sym___asm__] = ACTIONS(1219), + [sym_number_literal] = ACTIONS(1221), + [anon_sym_L_SQUOTE] = ACTIONS(1221), + [anon_sym_u_SQUOTE] = ACTIONS(1221), + [anon_sym_U_SQUOTE] = ACTIONS(1221), + [anon_sym_u8_SQUOTE] = ACTIONS(1221), + [anon_sym_SQUOTE] = ACTIONS(1221), + [anon_sym_L_DQUOTE] = ACTIONS(1221), + [anon_sym_u_DQUOTE] = ACTIONS(1221), + [anon_sym_U_DQUOTE] = ACTIONS(1221), + [anon_sym_u8_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym_true] = ACTIONS(1219), + [sym_false] = ACTIONS(1219), + [anon_sym_NULL] = ACTIONS(1219), + [anon_sym_nullptr] = ACTIONS(1219), [sym_comment] = ACTIONS(3), }, [217] = { - [ts_builtin_sym_end] = ACTIONS(1174), - [sym_identifier] = ACTIONS(1172), - [aux_sym_preproc_include_token1] = ACTIONS(1172), - [aux_sym_preproc_def_token1] = ACTIONS(1172), - [aux_sym_preproc_if_token1] = ACTIONS(1172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1172), - [sym_preproc_directive] = ACTIONS(1172), - [anon_sym_LPAREN2] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_TILDE] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym___extension__] = ACTIONS(1172), - [anon_sym_typedef] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym___attribute__] = ACTIONS(1172), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1174), - [anon_sym___declspec] = ACTIONS(1172), - [anon_sym___cdecl] = ACTIONS(1172), - [anon_sym___clrcall] = ACTIONS(1172), - [anon_sym___stdcall] = ACTIONS(1172), - [anon_sym___fastcall] = ACTIONS(1172), - [anon_sym___thiscall] = ACTIONS(1172), - [anon_sym___vectorcall] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_signed] = ACTIONS(1172), - [anon_sym_unsigned] = ACTIONS(1172), - [anon_sym_long] = ACTIONS(1172), - [anon_sym_short] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1172), - [anon_sym_auto] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_inline] = ACTIONS(1172), - [anon_sym___inline] = ACTIONS(1172), - [anon_sym___inline__] = ACTIONS(1172), - [anon_sym___forceinline] = ACTIONS(1172), - [anon_sym_thread_local] = ACTIONS(1172), - [anon_sym___thread] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_constexpr] = ACTIONS(1172), - [anon_sym_volatile] = ACTIONS(1172), - [anon_sym_restrict] = ACTIONS(1172), - [anon_sym___restrict__] = ACTIONS(1172), - [anon_sym__Atomic] = ACTIONS(1172), - [anon_sym__Noreturn] = ACTIONS(1172), - [anon_sym_noreturn] = ACTIONS(1172), - [sym_primitive_type] = ACTIONS(1172), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_struct] = ACTIONS(1172), - [anon_sym_union] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_else] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1172), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_goto] = ACTIONS(1172), - [anon_sym___try] = ACTIONS(1172), - [anon_sym___leave] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_sizeof] = ACTIONS(1172), - [anon_sym___alignof__] = ACTIONS(1172), - [anon_sym___alignof] = ACTIONS(1172), - [anon_sym__alignof] = ACTIONS(1172), - [anon_sym_alignof] = ACTIONS(1172), - [anon_sym__Alignof] = ACTIONS(1172), - [anon_sym_offsetof] = ACTIONS(1172), - [anon_sym__Generic] = ACTIONS(1172), - [anon_sym_asm] = ACTIONS(1172), - [anon_sym___asm__] = ACTIONS(1172), - [sym_number_literal] = ACTIONS(1174), - [anon_sym_L_SQUOTE] = ACTIONS(1174), - [anon_sym_u_SQUOTE] = ACTIONS(1174), - [anon_sym_U_SQUOTE] = ACTIONS(1174), - [anon_sym_u8_SQUOTE] = ACTIONS(1174), - [anon_sym_SQUOTE] = ACTIONS(1174), - [anon_sym_L_DQUOTE] = ACTIONS(1174), - [anon_sym_u_DQUOTE] = ACTIONS(1174), - [anon_sym_U_DQUOTE] = ACTIONS(1174), - [anon_sym_u8_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1174), - [sym_true] = ACTIONS(1172), - [sym_false] = ACTIONS(1172), - [anon_sym_NULL] = ACTIONS(1172), - [anon_sym_nullptr] = ACTIONS(1172), + [ts_builtin_sym_end] = ACTIONS(1209), + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, [218] = { - [ts_builtin_sym_end] = ACTIONS(1170), - [sym_identifier] = ACTIONS(1168), - [aux_sym_preproc_include_token1] = ACTIONS(1168), - [aux_sym_preproc_def_token1] = ACTIONS(1168), - [aux_sym_preproc_if_token1] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1168), - [sym_preproc_directive] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1170), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym___extension__] = ACTIONS(1168), - [anon_sym_typedef] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym___attribute__] = ACTIONS(1168), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1170), - [anon_sym___declspec] = ACTIONS(1168), - [anon_sym___cdecl] = ACTIONS(1168), - [anon_sym___clrcall] = ACTIONS(1168), - [anon_sym___stdcall] = ACTIONS(1168), - [anon_sym___fastcall] = ACTIONS(1168), - [anon_sym___thiscall] = ACTIONS(1168), - [anon_sym___vectorcall] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_signed] = ACTIONS(1168), - [anon_sym_unsigned] = ACTIONS(1168), - [anon_sym_long] = ACTIONS(1168), - [anon_sym_short] = ACTIONS(1168), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_auto] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_inline] = ACTIONS(1168), - [anon_sym___inline] = ACTIONS(1168), - [anon_sym___inline__] = ACTIONS(1168), - [anon_sym___forceinline] = ACTIONS(1168), - [anon_sym_thread_local] = ACTIONS(1168), - [anon_sym___thread] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_constexpr] = ACTIONS(1168), - [anon_sym_volatile] = ACTIONS(1168), - [anon_sym_restrict] = ACTIONS(1168), - [anon_sym___restrict__] = ACTIONS(1168), - [anon_sym__Atomic] = ACTIONS(1168), - [anon_sym__Noreturn] = ACTIONS(1168), - [anon_sym_noreturn] = ACTIONS(1168), - [sym_primitive_type] = ACTIONS(1168), - [anon_sym_enum] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1168), - [anon_sym_union] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1168), - [anon_sym_case] = ACTIONS(1168), - [anon_sym_default] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_goto] = ACTIONS(1168), - [anon_sym___try] = ACTIONS(1168), - [anon_sym___leave] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_sizeof] = ACTIONS(1168), - [anon_sym___alignof__] = ACTIONS(1168), - [anon_sym___alignof] = ACTIONS(1168), - [anon_sym__alignof] = ACTIONS(1168), - [anon_sym_alignof] = ACTIONS(1168), - [anon_sym__Alignof] = ACTIONS(1168), - [anon_sym_offsetof] = ACTIONS(1168), - [anon_sym__Generic] = ACTIONS(1168), - [anon_sym_asm] = ACTIONS(1168), - [anon_sym___asm__] = ACTIONS(1168), - [sym_number_literal] = ACTIONS(1170), - [anon_sym_L_SQUOTE] = ACTIONS(1170), - [anon_sym_u_SQUOTE] = ACTIONS(1170), - [anon_sym_U_SQUOTE] = ACTIONS(1170), - [anon_sym_u8_SQUOTE] = ACTIONS(1170), - [anon_sym_SQUOTE] = ACTIONS(1170), - [anon_sym_L_DQUOTE] = ACTIONS(1170), - [anon_sym_u_DQUOTE] = ACTIONS(1170), - [anon_sym_U_DQUOTE] = ACTIONS(1170), - [anon_sym_u8_DQUOTE] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1170), - [sym_true] = ACTIONS(1168), - [sym_false] = ACTIONS(1168), - [anon_sym_NULL] = ACTIONS(1168), - [anon_sym_nullptr] = ACTIONS(1168), + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token2] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, [219] = { - [ts_builtin_sym_end] = ACTIONS(1170), - [sym_identifier] = ACTIONS(1168), - [aux_sym_preproc_include_token1] = ACTIONS(1168), - [aux_sym_preproc_def_token1] = ACTIONS(1168), - [aux_sym_preproc_if_token1] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1168), - [sym_preproc_directive] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1170), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym___extension__] = ACTIONS(1168), - [anon_sym_typedef] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym___attribute__] = ACTIONS(1168), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1170), - [anon_sym___declspec] = ACTIONS(1168), - [anon_sym___cdecl] = ACTIONS(1168), - [anon_sym___clrcall] = ACTIONS(1168), - [anon_sym___stdcall] = ACTIONS(1168), - [anon_sym___fastcall] = ACTIONS(1168), - [anon_sym___thiscall] = ACTIONS(1168), - [anon_sym___vectorcall] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_signed] = ACTIONS(1168), - [anon_sym_unsigned] = ACTIONS(1168), - [anon_sym_long] = ACTIONS(1168), - [anon_sym_short] = ACTIONS(1168), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_auto] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_inline] = ACTIONS(1168), - [anon_sym___inline] = ACTIONS(1168), - [anon_sym___inline__] = ACTIONS(1168), - [anon_sym___forceinline] = ACTIONS(1168), - [anon_sym_thread_local] = ACTIONS(1168), - [anon_sym___thread] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_constexpr] = ACTIONS(1168), - [anon_sym_volatile] = ACTIONS(1168), - [anon_sym_restrict] = ACTIONS(1168), - [anon_sym___restrict__] = ACTIONS(1168), - [anon_sym__Atomic] = ACTIONS(1168), - [anon_sym__Noreturn] = ACTIONS(1168), - [anon_sym_noreturn] = ACTIONS(1168), - [sym_primitive_type] = ACTIONS(1168), - [anon_sym_enum] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1168), - [anon_sym_union] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1168), - [anon_sym_case] = ACTIONS(1168), - [anon_sym_default] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_goto] = ACTIONS(1168), - [anon_sym___try] = ACTIONS(1168), - [anon_sym___leave] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_sizeof] = ACTIONS(1168), - [anon_sym___alignof__] = ACTIONS(1168), - [anon_sym___alignof] = ACTIONS(1168), - [anon_sym__alignof] = ACTIONS(1168), - [anon_sym_alignof] = ACTIONS(1168), - [anon_sym__Alignof] = ACTIONS(1168), - [anon_sym_offsetof] = ACTIONS(1168), - [anon_sym__Generic] = ACTIONS(1168), - [anon_sym_asm] = ACTIONS(1168), - [anon_sym___asm__] = ACTIONS(1168), - [sym_number_literal] = ACTIONS(1170), - [anon_sym_L_SQUOTE] = ACTIONS(1170), - [anon_sym_u_SQUOTE] = ACTIONS(1170), - [anon_sym_U_SQUOTE] = ACTIONS(1170), - [anon_sym_u8_SQUOTE] = ACTIONS(1170), - [anon_sym_SQUOTE] = ACTIONS(1170), - [anon_sym_L_DQUOTE] = ACTIONS(1170), - [anon_sym_u_DQUOTE] = ACTIONS(1170), - [anon_sym_U_DQUOTE] = ACTIONS(1170), - [anon_sym_u8_DQUOTE] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1170), - [sym_true] = ACTIONS(1168), - [sym_false] = ACTIONS(1168), - [anon_sym_NULL] = ACTIONS(1168), - [anon_sym_nullptr] = ACTIONS(1168), + [ts_builtin_sym_end] = ACTIONS(1201), + [sym_identifier] = ACTIONS(1199), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), + [sym_preproc_directive] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1199), + [anon_sym_extern] = ACTIONS(1199), + [anon_sym___attribute__] = ACTIONS(1199), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1199), + [anon_sym___cdecl] = ACTIONS(1199), + [anon_sym___clrcall] = ACTIONS(1199), + [anon_sym___stdcall] = ACTIONS(1199), + [anon_sym___fastcall] = ACTIONS(1199), + [anon_sym___thiscall] = ACTIONS(1199), + [anon_sym___vectorcall] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1199), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_auto] = ACTIONS(1199), + [anon_sym_register] = ACTIONS(1199), + [anon_sym_inline] = ACTIONS(1199), + [anon_sym___inline] = ACTIONS(1199), + [anon_sym___inline__] = ACTIONS(1199), + [anon_sym___forceinline] = ACTIONS(1199), + [anon_sym_thread_local] = ACTIONS(1199), + [anon_sym___thread] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(1199), + [anon_sym_constexpr] = ACTIONS(1199), + [anon_sym_volatile] = ACTIONS(1199), + [anon_sym_restrict] = ACTIONS(1199), + [anon_sym___restrict__] = ACTIONS(1199), + [anon_sym__Atomic] = ACTIONS(1199), + [anon_sym__Noreturn] = ACTIONS(1199), + [anon_sym_noreturn] = ACTIONS(1199), + [anon_sym_alignas] = ACTIONS(1199), + [anon_sym__Alignas] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1199), + [anon_sym_enum] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_switch] = ACTIONS(1199), + [anon_sym_case] = ACTIONS(1199), + [anon_sym_default] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [anon_sym_do] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1199), + [anon_sym___try] = ACTIONS(1199), + [anon_sym___leave] = ACTIONS(1199), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1199), + [anon_sym___alignof__] = ACTIONS(1199), + [anon_sym___alignof] = ACTIONS(1199), + [anon_sym__alignof] = ACTIONS(1199), + [anon_sym_alignof] = ACTIONS(1199), + [anon_sym__Alignof] = ACTIONS(1199), + [anon_sym_offsetof] = ACTIONS(1199), + [anon_sym__Generic] = ACTIONS(1199), + [anon_sym_asm] = ACTIONS(1199), + [anon_sym___asm__] = ACTIONS(1199), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1199), + [sym_false] = ACTIONS(1199), + [anon_sym_NULL] = ACTIONS(1199), + [anon_sym_nullptr] = ACTIONS(1199), [sym_comment] = ACTIONS(3), }, [220] = { - [ts_builtin_sym_end] = ACTIONS(1158), - [sym_identifier] = ACTIONS(1156), - [aux_sym_preproc_include_token1] = ACTIONS(1156), - [aux_sym_preproc_def_token1] = ACTIONS(1156), - [aux_sym_preproc_if_token1] = ACTIONS(1156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1156), - [sym_preproc_directive] = ACTIONS(1156), - [anon_sym_LPAREN2] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(1158), - [anon_sym_TILDE] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_AMP] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym___extension__] = ACTIONS(1156), - [anon_sym_typedef] = ACTIONS(1156), - [anon_sym_extern] = ACTIONS(1156), - [anon_sym___attribute__] = ACTIONS(1156), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1158), - [anon_sym___declspec] = ACTIONS(1156), - [anon_sym___cdecl] = ACTIONS(1156), - [anon_sym___clrcall] = ACTIONS(1156), - [anon_sym___stdcall] = ACTIONS(1156), - [anon_sym___fastcall] = ACTIONS(1156), - [anon_sym___thiscall] = ACTIONS(1156), - [anon_sym___vectorcall] = ACTIONS(1156), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_signed] = ACTIONS(1156), - [anon_sym_unsigned] = ACTIONS(1156), - [anon_sym_long] = ACTIONS(1156), - [anon_sym_short] = ACTIONS(1156), - [anon_sym_static] = ACTIONS(1156), - [anon_sym_auto] = ACTIONS(1156), - [anon_sym_register] = ACTIONS(1156), - [anon_sym_inline] = ACTIONS(1156), - [anon_sym___inline] = ACTIONS(1156), - [anon_sym___inline__] = ACTIONS(1156), - [anon_sym___forceinline] = ACTIONS(1156), - [anon_sym_thread_local] = ACTIONS(1156), - [anon_sym___thread] = ACTIONS(1156), - [anon_sym_const] = ACTIONS(1156), - [anon_sym_constexpr] = ACTIONS(1156), - [anon_sym_volatile] = ACTIONS(1156), - [anon_sym_restrict] = ACTIONS(1156), - [anon_sym___restrict__] = ACTIONS(1156), - [anon_sym__Atomic] = ACTIONS(1156), - [anon_sym__Noreturn] = ACTIONS(1156), - [anon_sym_noreturn] = ACTIONS(1156), - [sym_primitive_type] = ACTIONS(1156), - [anon_sym_enum] = ACTIONS(1156), - [anon_sym_struct] = ACTIONS(1156), - [anon_sym_union] = ACTIONS(1156), - [anon_sym_if] = ACTIONS(1156), - [anon_sym_else] = ACTIONS(1156), - [anon_sym_switch] = ACTIONS(1156), - [anon_sym_case] = ACTIONS(1156), - [anon_sym_default] = ACTIONS(1156), - [anon_sym_while] = ACTIONS(1156), - [anon_sym_do] = ACTIONS(1156), - [anon_sym_for] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_continue] = ACTIONS(1156), - [anon_sym_goto] = ACTIONS(1156), - [anon_sym___try] = ACTIONS(1156), - [anon_sym___leave] = ACTIONS(1156), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_sizeof] = ACTIONS(1156), - [anon_sym___alignof__] = ACTIONS(1156), - [anon_sym___alignof] = ACTIONS(1156), - [anon_sym__alignof] = ACTIONS(1156), - [anon_sym_alignof] = ACTIONS(1156), - [anon_sym__Alignof] = ACTIONS(1156), - [anon_sym_offsetof] = ACTIONS(1156), - [anon_sym__Generic] = ACTIONS(1156), - [anon_sym_asm] = ACTIONS(1156), - [anon_sym___asm__] = ACTIONS(1156), - [sym_number_literal] = ACTIONS(1158), - [anon_sym_L_SQUOTE] = ACTIONS(1158), - [anon_sym_u_SQUOTE] = ACTIONS(1158), - [anon_sym_U_SQUOTE] = ACTIONS(1158), - [anon_sym_u8_SQUOTE] = ACTIONS(1158), - [anon_sym_SQUOTE] = ACTIONS(1158), - [anon_sym_L_DQUOTE] = ACTIONS(1158), - [anon_sym_u_DQUOTE] = ACTIONS(1158), - [anon_sym_U_DQUOTE] = ACTIONS(1158), - [anon_sym_u8_DQUOTE] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym_true] = ACTIONS(1156), - [sym_false] = ACTIONS(1156), - [anon_sym_NULL] = ACTIONS(1156), - [anon_sym_nullptr] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1143), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token2] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym___extension__] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym___attribute__] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), + [anon_sym___declspec] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1143), + [anon_sym_unsigned] = ACTIONS(1143), + [anon_sym_long] = ACTIONS(1143), + [anon_sym_short] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_auto] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym___inline] = ACTIONS(1143), + [anon_sym___inline__] = ACTIONS(1143), + [anon_sym___forceinline] = ACTIONS(1143), + [anon_sym_thread_local] = ACTIONS(1143), + [anon_sym___thread] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym___restrict__] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym__Noreturn] = ACTIONS(1143), + [anon_sym_noreturn] = ACTIONS(1143), + [anon_sym_alignas] = ACTIONS(1143), + [anon_sym__Alignas] = ACTIONS(1143), + [sym_primitive_type] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_union] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(1143), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1143), + [anon_sym___try] = ACTIONS(1143), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_sizeof] = ACTIONS(1143), + [anon_sym___alignof__] = ACTIONS(1143), + [anon_sym___alignof] = ACTIONS(1143), + [anon_sym__alignof] = ACTIONS(1143), + [anon_sym_alignof] = ACTIONS(1143), + [anon_sym__Alignof] = ACTIONS(1143), + [anon_sym_offsetof] = ACTIONS(1143), + [anon_sym__Generic] = ACTIONS(1143), + [anon_sym_asm] = ACTIONS(1143), + [anon_sym___asm__] = ACTIONS(1143), + [sym_number_literal] = ACTIONS(1145), + [anon_sym_L_SQUOTE] = ACTIONS(1145), + [anon_sym_u_SQUOTE] = ACTIONS(1145), + [anon_sym_U_SQUOTE] = ACTIONS(1145), + [anon_sym_u8_SQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_L_DQUOTE] = ACTIONS(1145), + [anon_sym_u_DQUOTE] = ACTIONS(1145), + [anon_sym_U_DQUOTE] = ACTIONS(1145), + [anon_sym_u8_DQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_true] = ACTIONS(1143), + [sym_false] = ACTIONS(1143), + [anon_sym_NULL] = ACTIONS(1143), + [anon_sym_nullptr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), }, [221] = { - [sym_identifier] = ACTIONS(1212), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token2] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym___extension__] = ACTIONS(1212), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym___inline] = ACTIONS(1212), - [anon_sym___inline__] = ACTIONS(1212), - [anon_sym___forceinline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym___thread] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1212), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym___try] = ACTIONS(1212), - [anon_sym___leave] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym___alignof__] = ACTIONS(1212), - [anon_sym___alignof] = ACTIONS(1212), - [anon_sym__alignof] = ACTIONS(1212), - [anon_sym_alignof] = ACTIONS(1212), - [anon_sym__Alignof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1187), + [aux_sym_preproc_include_token1] = ACTIONS(1187), + [aux_sym_preproc_def_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token2] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), + [sym_preproc_directive] = ACTIONS(1187), + [anon_sym_LPAREN2] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym___extension__] = ACTIONS(1187), + [anon_sym_typedef] = ACTIONS(1187), + [anon_sym_extern] = ACTIONS(1187), + [anon_sym___attribute__] = ACTIONS(1187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), + [anon_sym___declspec] = ACTIONS(1187), + [anon_sym___cdecl] = ACTIONS(1187), + [anon_sym___clrcall] = ACTIONS(1187), + [anon_sym___stdcall] = ACTIONS(1187), + [anon_sym___fastcall] = ACTIONS(1187), + [anon_sym___thiscall] = ACTIONS(1187), + [anon_sym___vectorcall] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_signed] = ACTIONS(1187), + [anon_sym_unsigned] = ACTIONS(1187), + [anon_sym_long] = ACTIONS(1187), + [anon_sym_short] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1187), + [anon_sym_auto] = ACTIONS(1187), + [anon_sym_register] = ACTIONS(1187), + [anon_sym_inline] = ACTIONS(1187), + [anon_sym___inline] = ACTIONS(1187), + [anon_sym___inline__] = ACTIONS(1187), + [anon_sym___forceinline] = ACTIONS(1187), + [anon_sym_thread_local] = ACTIONS(1187), + [anon_sym___thread] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_constexpr] = ACTIONS(1187), + [anon_sym_volatile] = ACTIONS(1187), + [anon_sym_restrict] = ACTIONS(1187), + [anon_sym___restrict__] = ACTIONS(1187), + [anon_sym__Atomic] = ACTIONS(1187), + [anon_sym__Noreturn] = ACTIONS(1187), + [anon_sym_noreturn] = ACTIONS(1187), + [anon_sym_alignas] = ACTIONS(1187), + [anon_sym__Alignas] = ACTIONS(1187), + [sym_primitive_type] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_union] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_switch] = ACTIONS(1187), + [anon_sym_case] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_goto] = ACTIONS(1187), + [anon_sym___try] = ACTIONS(1187), + [anon_sym___leave] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1187), + [anon_sym___alignof__] = ACTIONS(1187), + [anon_sym___alignof] = ACTIONS(1187), + [anon_sym__alignof] = ACTIONS(1187), + [anon_sym_alignof] = ACTIONS(1187), + [anon_sym__Alignof] = ACTIONS(1187), + [anon_sym_offsetof] = ACTIONS(1187), + [anon_sym__Generic] = ACTIONS(1187), + [anon_sym_asm] = ACTIONS(1187), + [anon_sym___asm__] = ACTIONS(1187), + [sym_number_literal] = ACTIONS(1189), + [anon_sym_L_SQUOTE] = ACTIONS(1189), + [anon_sym_u_SQUOTE] = ACTIONS(1189), + [anon_sym_U_SQUOTE] = ACTIONS(1189), + [anon_sym_u8_SQUOTE] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_L_DQUOTE] = ACTIONS(1189), + [anon_sym_u_DQUOTE] = ACTIONS(1189), + [anon_sym_U_DQUOTE] = ACTIONS(1189), + [anon_sym_u8_DQUOTE] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [sym_true] = ACTIONS(1187), + [sym_false] = ACTIONS(1187), + [anon_sym_NULL] = ACTIONS(1187), + [anon_sym_nullptr] = ACTIONS(1187), [sym_comment] = ACTIONS(3), }, [222] = { - [ts_builtin_sym_end] = ACTIONS(1166), - [sym_identifier] = ACTIONS(1164), - [aux_sym_preproc_include_token1] = ACTIONS(1164), - [aux_sym_preproc_def_token1] = ACTIONS(1164), - [aux_sym_preproc_if_token1] = ACTIONS(1164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1164), - [sym_preproc_directive] = ACTIONS(1164), - [anon_sym_LPAREN2] = ACTIONS(1166), - [anon_sym_BANG] = ACTIONS(1166), - [anon_sym_TILDE] = ACTIONS(1166), - [anon_sym_DASH] = ACTIONS(1164), - [anon_sym_PLUS] = ACTIONS(1164), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1166), - [anon_sym_SEMI] = ACTIONS(1166), - [anon_sym___extension__] = ACTIONS(1164), - [anon_sym_typedef] = ACTIONS(1164), - [anon_sym_extern] = ACTIONS(1164), - [anon_sym___attribute__] = ACTIONS(1164), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1166), - [anon_sym___declspec] = ACTIONS(1164), - [anon_sym___cdecl] = ACTIONS(1164), - [anon_sym___clrcall] = ACTIONS(1164), - [anon_sym___stdcall] = ACTIONS(1164), - [anon_sym___fastcall] = ACTIONS(1164), - [anon_sym___thiscall] = ACTIONS(1164), - [anon_sym___vectorcall] = ACTIONS(1164), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_signed] = ACTIONS(1164), - [anon_sym_unsigned] = ACTIONS(1164), - [anon_sym_long] = ACTIONS(1164), - [anon_sym_short] = ACTIONS(1164), - [anon_sym_static] = ACTIONS(1164), - [anon_sym_auto] = ACTIONS(1164), - [anon_sym_register] = ACTIONS(1164), - [anon_sym_inline] = ACTIONS(1164), - [anon_sym___inline] = ACTIONS(1164), - [anon_sym___inline__] = ACTIONS(1164), - [anon_sym___forceinline] = ACTIONS(1164), - [anon_sym_thread_local] = ACTIONS(1164), - [anon_sym___thread] = ACTIONS(1164), - [anon_sym_const] = ACTIONS(1164), - [anon_sym_constexpr] = ACTIONS(1164), - [anon_sym_volatile] = ACTIONS(1164), - [anon_sym_restrict] = ACTIONS(1164), - [anon_sym___restrict__] = ACTIONS(1164), - [anon_sym__Atomic] = ACTIONS(1164), - [anon_sym__Noreturn] = ACTIONS(1164), - [anon_sym_noreturn] = ACTIONS(1164), - [sym_primitive_type] = ACTIONS(1164), - [anon_sym_enum] = ACTIONS(1164), - [anon_sym_struct] = ACTIONS(1164), - [anon_sym_union] = ACTIONS(1164), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_else] = ACTIONS(1164), - [anon_sym_switch] = ACTIONS(1164), - [anon_sym_case] = ACTIONS(1164), - [anon_sym_default] = ACTIONS(1164), - [anon_sym_while] = ACTIONS(1164), - [anon_sym_do] = ACTIONS(1164), - [anon_sym_for] = ACTIONS(1164), - [anon_sym_return] = ACTIONS(1164), - [anon_sym_break] = ACTIONS(1164), - [anon_sym_continue] = ACTIONS(1164), - [anon_sym_goto] = ACTIONS(1164), - [anon_sym___try] = ACTIONS(1164), - [anon_sym___leave] = ACTIONS(1164), - [anon_sym_DASH_DASH] = ACTIONS(1166), - [anon_sym_PLUS_PLUS] = ACTIONS(1166), - [anon_sym_sizeof] = ACTIONS(1164), - [anon_sym___alignof__] = ACTIONS(1164), - [anon_sym___alignof] = ACTIONS(1164), - [anon_sym__alignof] = ACTIONS(1164), - [anon_sym_alignof] = ACTIONS(1164), - [anon_sym__Alignof] = ACTIONS(1164), - [anon_sym_offsetof] = ACTIONS(1164), - [anon_sym__Generic] = ACTIONS(1164), - [anon_sym_asm] = ACTIONS(1164), - [anon_sym___asm__] = ACTIONS(1164), - [sym_number_literal] = ACTIONS(1166), - [anon_sym_L_SQUOTE] = ACTIONS(1166), - [anon_sym_u_SQUOTE] = ACTIONS(1166), - [anon_sym_U_SQUOTE] = ACTIONS(1166), - [anon_sym_u8_SQUOTE] = ACTIONS(1166), - [anon_sym_SQUOTE] = ACTIONS(1166), - [anon_sym_L_DQUOTE] = ACTIONS(1166), - [anon_sym_u_DQUOTE] = ACTIONS(1166), - [anon_sym_U_DQUOTE] = ACTIONS(1166), - [anon_sym_u8_DQUOTE] = ACTIONS(1166), - [anon_sym_DQUOTE] = ACTIONS(1166), - [sym_true] = ACTIONS(1164), - [sym_false] = ACTIONS(1164), - [anon_sym_NULL] = ACTIONS(1164), - [anon_sym_nullptr] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_RBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1147), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, [223] = { - [sym_identifier] = ACTIONS(1160), - [aux_sym_preproc_include_token1] = ACTIONS(1160), - [aux_sym_preproc_def_token1] = ACTIONS(1160), - [aux_sym_preproc_if_token1] = ACTIONS(1160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1160), - [sym_preproc_directive] = ACTIONS(1160), - [anon_sym_LPAREN2] = ACTIONS(1162), - [anon_sym_BANG] = ACTIONS(1162), - [anon_sym_TILDE] = ACTIONS(1162), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_STAR] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1162), - [anon_sym_SEMI] = ACTIONS(1162), - [anon_sym___extension__] = ACTIONS(1160), - [anon_sym_typedef] = ACTIONS(1160), - [anon_sym_extern] = ACTIONS(1160), - [anon_sym___attribute__] = ACTIONS(1160), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1162), - [anon_sym___declspec] = ACTIONS(1160), - [anon_sym___cdecl] = ACTIONS(1160), - [anon_sym___clrcall] = ACTIONS(1160), - [anon_sym___stdcall] = ACTIONS(1160), - [anon_sym___fastcall] = ACTIONS(1160), - [anon_sym___thiscall] = ACTIONS(1160), - [anon_sym___vectorcall] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_RBRACE] = ACTIONS(1162), - [anon_sym_signed] = ACTIONS(1160), - [anon_sym_unsigned] = ACTIONS(1160), - [anon_sym_long] = ACTIONS(1160), - [anon_sym_short] = ACTIONS(1160), - [anon_sym_static] = ACTIONS(1160), - [anon_sym_auto] = ACTIONS(1160), - [anon_sym_register] = ACTIONS(1160), - [anon_sym_inline] = ACTIONS(1160), - [anon_sym___inline] = ACTIONS(1160), - [anon_sym___inline__] = ACTIONS(1160), - [anon_sym___forceinline] = ACTIONS(1160), - [anon_sym_thread_local] = ACTIONS(1160), - [anon_sym___thread] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1160), - [anon_sym_constexpr] = ACTIONS(1160), - [anon_sym_volatile] = ACTIONS(1160), - [anon_sym_restrict] = ACTIONS(1160), - [anon_sym___restrict__] = ACTIONS(1160), - [anon_sym__Atomic] = ACTIONS(1160), - [anon_sym__Noreturn] = ACTIONS(1160), - [anon_sym_noreturn] = ACTIONS(1160), - [sym_primitive_type] = ACTIONS(1160), - [anon_sym_enum] = ACTIONS(1160), - [anon_sym_struct] = ACTIONS(1160), - [anon_sym_union] = ACTIONS(1160), - [anon_sym_if] = ACTIONS(1160), - [anon_sym_else] = ACTIONS(1160), - [anon_sym_switch] = ACTIONS(1160), - [anon_sym_case] = ACTIONS(1160), - [anon_sym_default] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1160), - [anon_sym_do] = ACTIONS(1160), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_return] = ACTIONS(1160), - [anon_sym_break] = ACTIONS(1160), - [anon_sym_continue] = ACTIONS(1160), - [anon_sym_goto] = ACTIONS(1160), - [anon_sym___try] = ACTIONS(1160), - [anon_sym___leave] = ACTIONS(1160), - [anon_sym_DASH_DASH] = ACTIONS(1162), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_sizeof] = ACTIONS(1160), - [anon_sym___alignof__] = ACTIONS(1160), - [anon_sym___alignof] = ACTIONS(1160), - [anon_sym__alignof] = ACTIONS(1160), - [anon_sym_alignof] = ACTIONS(1160), - [anon_sym__Alignof] = ACTIONS(1160), - [anon_sym_offsetof] = ACTIONS(1160), - [anon_sym__Generic] = ACTIONS(1160), - [anon_sym_asm] = ACTIONS(1160), - [anon_sym___asm__] = ACTIONS(1160), - [sym_number_literal] = ACTIONS(1162), - [anon_sym_L_SQUOTE] = ACTIONS(1162), - [anon_sym_u_SQUOTE] = ACTIONS(1162), - [anon_sym_U_SQUOTE] = ACTIONS(1162), - [anon_sym_u8_SQUOTE] = ACTIONS(1162), - [anon_sym_SQUOTE] = ACTIONS(1162), - [anon_sym_L_DQUOTE] = ACTIONS(1162), - [anon_sym_u_DQUOTE] = ACTIONS(1162), - [anon_sym_U_DQUOTE] = ACTIONS(1162), - [anon_sym_u8_DQUOTE] = ACTIONS(1162), - [anon_sym_DQUOTE] = ACTIONS(1162), - [sym_true] = ACTIONS(1160), - [sym_false] = ACTIONS(1160), - [anon_sym_NULL] = ACTIONS(1160), - [anon_sym_nullptr] = ACTIONS(1160), + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_RBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, [224] = { - [sym_identifier] = ACTIONS(1140), - [aux_sym_preproc_include_token1] = ACTIONS(1140), - [aux_sym_preproc_def_token1] = ACTIONS(1140), - [aux_sym_preproc_if_token1] = ACTIONS(1140), - [aux_sym_preproc_if_token2] = ACTIONS(1140), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1140), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1140), - [sym_preproc_directive] = ACTIONS(1140), - [anon_sym_LPAREN2] = ACTIONS(1142), - [anon_sym_BANG] = ACTIONS(1142), - [anon_sym_TILDE] = ACTIONS(1142), - [anon_sym_DASH] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(1140), - [anon_sym_STAR] = ACTIONS(1142), - [anon_sym_AMP] = ACTIONS(1142), - [anon_sym_SEMI] = ACTIONS(1142), - [anon_sym___extension__] = ACTIONS(1140), - [anon_sym_typedef] = ACTIONS(1140), - [anon_sym_extern] = ACTIONS(1140), - [anon_sym___attribute__] = ACTIONS(1140), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), - [anon_sym___declspec] = ACTIONS(1140), - [anon_sym___cdecl] = ACTIONS(1140), - [anon_sym___clrcall] = ACTIONS(1140), - [anon_sym___stdcall] = ACTIONS(1140), - [anon_sym___fastcall] = ACTIONS(1140), - [anon_sym___thiscall] = ACTIONS(1140), - [anon_sym___vectorcall] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(1142), - [anon_sym_signed] = ACTIONS(1140), - [anon_sym_unsigned] = ACTIONS(1140), - [anon_sym_long] = ACTIONS(1140), - [anon_sym_short] = ACTIONS(1140), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_auto] = ACTIONS(1140), - [anon_sym_register] = ACTIONS(1140), - [anon_sym_inline] = ACTIONS(1140), - [anon_sym___inline] = ACTIONS(1140), - [anon_sym___inline__] = ACTIONS(1140), - [anon_sym___forceinline] = ACTIONS(1140), - [anon_sym_thread_local] = ACTIONS(1140), - [anon_sym___thread] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1140), - [anon_sym_constexpr] = ACTIONS(1140), - [anon_sym_volatile] = ACTIONS(1140), - [anon_sym_restrict] = ACTIONS(1140), - [anon_sym___restrict__] = ACTIONS(1140), - [anon_sym__Atomic] = ACTIONS(1140), - [anon_sym__Noreturn] = ACTIONS(1140), - [anon_sym_noreturn] = ACTIONS(1140), - [sym_primitive_type] = ACTIONS(1140), - [anon_sym_enum] = ACTIONS(1140), - [anon_sym_struct] = ACTIONS(1140), - [anon_sym_union] = ACTIONS(1140), - [anon_sym_if] = ACTIONS(1140), - [anon_sym_else] = ACTIONS(1140), - [anon_sym_switch] = ACTIONS(1140), - [anon_sym_case] = ACTIONS(1140), - [anon_sym_default] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1140), - [anon_sym_return] = ACTIONS(1140), - [anon_sym_break] = ACTIONS(1140), - [anon_sym_continue] = ACTIONS(1140), - [anon_sym_goto] = ACTIONS(1140), - [anon_sym___try] = ACTIONS(1140), - [anon_sym___leave] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1142), - [anon_sym_PLUS_PLUS] = ACTIONS(1142), - [anon_sym_sizeof] = ACTIONS(1140), - [anon_sym___alignof__] = ACTIONS(1140), - [anon_sym___alignof] = ACTIONS(1140), - [anon_sym__alignof] = ACTIONS(1140), - [anon_sym_alignof] = ACTIONS(1140), - [anon_sym__Alignof] = ACTIONS(1140), - [anon_sym_offsetof] = ACTIONS(1140), - [anon_sym__Generic] = ACTIONS(1140), - [anon_sym_asm] = ACTIONS(1140), - [anon_sym___asm__] = ACTIONS(1140), - [sym_number_literal] = ACTIONS(1142), - [anon_sym_L_SQUOTE] = ACTIONS(1142), - [anon_sym_u_SQUOTE] = ACTIONS(1142), - [anon_sym_U_SQUOTE] = ACTIONS(1142), - [anon_sym_u8_SQUOTE] = ACTIONS(1142), - [anon_sym_SQUOTE] = ACTIONS(1142), - [anon_sym_L_DQUOTE] = ACTIONS(1142), - [anon_sym_u_DQUOTE] = ACTIONS(1142), - [anon_sym_U_DQUOTE] = ACTIONS(1142), - [anon_sym_u8_DQUOTE] = ACTIONS(1142), - [anon_sym_DQUOTE] = ACTIONS(1142), - [sym_true] = ACTIONS(1140), - [sym_false] = ACTIONS(1140), - [anon_sym_NULL] = ACTIONS(1140), - [anon_sym_nullptr] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1159), + [aux_sym_preproc_include_token1] = ACTIONS(1159), + [aux_sym_preproc_def_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token2] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), + [sym_preproc_directive] = ACTIONS(1159), + [anon_sym_LPAREN2] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(1161), + [anon_sym_TILDE] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1161), + [anon_sym___extension__] = ACTIONS(1159), + [anon_sym_typedef] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym___attribute__] = ACTIONS(1159), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), + [anon_sym___declspec] = ACTIONS(1159), + [anon_sym___cdecl] = ACTIONS(1159), + [anon_sym___clrcall] = ACTIONS(1159), + [anon_sym___stdcall] = ACTIONS(1159), + [anon_sym___fastcall] = ACTIONS(1159), + [anon_sym___thiscall] = ACTIONS(1159), + [anon_sym___vectorcall] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_signed] = ACTIONS(1159), + [anon_sym_unsigned] = ACTIONS(1159), + [anon_sym_long] = ACTIONS(1159), + [anon_sym_short] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_auto] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_inline] = ACTIONS(1159), + [anon_sym___inline] = ACTIONS(1159), + [anon_sym___inline__] = ACTIONS(1159), + [anon_sym___forceinline] = ACTIONS(1159), + [anon_sym_thread_local] = ACTIONS(1159), + [anon_sym___thread] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_constexpr] = ACTIONS(1159), + [anon_sym_volatile] = ACTIONS(1159), + [anon_sym_restrict] = ACTIONS(1159), + [anon_sym___restrict__] = ACTIONS(1159), + [anon_sym__Atomic] = ACTIONS(1159), + [anon_sym__Noreturn] = ACTIONS(1159), + [anon_sym_noreturn] = ACTIONS(1159), + [anon_sym_alignas] = ACTIONS(1159), + [anon_sym__Alignas] = ACTIONS(1159), + [sym_primitive_type] = ACTIONS(1159), + [anon_sym_enum] = ACTIONS(1159), + [anon_sym_struct] = ACTIONS(1159), + [anon_sym_union] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_switch] = ACTIONS(1159), + [anon_sym_case] = ACTIONS(1159), + [anon_sym_default] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_goto] = ACTIONS(1159), + [anon_sym___try] = ACTIONS(1159), + [anon_sym___leave] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1161), + [anon_sym_PLUS_PLUS] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1159), + [anon_sym___alignof__] = ACTIONS(1159), + [anon_sym___alignof] = ACTIONS(1159), + [anon_sym__alignof] = ACTIONS(1159), + [anon_sym_alignof] = ACTIONS(1159), + [anon_sym__Alignof] = ACTIONS(1159), + [anon_sym_offsetof] = ACTIONS(1159), + [anon_sym__Generic] = ACTIONS(1159), + [anon_sym_asm] = ACTIONS(1159), + [anon_sym___asm__] = ACTIONS(1159), + [sym_number_literal] = ACTIONS(1161), + [anon_sym_L_SQUOTE] = ACTIONS(1161), + [anon_sym_u_SQUOTE] = ACTIONS(1161), + [anon_sym_U_SQUOTE] = ACTIONS(1161), + [anon_sym_u8_SQUOTE] = ACTIONS(1161), + [anon_sym_SQUOTE] = ACTIONS(1161), + [anon_sym_L_DQUOTE] = ACTIONS(1161), + [anon_sym_u_DQUOTE] = ACTIONS(1161), + [anon_sym_U_DQUOTE] = ACTIONS(1161), + [anon_sym_u8_DQUOTE] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym_true] = ACTIONS(1159), + [sym_false] = ACTIONS(1159), + [anon_sym_NULL] = ACTIONS(1159), + [anon_sym_nullptr] = ACTIONS(1159), [sym_comment] = ACTIONS(3), }, [225] = { - [sym_identifier] = ACTIONS(1136), - [aux_sym_preproc_include_token1] = ACTIONS(1136), - [aux_sym_preproc_def_token1] = ACTIONS(1136), - [aux_sym_preproc_if_token1] = ACTIONS(1136), - [aux_sym_preproc_if_token2] = ACTIONS(1136), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1136), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1136), - [sym_preproc_directive] = ACTIONS(1136), - [anon_sym_LPAREN2] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1138), - [anon_sym_TILDE] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1136), - [anon_sym_PLUS] = ACTIONS(1136), - [anon_sym_STAR] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym___extension__] = ACTIONS(1136), - [anon_sym_typedef] = ACTIONS(1136), - [anon_sym_extern] = ACTIONS(1136), - [anon_sym___attribute__] = ACTIONS(1136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1138), - [anon_sym___declspec] = ACTIONS(1136), - [anon_sym___cdecl] = ACTIONS(1136), - [anon_sym___clrcall] = ACTIONS(1136), - [anon_sym___stdcall] = ACTIONS(1136), - [anon_sym___fastcall] = ACTIONS(1136), - [anon_sym___thiscall] = ACTIONS(1136), - [anon_sym___vectorcall] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_signed] = ACTIONS(1136), - [anon_sym_unsigned] = ACTIONS(1136), - [anon_sym_long] = ACTIONS(1136), - [anon_sym_short] = ACTIONS(1136), - [anon_sym_static] = ACTIONS(1136), - [anon_sym_auto] = ACTIONS(1136), - [anon_sym_register] = ACTIONS(1136), - [anon_sym_inline] = ACTIONS(1136), - [anon_sym___inline] = ACTIONS(1136), - [anon_sym___inline__] = ACTIONS(1136), - [anon_sym___forceinline] = ACTIONS(1136), - [anon_sym_thread_local] = ACTIONS(1136), - [anon_sym___thread] = ACTIONS(1136), - [anon_sym_const] = ACTIONS(1136), - [anon_sym_constexpr] = ACTIONS(1136), - [anon_sym_volatile] = ACTIONS(1136), - [anon_sym_restrict] = ACTIONS(1136), - [anon_sym___restrict__] = ACTIONS(1136), - [anon_sym__Atomic] = ACTIONS(1136), - [anon_sym__Noreturn] = ACTIONS(1136), - [anon_sym_noreturn] = ACTIONS(1136), - [sym_primitive_type] = ACTIONS(1136), - [anon_sym_enum] = ACTIONS(1136), - [anon_sym_struct] = ACTIONS(1136), - [anon_sym_union] = ACTIONS(1136), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_else] = ACTIONS(1136), - [anon_sym_switch] = ACTIONS(1136), - [anon_sym_case] = ACTIONS(1136), - [anon_sym_default] = ACTIONS(1136), - [anon_sym_while] = ACTIONS(1136), - [anon_sym_do] = ACTIONS(1136), - [anon_sym_for] = ACTIONS(1136), - [anon_sym_return] = ACTIONS(1136), - [anon_sym_break] = ACTIONS(1136), - [anon_sym_continue] = ACTIONS(1136), - [anon_sym_goto] = ACTIONS(1136), - [anon_sym___try] = ACTIONS(1136), - [anon_sym___leave] = ACTIONS(1136), - [anon_sym_DASH_DASH] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1138), - [anon_sym_sizeof] = ACTIONS(1136), - [anon_sym___alignof__] = ACTIONS(1136), - [anon_sym___alignof] = ACTIONS(1136), - [anon_sym__alignof] = ACTIONS(1136), - [anon_sym_alignof] = ACTIONS(1136), - [anon_sym__Alignof] = ACTIONS(1136), - [anon_sym_offsetof] = ACTIONS(1136), - [anon_sym__Generic] = ACTIONS(1136), - [anon_sym_asm] = ACTIONS(1136), - [anon_sym___asm__] = ACTIONS(1136), - [sym_number_literal] = ACTIONS(1138), - [anon_sym_L_SQUOTE] = ACTIONS(1138), - [anon_sym_u_SQUOTE] = ACTIONS(1138), - [anon_sym_U_SQUOTE] = ACTIONS(1138), - [anon_sym_u8_SQUOTE] = ACTIONS(1138), - [anon_sym_SQUOTE] = ACTIONS(1138), - [anon_sym_L_DQUOTE] = ACTIONS(1138), - [anon_sym_u_DQUOTE] = ACTIONS(1138), - [anon_sym_U_DQUOTE] = ACTIONS(1138), - [anon_sym_u8_DQUOTE] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(1138), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [anon_sym_NULL] = ACTIONS(1136), - [anon_sym_nullptr] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_RBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1147), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, [226] = { - [sym_identifier] = ACTIONS(1132), - [aux_sym_preproc_include_token1] = ACTIONS(1132), - [aux_sym_preproc_def_token1] = ACTIONS(1132), - [aux_sym_preproc_if_token1] = ACTIONS(1132), - [aux_sym_preproc_if_token2] = ACTIONS(1132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1132), - [sym_preproc_directive] = ACTIONS(1132), - [anon_sym_LPAREN2] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1132), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1134), - [anon_sym_SEMI] = ACTIONS(1134), - [anon_sym___extension__] = ACTIONS(1132), - [anon_sym_typedef] = ACTIONS(1132), - [anon_sym_extern] = ACTIONS(1132), - [anon_sym___attribute__] = ACTIONS(1132), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1134), - [anon_sym___declspec] = ACTIONS(1132), - [anon_sym___cdecl] = ACTIONS(1132), - [anon_sym___clrcall] = ACTIONS(1132), - [anon_sym___stdcall] = ACTIONS(1132), - [anon_sym___fastcall] = ACTIONS(1132), - [anon_sym___thiscall] = ACTIONS(1132), - [anon_sym___vectorcall] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_signed] = ACTIONS(1132), - [anon_sym_unsigned] = ACTIONS(1132), - [anon_sym_long] = ACTIONS(1132), - [anon_sym_short] = ACTIONS(1132), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_auto] = ACTIONS(1132), - [anon_sym_register] = ACTIONS(1132), - [anon_sym_inline] = ACTIONS(1132), - [anon_sym___inline] = ACTIONS(1132), - [anon_sym___inline__] = ACTIONS(1132), - [anon_sym___forceinline] = ACTIONS(1132), - [anon_sym_thread_local] = ACTIONS(1132), - [anon_sym___thread] = ACTIONS(1132), - [anon_sym_const] = ACTIONS(1132), - [anon_sym_constexpr] = ACTIONS(1132), - [anon_sym_volatile] = ACTIONS(1132), - [anon_sym_restrict] = ACTIONS(1132), - [anon_sym___restrict__] = ACTIONS(1132), - [anon_sym__Atomic] = ACTIONS(1132), - [anon_sym__Noreturn] = ACTIONS(1132), - [anon_sym_noreturn] = ACTIONS(1132), - [sym_primitive_type] = ACTIONS(1132), - [anon_sym_enum] = ACTIONS(1132), - [anon_sym_struct] = ACTIONS(1132), - [anon_sym_union] = ACTIONS(1132), - [anon_sym_if] = ACTIONS(1132), - [anon_sym_else] = ACTIONS(1132), - [anon_sym_switch] = ACTIONS(1132), - [anon_sym_case] = ACTIONS(1132), - [anon_sym_default] = ACTIONS(1132), - [anon_sym_while] = ACTIONS(1132), - [anon_sym_do] = ACTIONS(1132), - [anon_sym_for] = ACTIONS(1132), - [anon_sym_return] = ACTIONS(1132), - [anon_sym_break] = ACTIONS(1132), - [anon_sym_continue] = ACTIONS(1132), - [anon_sym_goto] = ACTIONS(1132), - [anon_sym___try] = ACTIONS(1132), - [anon_sym___leave] = ACTIONS(1132), - [anon_sym_DASH_DASH] = ACTIONS(1134), - [anon_sym_PLUS_PLUS] = ACTIONS(1134), - [anon_sym_sizeof] = ACTIONS(1132), - [anon_sym___alignof__] = ACTIONS(1132), - [anon_sym___alignof] = ACTIONS(1132), - [anon_sym__alignof] = ACTIONS(1132), - [anon_sym_alignof] = ACTIONS(1132), - [anon_sym__Alignof] = ACTIONS(1132), - [anon_sym_offsetof] = ACTIONS(1132), - [anon_sym__Generic] = ACTIONS(1132), - [anon_sym_asm] = ACTIONS(1132), - [anon_sym___asm__] = ACTIONS(1132), - [sym_number_literal] = ACTIONS(1134), - [anon_sym_L_SQUOTE] = ACTIONS(1134), - [anon_sym_u_SQUOTE] = ACTIONS(1134), - [anon_sym_U_SQUOTE] = ACTIONS(1134), - [anon_sym_u8_SQUOTE] = ACTIONS(1134), - [anon_sym_SQUOTE] = ACTIONS(1134), - [anon_sym_L_DQUOTE] = ACTIONS(1134), - [anon_sym_u_DQUOTE] = ACTIONS(1134), - [anon_sym_U_DQUOTE] = ACTIONS(1134), - [anon_sym_u8_DQUOTE] = ACTIONS(1134), - [anon_sym_DQUOTE] = ACTIONS(1134), - [sym_true] = ACTIONS(1132), - [sym_false] = ACTIONS(1132), - [anon_sym_NULL] = ACTIONS(1132), - [anon_sym_nullptr] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1151), + [aux_sym_preproc_include_token1] = ACTIONS(1151), + [aux_sym_preproc_def_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), + [sym_preproc_directive] = ACTIONS(1151), + [anon_sym_LPAREN2] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_TILDE] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym___extension__] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1151), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym___attribute__] = ACTIONS(1151), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), + [anon_sym___declspec] = ACTIONS(1151), + [anon_sym___cdecl] = ACTIONS(1151), + [anon_sym___clrcall] = ACTIONS(1151), + [anon_sym___stdcall] = ACTIONS(1151), + [anon_sym___fastcall] = ACTIONS(1151), + [anon_sym___thiscall] = ACTIONS(1151), + [anon_sym___vectorcall] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1153), + [anon_sym_signed] = ACTIONS(1151), + [anon_sym_unsigned] = ACTIONS(1151), + [anon_sym_long] = ACTIONS(1151), + [anon_sym_short] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1151), + [anon_sym_auto] = ACTIONS(1151), + [anon_sym_register] = ACTIONS(1151), + [anon_sym_inline] = ACTIONS(1151), + [anon_sym___inline] = ACTIONS(1151), + [anon_sym___inline__] = ACTIONS(1151), + [anon_sym___forceinline] = ACTIONS(1151), + [anon_sym_thread_local] = ACTIONS(1151), + [anon_sym___thread] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_constexpr] = ACTIONS(1151), + [anon_sym_volatile] = ACTIONS(1151), + [anon_sym_restrict] = ACTIONS(1151), + [anon_sym___restrict__] = ACTIONS(1151), + [anon_sym__Atomic] = ACTIONS(1151), + [anon_sym__Noreturn] = ACTIONS(1151), + [anon_sym_noreturn] = ACTIONS(1151), + [anon_sym_alignas] = ACTIONS(1151), + [anon_sym__Alignas] = ACTIONS(1151), + [sym_primitive_type] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1151), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_else] = ACTIONS(1151), + [anon_sym_switch] = ACTIONS(1151), + [anon_sym_case] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1151), + [anon_sym_do] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1151), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_break] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1151), + [anon_sym_goto] = ACTIONS(1151), + [anon_sym___try] = ACTIONS(1151), + [anon_sym___leave] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1153), + [anon_sym_PLUS_PLUS] = ACTIONS(1153), + [anon_sym_sizeof] = ACTIONS(1151), + [anon_sym___alignof__] = ACTIONS(1151), + [anon_sym___alignof] = ACTIONS(1151), + [anon_sym__alignof] = ACTIONS(1151), + [anon_sym_alignof] = ACTIONS(1151), + [anon_sym__Alignof] = ACTIONS(1151), + [anon_sym_offsetof] = ACTIONS(1151), + [anon_sym__Generic] = ACTIONS(1151), + [anon_sym_asm] = ACTIONS(1151), + [anon_sym___asm__] = ACTIONS(1151), + [sym_number_literal] = ACTIONS(1153), + [anon_sym_L_SQUOTE] = ACTIONS(1153), + [anon_sym_u_SQUOTE] = ACTIONS(1153), + [anon_sym_U_SQUOTE] = ACTIONS(1153), + [anon_sym_u8_SQUOTE] = ACTIONS(1153), + [anon_sym_SQUOTE] = ACTIONS(1153), + [anon_sym_L_DQUOTE] = ACTIONS(1153), + [anon_sym_u_DQUOTE] = ACTIONS(1153), + [anon_sym_U_DQUOTE] = ACTIONS(1153), + [anon_sym_u8_DQUOTE] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [sym_true] = ACTIONS(1151), + [sym_false] = ACTIONS(1151), + [anon_sym_NULL] = ACTIONS(1151), + [anon_sym_nullptr] = ACTIONS(1151), [sym_comment] = ACTIONS(3), }, [227] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [228] = { - [sym_identifier] = ACTIONS(1128), - [aux_sym_preproc_include_token1] = ACTIONS(1128), - [aux_sym_preproc_def_token1] = ACTIONS(1128), - [aux_sym_preproc_if_token1] = ACTIONS(1128), - [aux_sym_preproc_if_token2] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), - [sym_preproc_directive] = ACTIONS(1128), - [anon_sym_LPAREN2] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_TILDE] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym___extension__] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym___attribute__] = ACTIONS(1128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1130), - [anon_sym___declspec] = ACTIONS(1128), - [anon_sym___cdecl] = ACTIONS(1128), - [anon_sym___clrcall] = ACTIONS(1128), - [anon_sym___stdcall] = ACTIONS(1128), - [anon_sym___fastcall] = ACTIONS(1128), - [anon_sym___thiscall] = ACTIONS(1128), - [anon_sym___vectorcall] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_signed] = ACTIONS(1128), - [anon_sym_unsigned] = ACTIONS(1128), - [anon_sym_long] = ACTIONS(1128), - [anon_sym_short] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_auto] = ACTIONS(1128), - [anon_sym_register] = ACTIONS(1128), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym___inline] = ACTIONS(1128), - [anon_sym___inline__] = ACTIONS(1128), - [anon_sym___forceinline] = ACTIONS(1128), - [anon_sym_thread_local] = ACTIONS(1128), - [anon_sym___thread] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_constexpr] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [anon_sym___restrict__] = ACTIONS(1128), - [anon_sym__Atomic] = ACTIONS(1128), - [anon_sym__Noreturn] = ACTIONS(1128), - [anon_sym_noreturn] = ACTIONS(1128), - [sym_primitive_type] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_union] = ACTIONS(1128), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_else] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_case] = ACTIONS(1128), - [anon_sym_default] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_goto] = ACTIONS(1128), - [anon_sym___try] = ACTIONS(1128), - [anon_sym___leave] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1130), - [anon_sym_PLUS_PLUS] = ACTIONS(1130), - [anon_sym_sizeof] = ACTIONS(1128), - [anon_sym___alignof__] = ACTIONS(1128), - [anon_sym___alignof] = ACTIONS(1128), - [anon_sym__alignof] = ACTIONS(1128), - [anon_sym_alignof] = ACTIONS(1128), - [anon_sym__Alignof] = ACTIONS(1128), - [anon_sym_offsetof] = ACTIONS(1128), - [anon_sym__Generic] = ACTIONS(1128), - [anon_sym_asm] = ACTIONS(1128), - [anon_sym___asm__] = ACTIONS(1128), - [sym_number_literal] = ACTIONS(1130), - [anon_sym_L_SQUOTE] = ACTIONS(1130), - [anon_sym_u_SQUOTE] = ACTIONS(1130), - [anon_sym_U_SQUOTE] = ACTIONS(1130), - [anon_sym_u8_SQUOTE] = ACTIONS(1130), - [anon_sym_SQUOTE] = ACTIONS(1130), - [anon_sym_L_DQUOTE] = ACTIONS(1130), - [anon_sym_u_DQUOTE] = ACTIONS(1130), - [anon_sym_U_DQUOTE] = ACTIONS(1130), - [anon_sym_u8_DQUOTE] = ACTIONS(1130), - [anon_sym_DQUOTE] = ACTIONS(1130), - [sym_true] = ACTIONS(1128), - [sym_false] = ACTIONS(1128), - [anon_sym_NULL] = ACTIONS(1128), - [anon_sym_nullptr] = ACTIONS(1128), + [ts_builtin_sym_end] = ACTIONS(1145), + [sym_identifier] = ACTIONS(1143), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym___extension__] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym___attribute__] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), + [anon_sym___declspec] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1143), + [anon_sym_unsigned] = ACTIONS(1143), + [anon_sym_long] = ACTIONS(1143), + [anon_sym_short] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_auto] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym___inline] = ACTIONS(1143), + [anon_sym___inline__] = ACTIONS(1143), + [anon_sym___forceinline] = ACTIONS(1143), + [anon_sym_thread_local] = ACTIONS(1143), + [anon_sym___thread] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym___restrict__] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym__Noreturn] = ACTIONS(1143), + [anon_sym_noreturn] = ACTIONS(1143), + [anon_sym_alignas] = ACTIONS(1143), + [anon_sym__Alignas] = ACTIONS(1143), + [sym_primitive_type] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_union] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(1143), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1143), + [anon_sym___try] = ACTIONS(1143), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_sizeof] = ACTIONS(1143), + [anon_sym___alignof__] = ACTIONS(1143), + [anon_sym___alignof] = ACTIONS(1143), + [anon_sym__alignof] = ACTIONS(1143), + [anon_sym_alignof] = ACTIONS(1143), + [anon_sym__Alignof] = ACTIONS(1143), + [anon_sym_offsetof] = ACTIONS(1143), + [anon_sym__Generic] = ACTIONS(1143), + [anon_sym_asm] = ACTIONS(1143), + [anon_sym___asm__] = ACTIONS(1143), + [sym_number_literal] = ACTIONS(1145), + [anon_sym_L_SQUOTE] = ACTIONS(1145), + [anon_sym_u_SQUOTE] = ACTIONS(1145), + [anon_sym_U_SQUOTE] = ACTIONS(1145), + [anon_sym_u8_SQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_L_DQUOTE] = ACTIONS(1145), + [anon_sym_u_DQUOTE] = ACTIONS(1145), + [anon_sym_U_DQUOTE] = ACTIONS(1145), + [anon_sym_u8_DQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_true] = ACTIONS(1143), + [sym_false] = ACTIONS(1143), + [anon_sym_NULL] = ACTIONS(1143), + [anon_sym_nullptr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), }, [229] = { - [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___extension__] = ACTIONS(1124), - [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_signed] = ACTIONS(1124), - [anon_sym_unsigned] = ACTIONS(1124), - [anon_sym_long] = ACTIONS(1124), - [anon_sym_short] = ACTIONS(1124), - [anon_sym_static] = ACTIONS(1124), - [anon_sym_auto] = ACTIONS(1124), - [anon_sym_register] = ACTIONS(1124), - [anon_sym_inline] = ACTIONS(1124), - [anon_sym___inline] = ACTIONS(1124), - [anon_sym___inline__] = ACTIONS(1124), - [anon_sym___forceinline] = ACTIONS(1124), - [anon_sym_thread_local] = ACTIONS(1124), - [anon_sym___thread] = ACTIONS(1124), - [anon_sym_const] = ACTIONS(1124), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1124), - [anon_sym___leave] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_sizeof] = ACTIONS(1124), - [anon_sym___alignof__] = ACTIONS(1124), - [anon_sym___alignof] = ACTIONS(1124), - [anon_sym__alignof] = ACTIONS(1124), - [anon_sym_alignof] = ACTIONS(1124), - [anon_sym__Alignof] = ACTIONS(1124), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1124), - [anon_sym_nullptr] = ACTIONS(1124), + [ts_builtin_sym_end] = ACTIONS(1217), + [sym_identifier] = ACTIONS(1215), + [aux_sym_preproc_include_token1] = ACTIONS(1215), + [aux_sym_preproc_def_token1] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_LPAREN2] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym___extension__] = ACTIONS(1215), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym___attribute__] = ACTIONS(1215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1217), + [anon_sym___declspec] = ACTIONS(1215), + [anon_sym___cdecl] = ACTIONS(1215), + [anon_sym___clrcall] = ACTIONS(1215), + [anon_sym___stdcall] = ACTIONS(1215), + [anon_sym___fastcall] = ACTIONS(1215), + [anon_sym___thiscall] = ACTIONS(1215), + [anon_sym___vectorcall] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym___inline] = ACTIONS(1215), + [anon_sym___inline__] = ACTIONS(1215), + [anon_sym___forceinline] = ACTIONS(1215), + [anon_sym_thread_local] = ACTIONS(1215), + [anon_sym___thread] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_constexpr] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym___restrict__] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym__Noreturn] = ACTIONS(1215), + [anon_sym_noreturn] = ACTIONS(1215), + [anon_sym_alignas] = ACTIONS(1215), + [anon_sym__Alignas] = ACTIONS(1215), + [sym_primitive_type] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(1215), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1215), + [anon_sym_default] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym___try] = ACTIONS(1215), + [anon_sym___leave] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_sizeof] = ACTIONS(1215), + [anon_sym___alignof__] = ACTIONS(1215), + [anon_sym___alignof] = ACTIONS(1215), + [anon_sym__alignof] = ACTIONS(1215), + [anon_sym_alignof] = ACTIONS(1215), + [anon_sym__Alignof] = ACTIONS(1215), + [anon_sym_offsetof] = ACTIONS(1215), + [anon_sym__Generic] = ACTIONS(1215), + [anon_sym_asm] = ACTIONS(1215), + [anon_sym___asm__] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1217), + [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(1217), + [anon_sym_u_DQUOTE] = ACTIONS(1217), + [anon_sym_U_DQUOTE] = ACTIONS(1217), + [anon_sym_u8_DQUOTE] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [anon_sym_NULL] = ACTIONS(1215), + [anon_sym_nullptr] = ACTIONS(1215), [sym_comment] = ACTIONS(3), }, [230] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1155), + [aux_sym_preproc_include_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1155), + [aux_sym_preproc_if_token1] = ACTIONS(1155), + [aux_sym_preproc_if_token2] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), + [sym_preproc_directive] = ACTIONS(1155), + [anon_sym_LPAREN2] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1157), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1157), + [anon_sym___extension__] = ACTIONS(1155), + [anon_sym_typedef] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym___attribute__] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1157), + [anon_sym___declspec] = ACTIONS(1155), + [anon_sym___cdecl] = ACTIONS(1155), + [anon_sym___clrcall] = ACTIONS(1155), + [anon_sym___stdcall] = ACTIONS(1155), + [anon_sym___fastcall] = ACTIONS(1155), + [anon_sym___thiscall] = ACTIONS(1155), + [anon_sym___vectorcall] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(1155), + [anon_sym_unsigned] = ACTIONS(1155), + [anon_sym_long] = ACTIONS(1155), + [anon_sym_short] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1155), + [anon_sym_auto] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_inline] = ACTIONS(1155), + [anon_sym___inline] = ACTIONS(1155), + [anon_sym___inline__] = ACTIONS(1155), + [anon_sym___forceinline] = ACTIONS(1155), + [anon_sym_thread_local] = ACTIONS(1155), + [anon_sym___thread] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_constexpr] = ACTIONS(1155), + [anon_sym_volatile] = ACTIONS(1155), + [anon_sym_restrict] = ACTIONS(1155), + [anon_sym___restrict__] = ACTIONS(1155), + [anon_sym__Atomic] = ACTIONS(1155), + [anon_sym__Noreturn] = ACTIONS(1155), + [anon_sym_noreturn] = ACTIONS(1155), + [anon_sym_alignas] = ACTIONS(1155), + [anon_sym__Alignas] = ACTIONS(1155), + [sym_primitive_type] = ACTIONS(1155), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_struct] = ACTIONS(1155), + [anon_sym_union] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_switch] = ACTIONS(1155), + [anon_sym_case] = ACTIONS(1155), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_goto] = ACTIONS(1155), + [anon_sym___try] = ACTIONS(1155), + [anon_sym___leave] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_sizeof] = ACTIONS(1155), + [anon_sym___alignof__] = ACTIONS(1155), + [anon_sym___alignof] = ACTIONS(1155), + [anon_sym__alignof] = ACTIONS(1155), + [anon_sym_alignof] = ACTIONS(1155), + [anon_sym__Alignof] = ACTIONS(1155), + [anon_sym_offsetof] = ACTIONS(1155), + [anon_sym__Generic] = ACTIONS(1155), + [anon_sym_asm] = ACTIONS(1155), + [anon_sym___asm__] = ACTIONS(1155), + [sym_number_literal] = ACTIONS(1157), + [anon_sym_L_SQUOTE] = ACTIONS(1157), + [anon_sym_u_SQUOTE] = ACTIONS(1157), + [anon_sym_U_SQUOTE] = ACTIONS(1157), + [anon_sym_u8_SQUOTE] = ACTIONS(1157), + [anon_sym_SQUOTE] = ACTIONS(1157), + [anon_sym_L_DQUOTE] = ACTIONS(1157), + [anon_sym_u_DQUOTE] = ACTIONS(1157), + [anon_sym_U_DQUOTE] = ACTIONS(1157), + [anon_sym_u8_DQUOTE] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_true] = ACTIONS(1155), + [sym_false] = ACTIONS(1155), + [anon_sym_NULL] = ACTIONS(1155), + [anon_sym_nullptr] = ACTIONS(1155), [sym_comment] = ACTIONS(3), }, [231] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [232] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [sym_preproc_directive] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym___extension__] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1197), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [anon_sym___inline] = ACTIONS(1195), + [anon_sym___inline__] = ACTIONS(1195), + [anon_sym___forceinline] = ACTIONS(1195), + [anon_sym_thread_local] = ACTIONS(1195), + [anon_sym___thread] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_constexpr] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym___restrict__] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym__Noreturn] = ACTIONS(1195), + [anon_sym_noreturn] = ACTIONS(1195), + [anon_sym_alignas] = ACTIONS(1195), + [anon_sym__Alignas] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym___try] = ACTIONS(1195), + [anon_sym___leave] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [anon_sym___alignof__] = ACTIONS(1195), + [anon_sym___alignof] = ACTIONS(1195), + [anon_sym__alignof] = ACTIONS(1195), + [anon_sym_alignof] = ACTIONS(1195), + [anon_sym__Alignof] = ACTIONS(1195), + [anon_sym_offsetof] = ACTIONS(1195), + [anon_sym__Generic] = ACTIONS(1195), + [anon_sym_asm] = ACTIONS(1195), + [anon_sym___asm__] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [anon_sym_NULL] = ACTIONS(1195), + [anon_sym_nullptr] = ACTIONS(1195), [sym_comment] = ACTIONS(3), }, [233] = { - [ts_builtin_sym_end] = ACTIONS(1150), - [sym_identifier] = ACTIONS(1148), - [aux_sym_preproc_include_token1] = ACTIONS(1148), - [aux_sym_preproc_def_token1] = ACTIONS(1148), - [aux_sym_preproc_if_token1] = ACTIONS(1148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1148), - [sym_preproc_directive] = ACTIONS(1148), - [anon_sym_LPAREN2] = ACTIONS(1150), - [anon_sym_BANG] = ACTIONS(1150), - [anon_sym_TILDE] = ACTIONS(1150), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym___extension__] = ACTIONS(1148), - [anon_sym_typedef] = ACTIONS(1148), - [anon_sym_extern] = ACTIONS(1148), - [anon_sym___attribute__] = ACTIONS(1148), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1150), - [anon_sym___declspec] = ACTIONS(1148), - [anon_sym___cdecl] = ACTIONS(1148), - [anon_sym___clrcall] = ACTIONS(1148), - [anon_sym___stdcall] = ACTIONS(1148), - [anon_sym___fastcall] = ACTIONS(1148), - [anon_sym___thiscall] = ACTIONS(1148), - [anon_sym___vectorcall] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_signed] = ACTIONS(1148), - [anon_sym_unsigned] = ACTIONS(1148), - [anon_sym_long] = ACTIONS(1148), - [anon_sym_short] = ACTIONS(1148), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_auto] = ACTIONS(1148), - [anon_sym_register] = ACTIONS(1148), - [anon_sym_inline] = ACTIONS(1148), - [anon_sym___inline] = ACTIONS(1148), - [anon_sym___inline__] = ACTIONS(1148), - [anon_sym___forceinline] = ACTIONS(1148), - [anon_sym_thread_local] = ACTIONS(1148), - [anon_sym___thread] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1148), - [anon_sym_constexpr] = ACTIONS(1148), - [anon_sym_volatile] = ACTIONS(1148), - [anon_sym_restrict] = ACTIONS(1148), - [anon_sym___restrict__] = ACTIONS(1148), - [anon_sym__Atomic] = ACTIONS(1148), - [anon_sym__Noreturn] = ACTIONS(1148), - [anon_sym_noreturn] = ACTIONS(1148), - [sym_primitive_type] = ACTIONS(1148), - [anon_sym_enum] = ACTIONS(1148), - [anon_sym_struct] = ACTIONS(1148), - [anon_sym_union] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_else] = ACTIONS(1148), - [anon_sym_switch] = ACTIONS(1148), - [anon_sym_case] = ACTIONS(1148), - [anon_sym_default] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_goto] = ACTIONS(1148), - [anon_sym___try] = ACTIONS(1148), - [anon_sym___leave] = ACTIONS(1148), - [anon_sym_DASH_DASH] = ACTIONS(1150), - [anon_sym_PLUS_PLUS] = ACTIONS(1150), - [anon_sym_sizeof] = ACTIONS(1148), - [anon_sym___alignof__] = ACTIONS(1148), - [anon_sym___alignof] = ACTIONS(1148), - [anon_sym__alignof] = ACTIONS(1148), - [anon_sym_alignof] = ACTIONS(1148), - [anon_sym__Alignof] = ACTIONS(1148), - [anon_sym_offsetof] = ACTIONS(1148), - [anon_sym__Generic] = ACTIONS(1148), - [anon_sym_asm] = ACTIONS(1148), - [anon_sym___asm__] = ACTIONS(1148), - [sym_number_literal] = ACTIONS(1150), - [anon_sym_L_SQUOTE] = ACTIONS(1150), - [anon_sym_u_SQUOTE] = ACTIONS(1150), - [anon_sym_U_SQUOTE] = ACTIONS(1150), - [anon_sym_u8_SQUOTE] = ACTIONS(1150), - [anon_sym_SQUOTE] = ACTIONS(1150), - [anon_sym_L_DQUOTE] = ACTIONS(1150), - [anon_sym_u_DQUOTE] = ACTIONS(1150), - [anon_sym_U_DQUOTE] = ACTIONS(1150), - [anon_sym_u8_DQUOTE] = ACTIONS(1150), - [anon_sym_DQUOTE] = ACTIONS(1150), - [sym_true] = ACTIONS(1148), - [sym_false] = ACTIONS(1148), - [anon_sym_NULL] = ACTIONS(1148), - [anon_sym_nullptr] = ACTIONS(1148), + [ts_builtin_sym_end] = ACTIONS(1185), + [sym_identifier] = ACTIONS(1183), + [aux_sym_preproc_include_token1] = ACTIONS(1183), + [aux_sym_preproc_def_token1] = ACTIONS(1183), + [aux_sym_preproc_if_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), + [sym_preproc_directive] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym___extension__] = ACTIONS(1183), + [anon_sym_typedef] = ACTIONS(1183), + [anon_sym_extern] = ACTIONS(1183), + [anon_sym___attribute__] = ACTIONS(1183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), + [anon_sym___declspec] = ACTIONS(1183), + [anon_sym___cdecl] = ACTIONS(1183), + [anon_sym___clrcall] = ACTIONS(1183), + [anon_sym___stdcall] = ACTIONS(1183), + [anon_sym___fastcall] = ACTIONS(1183), + [anon_sym___thiscall] = ACTIONS(1183), + [anon_sym___vectorcall] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_signed] = ACTIONS(1183), + [anon_sym_unsigned] = ACTIONS(1183), + [anon_sym_long] = ACTIONS(1183), + [anon_sym_short] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1183), + [anon_sym_auto] = ACTIONS(1183), + [anon_sym_register] = ACTIONS(1183), + [anon_sym_inline] = ACTIONS(1183), + [anon_sym___inline] = ACTIONS(1183), + [anon_sym___inline__] = ACTIONS(1183), + [anon_sym___forceinline] = ACTIONS(1183), + [anon_sym_thread_local] = ACTIONS(1183), + [anon_sym___thread] = ACTIONS(1183), + [anon_sym_const] = ACTIONS(1183), + [anon_sym_constexpr] = ACTIONS(1183), + [anon_sym_volatile] = ACTIONS(1183), + [anon_sym_restrict] = ACTIONS(1183), + [anon_sym___restrict__] = ACTIONS(1183), + [anon_sym__Atomic] = ACTIONS(1183), + [anon_sym__Noreturn] = ACTIONS(1183), + [anon_sym_noreturn] = ACTIONS(1183), + [anon_sym_alignas] = ACTIONS(1183), + [anon_sym__Alignas] = ACTIONS(1183), + [sym_primitive_type] = ACTIONS(1183), + [anon_sym_enum] = ACTIONS(1183), + [anon_sym_struct] = ACTIONS(1183), + [anon_sym_union] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_else] = ACTIONS(1183), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1183), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(1183), + [anon_sym_for] = ACTIONS(1183), + [anon_sym_return] = ACTIONS(1183), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym___try] = ACTIONS(1183), + [anon_sym___leave] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_sizeof] = ACTIONS(1183), + [anon_sym___alignof__] = ACTIONS(1183), + [anon_sym___alignof] = ACTIONS(1183), + [anon_sym__alignof] = ACTIONS(1183), + [anon_sym_alignof] = ACTIONS(1183), + [anon_sym__Alignof] = ACTIONS(1183), + [anon_sym_offsetof] = ACTIONS(1183), + [anon_sym__Generic] = ACTIONS(1183), + [anon_sym_asm] = ACTIONS(1183), + [anon_sym___asm__] = ACTIONS(1183), + [sym_number_literal] = ACTIONS(1185), + [anon_sym_L_SQUOTE] = ACTIONS(1185), + [anon_sym_u_SQUOTE] = ACTIONS(1185), + [anon_sym_U_SQUOTE] = ACTIONS(1185), + [anon_sym_u8_SQUOTE] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_L_DQUOTE] = ACTIONS(1185), + [anon_sym_u_DQUOTE] = ACTIONS(1185), + [anon_sym_U_DQUOTE] = ACTIONS(1185), + [anon_sym_u8_DQUOTE] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym_true] = ACTIONS(1183), + [sym_false] = ACTIONS(1183), + [anon_sym_NULL] = ACTIONS(1183), + [anon_sym_nullptr] = ACTIONS(1183), [sym_comment] = ACTIONS(3), }, [234] = { - [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___extension__] = ACTIONS(1124), - [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_signed] = ACTIONS(1124), - [anon_sym_unsigned] = ACTIONS(1124), - [anon_sym_long] = ACTIONS(1124), - [anon_sym_short] = ACTIONS(1124), - [anon_sym_static] = ACTIONS(1124), - [anon_sym_auto] = ACTIONS(1124), - [anon_sym_register] = ACTIONS(1124), - [anon_sym_inline] = ACTIONS(1124), - [anon_sym___inline] = ACTIONS(1124), - [anon_sym___inline__] = ACTIONS(1124), - [anon_sym___forceinline] = ACTIONS(1124), - [anon_sym_thread_local] = ACTIONS(1124), - [anon_sym___thread] = ACTIONS(1124), - [anon_sym_const] = ACTIONS(1124), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1124), - [anon_sym___leave] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_sizeof] = ACTIONS(1124), - [anon_sym___alignof__] = ACTIONS(1124), - [anon_sym___alignof] = ACTIONS(1124), - [anon_sym__alignof] = ACTIONS(1124), - [anon_sym_alignof] = ACTIONS(1124), - [anon_sym__Alignof] = ACTIONS(1124), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1124), - [anon_sym_nullptr] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [235] = { - [sym_identifier] = ACTIONS(1128), - [aux_sym_preproc_include_token1] = ACTIONS(1128), - [aux_sym_preproc_def_token1] = ACTIONS(1128), - [aux_sym_preproc_if_token1] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), - [sym_preproc_directive] = ACTIONS(1128), - [anon_sym_LPAREN2] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_TILDE] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym___extension__] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym___attribute__] = ACTIONS(1128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1130), - [anon_sym___declspec] = ACTIONS(1128), - [anon_sym___cdecl] = ACTIONS(1128), - [anon_sym___clrcall] = ACTIONS(1128), - [anon_sym___stdcall] = ACTIONS(1128), - [anon_sym___fastcall] = ACTIONS(1128), - [anon_sym___thiscall] = ACTIONS(1128), - [anon_sym___vectorcall] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_RBRACE] = ACTIONS(1130), - [anon_sym_signed] = ACTIONS(1128), - [anon_sym_unsigned] = ACTIONS(1128), - [anon_sym_long] = ACTIONS(1128), - [anon_sym_short] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_auto] = ACTIONS(1128), - [anon_sym_register] = ACTIONS(1128), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym___inline] = ACTIONS(1128), - [anon_sym___inline__] = ACTIONS(1128), - [anon_sym___forceinline] = ACTIONS(1128), - [anon_sym_thread_local] = ACTIONS(1128), - [anon_sym___thread] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_constexpr] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [anon_sym___restrict__] = ACTIONS(1128), - [anon_sym__Atomic] = ACTIONS(1128), - [anon_sym__Noreturn] = ACTIONS(1128), - [anon_sym_noreturn] = ACTIONS(1128), - [sym_primitive_type] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_union] = ACTIONS(1128), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_else] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_case] = ACTIONS(1128), - [anon_sym_default] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_goto] = ACTIONS(1128), - [anon_sym___try] = ACTIONS(1128), - [anon_sym___leave] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1130), - [anon_sym_PLUS_PLUS] = ACTIONS(1130), - [anon_sym_sizeof] = ACTIONS(1128), - [anon_sym___alignof__] = ACTIONS(1128), - [anon_sym___alignof] = ACTIONS(1128), - [anon_sym__alignof] = ACTIONS(1128), - [anon_sym_alignof] = ACTIONS(1128), - [anon_sym__Alignof] = ACTIONS(1128), - [anon_sym_offsetof] = ACTIONS(1128), - [anon_sym__Generic] = ACTIONS(1128), - [anon_sym_asm] = ACTIONS(1128), - [anon_sym___asm__] = ACTIONS(1128), - [sym_number_literal] = ACTIONS(1130), - [anon_sym_L_SQUOTE] = ACTIONS(1130), - [anon_sym_u_SQUOTE] = ACTIONS(1130), - [anon_sym_U_SQUOTE] = ACTIONS(1130), - [anon_sym_u8_SQUOTE] = ACTIONS(1130), - [anon_sym_SQUOTE] = ACTIONS(1130), - [anon_sym_L_DQUOTE] = ACTIONS(1130), - [anon_sym_u_DQUOTE] = ACTIONS(1130), - [anon_sym_U_DQUOTE] = ACTIONS(1130), - [anon_sym_u8_DQUOTE] = ACTIONS(1130), - [anon_sym_DQUOTE] = ACTIONS(1130), - [sym_true] = ACTIONS(1128), - [sym_false] = ACTIONS(1128), - [anon_sym_NULL] = ACTIONS(1128), - [anon_sym_nullptr] = ACTIONS(1128), + [ts_builtin_sym_end] = ACTIONS(1177), + [sym_identifier] = ACTIONS(1175), + [aux_sym_preproc_include_token1] = ACTIONS(1175), + [aux_sym_preproc_def_token1] = ACTIONS(1175), + [aux_sym_preproc_if_token1] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), + [sym_preproc_directive] = ACTIONS(1175), + [anon_sym_LPAREN2] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1177), + [anon_sym_TILDE] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym___extension__] = ACTIONS(1175), + [anon_sym_typedef] = ACTIONS(1175), + [anon_sym_extern] = ACTIONS(1175), + [anon_sym___attribute__] = ACTIONS(1175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1177), + [anon_sym___declspec] = ACTIONS(1175), + [anon_sym___cdecl] = ACTIONS(1175), + [anon_sym___clrcall] = ACTIONS(1175), + [anon_sym___stdcall] = ACTIONS(1175), + [anon_sym___fastcall] = ACTIONS(1175), + [anon_sym___thiscall] = ACTIONS(1175), + [anon_sym___vectorcall] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_signed] = ACTIONS(1175), + [anon_sym_unsigned] = ACTIONS(1175), + [anon_sym_long] = ACTIONS(1175), + [anon_sym_short] = ACTIONS(1175), + [anon_sym_static] = ACTIONS(1175), + [anon_sym_auto] = ACTIONS(1175), + [anon_sym_register] = ACTIONS(1175), + [anon_sym_inline] = ACTIONS(1175), + [anon_sym___inline] = ACTIONS(1175), + [anon_sym___inline__] = ACTIONS(1175), + [anon_sym___forceinline] = ACTIONS(1175), + [anon_sym_thread_local] = ACTIONS(1175), + [anon_sym___thread] = ACTIONS(1175), + [anon_sym_const] = ACTIONS(1175), + [anon_sym_constexpr] = ACTIONS(1175), + [anon_sym_volatile] = ACTIONS(1175), + [anon_sym_restrict] = ACTIONS(1175), + [anon_sym___restrict__] = ACTIONS(1175), + [anon_sym__Atomic] = ACTIONS(1175), + [anon_sym__Noreturn] = ACTIONS(1175), + [anon_sym_noreturn] = ACTIONS(1175), + [anon_sym_alignas] = ACTIONS(1175), + [anon_sym__Alignas] = ACTIONS(1175), + [sym_primitive_type] = ACTIONS(1175), + [anon_sym_enum] = ACTIONS(1175), + [anon_sym_struct] = ACTIONS(1175), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_else] = ACTIONS(1175), + [anon_sym_switch] = ACTIONS(1175), + [anon_sym_case] = ACTIONS(1175), + [anon_sym_default] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_do] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1175), + [anon_sym_continue] = ACTIONS(1175), + [anon_sym_goto] = ACTIONS(1175), + [anon_sym___try] = ACTIONS(1175), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_sizeof] = ACTIONS(1175), + [anon_sym___alignof__] = ACTIONS(1175), + [anon_sym___alignof] = ACTIONS(1175), + [anon_sym__alignof] = ACTIONS(1175), + [anon_sym_alignof] = ACTIONS(1175), + [anon_sym__Alignof] = ACTIONS(1175), + [anon_sym_offsetof] = ACTIONS(1175), + [anon_sym__Generic] = ACTIONS(1175), + [anon_sym_asm] = ACTIONS(1175), + [anon_sym___asm__] = ACTIONS(1175), + [sym_number_literal] = ACTIONS(1177), + [anon_sym_L_SQUOTE] = ACTIONS(1177), + [anon_sym_u_SQUOTE] = ACTIONS(1177), + [anon_sym_U_SQUOTE] = ACTIONS(1177), + [anon_sym_u8_SQUOTE] = ACTIONS(1177), + [anon_sym_SQUOTE] = ACTIONS(1177), + [anon_sym_L_DQUOTE] = ACTIONS(1177), + [anon_sym_u_DQUOTE] = ACTIONS(1177), + [anon_sym_U_DQUOTE] = ACTIONS(1177), + [anon_sym_u8_DQUOTE] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym_true] = ACTIONS(1175), + [sym_false] = ACTIONS(1175), + [anon_sym_NULL] = ACTIONS(1175), + [anon_sym_nullptr] = ACTIONS(1175), [sym_comment] = ACTIONS(3), }, [236] = { - [sym_identifier] = ACTIONS(1164), - [aux_sym_preproc_include_token1] = ACTIONS(1164), - [aux_sym_preproc_def_token1] = ACTIONS(1164), - [aux_sym_preproc_if_token1] = ACTIONS(1164), - [aux_sym_preproc_if_token2] = ACTIONS(1164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1164), - [sym_preproc_directive] = ACTIONS(1164), - [anon_sym_LPAREN2] = ACTIONS(1166), - [anon_sym_BANG] = ACTIONS(1166), - [anon_sym_TILDE] = ACTIONS(1166), - [anon_sym_DASH] = ACTIONS(1164), - [anon_sym_PLUS] = ACTIONS(1164), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1166), - [anon_sym_SEMI] = ACTIONS(1166), - [anon_sym___extension__] = ACTIONS(1164), - [anon_sym_typedef] = ACTIONS(1164), - [anon_sym_extern] = ACTIONS(1164), - [anon_sym___attribute__] = ACTIONS(1164), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1166), - [anon_sym___declspec] = ACTIONS(1164), - [anon_sym___cdecl] = ACTIONS(1164), - [anon_sym___clrcall] = ACTIONS(1164), - [anon_sym___stdcall] = ACTIONS(1164), - [anon_sym___fastcall] = ACTIONS(1164), - [anon_sym___thiscall] = ACTIONS(1164), - [anon_sym___vectorcall] = ACTIONS(1164), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_signed] = ACTIONS(1164), - [anon_sym_unsigned] = ACTIONS(1164), - [anon_sym_long] = ACTIONS(1164), - [anon_sym_short] = ACTIONS(1164), - [anon_sym_static] = ACTIONS(1164), - [anon_sym_auto] = ACTIONS(1164), - [anon_sym_register] = ACTIONS(1164), - [anon_sym_inline] = ACTIONS(1164), - [anon_sym___inline] = ACTIONS(1164), - [anon_sym___inline__] = ACTIONS(1164), - [anon_sym___forceinline] = ACTIONS(1164), - [anon_sym_thread_local] = ACTIONS(1164), - [anon_sym___thread] = ACTIONS(1164), - [anon_sym_const] = ACTIONS(1164), - [anon_sym_constexpr] = ACTIONS(1164), - [anon_sym_volatile] = ACTIONS(1164), - [anon_sym_restrict] = ACTIONS(1164), - [anon_sym___restrict__] = ACTIONS(1164), - [anon_sym__Atomic] = ACTIONS(1164), - [anon_sym__Noreturn] = ACTIONS(1164), - [anon_sym_noreturn] = ACTIONS(1164), - [sym_primitive_type] = ACTIONS(1164), - [anon_sym_enum] = ACTIONS(1164), - [anon_sym_struct] = ACTIONS(1164), - [anon_sym_union] = ACTIONS(1164), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_else] = ACTIONS(1164), - [anon_sym_switch] = ACTIONS(1164), - [anon_sym_case] = ACTIONS(1164), - [anon_sym_default] = ACTIONS(1164), - [anon_sym_while] = ACTIONS(1164), - [anon_sym_do] = ACTIONS(1164), - [anon_sym_for] = ACTIONS(1164), - [anon_sym_return] = ACTIONS(1164), - [anon_sym_break] = ACTIONS(1164), - [anon_sym_continue] = ACTIONS(1164), - [anon_sym_goto] = ACTIONS(1164), - [anon_sym___try] = ACTIONS(1164), - [anon_sym___leave] = ACTIONS(1164), - [anon_sym_DASH_DASH] = ACTIONS(1166), - [anon_sym_PLUS_PLUS] = ACTIONS(1166), - [anon_sym_sizeof] = ACTIONS(1164), - [anon_sym___alignof__] = ACTIONS(1164), - [anon_sym___alignof] = ACTIONS(1164), - [anon_sym__alignof] = ACTIONS(1164), - [anon_sym_alignof] = ACTIONS(1164), - [anon_sym__Alignof] = ACTIONS(1164), - [anon_sym_offsetof] = ACTIONS(1164), - [anon_sym__Generic] = ACTIONS(1164), - [anon_sym_asm] = ACTIONS(1164), - [anon_sym___asm__] = ACTIONS(1164), - [sym_number_literal] = ACTIONS(1166), - [anon_sym_L_SQUOTE] = ACTIONS(1166), - [anon_sym_u_SQUOTE] = ACTIONS(1166), - [anon_sym_U_SQUOTE] = ACTIONS(1166), - [anon_sym_u8_SQUOTE] = ACTIONS(1166), - [anon_sym_SQUOTE] = ACTIONS(1166), - [anon_sym_L_DQUOTE] = ACTIONS(1166), - [anon_sym_u_DQUOTE] = ACTIONS(1166), - [anon_sym_U_DQUOTE] = ACTIONS(1166), - [anon_sym_u8_DQUOTE] = ACTIONS(1166), - [anon_sym_DQUOTE] = ACTIONS(1166), - [sym_true] = ACTIONS(1164), - [sym_false] = ACTIONS(1164), - [anon_sym_NULL] = ACTIONS(1164), - [anon_sym_nullptr] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1139), + [aux_sym_preproc_include_token1] = ACTIONS(1139), + [aux_sym_preproc_def_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token2] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), + [sym_preproc_directive] = ACTIONS(1139), + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym___extension__] = ACTIONS(1139), + [anon_sym_typedef] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym___attribute__] = ACTIONS(1139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), + [anon_sym___declspec] = ACTIONS(1139), + [anon_sym___cdecl] = ACTIONS(1139), + [anon_sym___clrcall] = ACTIONS(1139), + [anon_sym___stdcall] = ACTIONS(1139), + [anon_sym___fastcall] = ACTIONS(1139), + [anon_sym___thiscall] = ACTIONS(1139), + [anon_sym___vectorcall] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1139), + [anon_sym_unsigned] = ACTIONS(1139), + [anon_sym_long] = ACTIONS(1139), + [anon_sym_short] = ACTIONS(1139), + [anon_sym_static] = ACTIONS(1139), + [anon_sym_auto] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_inline] = ACTIONS(1139), + [anon_sym___inline] = ACTIONS(1139), + [anon_sym___inline__] = ACTIONS(1139), + [anon_sym___forceinline] = ACTIONS(1139), + [anon_sym_thread_local] = ACTIONS(1139), + [anon_sym___thread] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_constexpr] = ACTIONS(1139), + [anon_sym_volatile] = ACTIONS(1139), + [anon_sym_restrict] = ACTIONS(1139), + [anon_sym___restrict__] = ACTIONS(1139), + [anon_sym__Atomic] = ACTIONS(1139), + [anon_sym__Noreturn] = ACTIONS(1139), + [anon_sym_noreturn] = ACTIONS(1139), + [anon_sym_alignas] = ACTIONS(1139), + [anon_sym__Alignas] = ACTIONS(1139), + [sym_primitive_type] = ACTIONS(1139), + [anon_sym_enum] = ACTIONS(1139), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_union] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_switch] = ACTIONS(1139), + [anon_sym_case] = ACTIONS(1139), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1139), + [anon_sym___leave] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_sizeof] = ACTIONS(1139), + [anon_sym___alignof__] = ACTIONS(1139), + [anon_sym___alignof] = ACTIONS(1139), + [anon_sym__alignof] = ACTIONS(1139), + [anon_sym_alignof] = ACTIONS(1139), + [anon_sym__Alignof] = ACTIONS(1139), + [anon_sym_offsetof] = ACTIONS(1139), + [anon_sym__Generic] = ACTIONS(1139), + [anon_sym_asm] = ACTIONS(1139), + [anon_sym___asm__] = ACTIONS(1139), + [sym_number_literal] = ACTIONS(1141), + [anon_sym_L_SQUOTE] = ACTIONS(1141), + [anon_sym_u_SQUOTE] = ACTIONS(1141), + [anon_sym_U_SQUOTE] = ACTIONS(1141), + [anon_sym_u8_SQUOTE] = ACTIONS(1141), + [anon_sym_SQUOTE] = ACTIONS(1141), + [anon_sym_L_DQUOTE] = ACTIONS(1141), + [anon_sym_u_DQUOTE] = ACTIONS(1141), + [anon_sym_U_DQUOTE] = ACTIONS(1141), + [anon_sym_u8_DQUOTE] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1141), + [sym_true] = ACTIONS(1139), + [sym_false] = ACTIONS(1139), + [anon_sym_NULL] = ACTIONS(1139), + [anon_sym_nullptr] = ACTIONS(1139), [sym_comment] = ACTIONS(3), }, [237] = { - [sym_identifier] = ACTIONS(1132), - [aux_sym_preproc_include_token1] = ACTIONS(1132), - [aux_sym_preproc_def_token1] = ACTIONS(1132), - [aux_sym_preproc_if_token1] = ACTIONS(1132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1132), - [sym_preproc_directive] = ACTIONS(1132), - [anon_sym_LPAREN2] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1132), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1134), - [anon_sym_SEMI] = ACTIONS(1134), - [anon_sym___extension__] = ACTIONS(1132), - [anon_sym_typedef] = ACTIONS(1132), - [anon_sym_extern] = ACTIONS(1132), - [anon_sym___attribute__] = ACTIONS(1132), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1134), - [anon_sym___declspec] = ACTIONS(1132), - [anon_sym___cdecl] = ACTIONS(1132), - [anon_sym___clrcall] = ACTIONS(1132), - [anon_sym___stdcall] = ACTIONS(1132), - [anon_sym___fastcall] = ACTIONS(1132), - [anon_sym___thiscall] = ACTIONS(1132), - [anon_sym___vectorcall] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_RBRACE] = ACTIONS(1134), - [anon_sym_signed] = ACTIONS(1132), - [anon_sym_unsigned] = ACTIONS(1132), - [anon_sym_long] = ACTIONS(1132), - [anon_sym_short] = ACTIONS(1132), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_auto] = ACTIONS(1132), - [anon_sym_register] = ACTIONS(1132), - [anon_sym_inline] = ACTIONS(1132), - [anon_sym___inline] = ACTIONS(1132), - [anon_sym___inline__] = ACTIONS(1132), - [anon_sym___forceinline] = ACTIONS(1132), - [anon_sym_thread_local] = ACTIONS(1132), - [anon_sym___thread] = ACTIONS(1132), - [anon_sym_const] = ACTIONS(1132), - [anon_sym_constexpr] = ACTIONS(1132), - [anon_sym_volatile] = ACTIONS(1132), - [anon_sym_restrict] = ACTIONS(1132), - [anon_sym___restrict__] = ACTIONS(1132), - [anon_sym__Atomic] = ACTIONS(1132), - [anon_sym__Noreturn] = ACTIONS(1132), - [anon_sym_noreturn] = ACTIONS(1132), - [sym_primitive_type] = ACTIONS(1132), - [anon_sym_enum] = ACTIONS(1132), - [anon_sym_struct] = ACTIONS(1132), - [anon_sym_union] = ACTIONS(1132), - [anon_sym_if] = ACTIONS(1132), - [anon_sym_else] = ACTIONS(1132), - [anon_sym_switch] = ACTIONS(1132), - [anon_sym_case] = ACTIONS(1132), - [anon_sym_default] = ACTIONS(1132), - [anon_sym_while] = ACTIONS(1132), - [anon_sym_do] = ACTIONS(1132), - [anon_sym_for] = ACTIONS(1132), - [anon_sym_return] = ACTIONS(1132), - [anon_sym_break] = ACTIONS(1132), - [anon_sym_continue] = ACTIONS(1132), - [anon_sym_goto] = ACTIONS(1132), - [anon_sym___try] = ACTIONS(1132), - [anon_sym___leave] = ACTIONS(1132), - [anon_sym_DASH_DASH] = ACTIONS(1134), - [anon_sym_PLUS_PLUS] = ACTIONS(1134), - [anon_sym_sizeof] = ACTIONS(1132), - [anon_sym___alignof__] = ACTIONS(1132), - [anon_sym___alignof] = ACTIONS(1132), - [anon_sym__alignof] = ACTIONS(1132), - [anon_sym_alignof] = ACTIONS(1132), - [anon_sym__Alignof] = ACTIONS(1132), - [anon_sym_offsetof] = ACTIONS(1132), - [anon_sym__Generic] = ACTIONS(1132), - [anon_sym_asm] = ACTIONS(1132), - [anon_sym___asm__] = ACTIONS(1132), - [sym_number_literal] = ACTIONS(1134), - [anon_sym_L_SQUOTE] = ACTIONS(1134), - [anon_sym_u_SQUOTE] = ACTIONS(1134), - [anon_sym_U_SQUOTE] = ACTIONS(1134), - [anon_sym_u8_SQUOTE] = ACTIONS(1134), - [anon_sym_SQUOTE] = ACTIONS(1134), - [anon_sym_L_DQUOTE] = ACTIONS(1134), - [anon_sym_u_DQUOTE] = ACTIONS(1134), - [anon_sym_U_DQUOTE] = ACTIONS(1134), - [anon_sym_u8_DQUOTE] = ACTIONS(1134), - [anon_sym_DQUOTE] = ACTIONS(1134), - [sym_true] = ACTIONS(1132), - [sym_false] = ACTIONS(1132), - [anon_sym_NULL] = ACTIONS(1132), - [anon_sym_nullptr] = ACTIONS(1132), + [ts_builtin_sym_end] = ACTIONS(1145), + [sym_identifier] = ACTIONS(1143), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym___extension__] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym___attribute__] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), + [anon_sym___declspec] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1143), + [anon_sym_unsigned] = ACTIONS(1143), + [anon_sym_long] = ACTIONS(1143), + [anon_sym_short] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_auto] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym___inline] = ACTIONS(1143), + [anon_sym___inline__] = ACTIONS(1143), + [anon_sym___forceinline] = ACTIONS(1143), + [anon_sym_thread_local] = ACTIONS(1143), + [anon_sym___thread] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym___restrict__] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym__Noreturn] = ACTIONS(1143), + [anon_sym_noreturn] = ACTIONS(1143), + [anon_sym_alignas] = ACTIONS(1143), + [anon_sym__Alignas] = ACTIONS(1143), + [sym_primitive_type] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_union] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(1143), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1143), + [anon_sym___try] = ACTIONS(1143), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_sizeof] = ACTIONS(1143), + [anon_sym___alignof__] = ACTIONS(1143), + [anon_sym___alignof] = ACTIONS(1143), + [anon_sym__alignof] = ACTIONS(1143), + [anon_sym_alignof] = ACTIONS(1143), + [anon_sym__Alignof] = ACTIONS(1143), + [anon_sym_offsetof] = ACTIONS(1143), + [anon_sym__Generic] = ACTIONS(1143), + [anon_sym_asm] = ACTIONS(1143), + [anon_sym___asm__] = ACTIONS(1143), + [sym_number_literal] = ACTIONS(1145), + [anon_sym_L_SQUOTE] = ACTIONS(1145), + [anon_sym_u_SQUOTE] = ACTIONS(1145), + [anon_sym_U_SQUOTE] = ACTIONS(1145), + [anon_sym_u8_SQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_L_DQUOTE] = ACTIONS(1145), + [anon_sym_u_DQUOTE] = ACTIONS(1145), + [anon_sym_U_DQUOTE] = ACTIONS(1145), + [anon_sym_u8_DQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_true] = ACTIONS(1143), + [sym_false] = ACTIONS(1143), + [anon_sym_NULL] = ACTIONS(1143), + [anon_sym_nullptr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), }, [238] = { - [sym_identifier] = ACTIONS(1160), - [aux_sym_preproc_include_token1] = ACTIONS(1160), - [aux_sym_preproc_def_token1] = ACTIONS(1160), - [aux_sym_preproc_if_token1] = ACTIONS(1160), - [aux_sym_preproc_if_token2] = ACTIONS(1160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1160), - [sym_preproc_directive] = ACTIONS(1160), - [anon_sym_LPAREN2] = ACTIONS(1162), - [anon_sym_BANG] = ACTIONS(1162), - [anon_sym_TILDE] = ACTIONS(1162), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_STAR] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1162), - [anon_sym_SEMI] = ACTIONS(1162), - [anon_sym___extension__] = ACTIONS(1160), - [anon_sym_typedef] = ACTIONS(1160), - [anon_sym_extern] = ACTIONS(1160), - [anon_sym___attribute__] = ACTIONS(1160), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1162), - [anon_sym___declspec] = ACTIONS(1160), - [anon_sym___cdecl] = ACTIONS(1160), - [anon_sym___clrcall] = ACTIONS(1160), - [anon_sym___stdcall] = ACTIONS(1160), - [anon_sym___fastcall] = ACTIONS(1160), - [anon_sym___thiscall] = ACTIONS(1160), - [anon_sym___vectorcall] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_signed] = ACTIONS(1160), - [anon_sym_unsigned] = ACTIONS(1160), - [anon_sym_long] = ACTIONS(1160), - [anon_sym_short] = ACTIONS(1160), - [anon_sym_static] = ACTIONS(1160), - [anon_sym_auto] = ACTIONS(1160), - [anon_sym_register] = ACTIONS(1160), - [anon_sym_inline] = ACTIONS(1160), - [anon_sym___inline] = ACTIONS(1160), - [anon_sym___inline__] = ACTIONS(1160), - [anon_sym___forceinline] = ACTIONS(1160), - [anon_sym_thread_local] = ACTIONS(1160), - [anon_sym___thread] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1160), - [anon_sym_constexpr] = ACTIONS(1160), - [anon_sym_volatile] = ACTIONS(1160), - [anon_sym_restrict] = ACTIONS(1160), - [anon_sym___restrict__] = ACTIONS(1160), - [anon_sym__Atomic] = ACTIONS(1160), - [anon_sym__Noreturn] = ACTIONS(1160), - [anon_sym_noreturn] = ACTIONS(1160), - [sym_primitive_type] = ACTIONS(1160), - [anon_sym_enum] = ACTIONS(1160), - [anon_sym_struct] = ACTIONS(1160), - [anon_sym_union] = ACTIONS(1160), - [anon_sym_if] = ACTIONS(1160), - [anon_sym_else] = ACTIONS(1160), - [anon_sym_switch] = ACTIONS(1160), - [anon_sym_case] = ACTIONS(1160), - [anon_sym_default] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1160), - [anon_sym_do] = ACTIONS(1160), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_return] = ACTIONS(1160), - [anon_sym_break] = ACTIONS(1160), - [anon_sym_continue] = ACTIONS(1160), - [anon_sym_goto] = ACTIONS(1160), - [anon_sym___try] = ACTIONS(1160), - [anon_sym___leave] = ACTIONS(1160), - [anon_sym_DASH_DASH] = ACTIONS(1162), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_sizeof] = ACTIONS(1160), - [anon_sym___alignof__] = ACTIONS(1160), - [anon_sym___alignof] = ACTIONS(1160), - [anon_sym__alignof] = ACTIONS(1160), - [anon_sym_alignof] = ACTIONS(1160), - [anon_sym__Alignof] = ACTIONS(1160), - [anon_sym_offsetof] = ACTIONS(1160), - [anon_sym__Generic] = ACTIONS(1160), - [anon_sym_asm] = ACTIONS(1160), - [anon_sym___asm__] = ACTIONS(1160), - [sym_number_literal] = ACTIONS(1162), - [anon_sym_L_SQUOTE] = ACTIONS(1162), - [anon_sym_u_SQUOTE] = ACTIONS(1162), - [anon_sym_U_SQUOTE] = ACTIONS(1162), - [anon_sym_u8_SQUOTE] = ACTIONS(1162), - [anon_sym_SQUOTE] = ACTIONS(1162), - [anon_sym_L_DQUOTE] = ACTIONS(1162), - [anon_sym_u_DQUOTE] = ACTIONS(1162), - [anon_sym_U_DQUOTE] = ACTIONS(1162), - [anon_sym_u8_DQUOTE] = ACTIONS(1162), - [anon_sym_DQUOTE] = ACTIONS(1162), - [sym_true] = ACTIONS(1160), - [sym_false] = ACTIONS(1160), - [anon_sym_NULL] = ACTIONS(1160), - [anon_sym_nullptr] = ACTIONS(1160), + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_RBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), [sym_comment] = ACTIONS(3), }, [239] = { - [sym_identifier] = ACTIONS(1136), - [aux_sym_preproc_include_token1] = ACTIONS(1136), - [aux_sym_preproc_def_token1] = ACTIONS(1136), - [aux_sym_preproc_if_token1] = ACTIONS(1136), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1136), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1136), - [sym_preproc_directive] = ACTIONS(1136), - [anon_sym_LPAREN2] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1138), - [anon_sym_TILDE] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1136), - [anon_sym_PLUS] = ACTIONS(1136), - [anon_sym_STAR] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym___extension__] = ACTIONS(1136), - [anon_sym_typedef] = ACTIONS(1136), - [anon_sym_extern] = ACTIONS(1136), - [anon_sym___attribute__] = ACTIONS(1136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1138), - [anon_sym___declspec] = ACTIONS(1136), - [anon_sym___cdecl] = ACTIONS(1136), - [anon_sym___clrcall] = ACTIONS(1136), - [anon_sym___stdcall] = ACTIONS(1136), - [anon_sym___fastcall] = ACTIONS(1136), - [anon_sym___thiscall] = ACTIONS(1136), - [anon_sym___vectorcall] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_RBRACE] = ACTIONS(1138), - [anon_sym_signed] = ACTIONS(1136), - [anon_sym_unsigned] = ACTIONS(1136), - [anon_sym_long] = ACTIONS(1136), - [anon_sym_short] = ACTIONS(1136), - [anon_sym_static] = ACTIONS(1136), - [anon_sym_auto] = ACTIONS(1136), - [anon_sym_register] = ACTIONS(1136), - [anon_sym_inline] = ACTIONS(1136), - [anon_sym___inline] = ACTIONS(1136), - [anon_sym___inline__] = ACTIONS(1136), - [anon_sym___forceinline] = ACTIONS(1136), - [anon_sym_thread_local] = ACTIONS(1136), - [anon_sym___thread] = ACTIONS(1136), - [anon_sym_const] = ACTIONS(1136), - [anon_sym_constexpr] = ACTIONS(1136), - [anon_sym_volatile] = ACTIONS(1136), - [anon_sym_restrict] = ACTIONS(1136), - [anon_sym___restrict__] = ACTIONS(1136), - [anon_sym__Atomic] = ACTIONS(1136), - [anon_sym__Noreturn] = ACTIONS(1136), - [anon_sym_noreturn] = ACTIONS(1136), - [sym_primitive_type] = ACTIONS(1136), - [anon_sym_enum] = ACTIONS(1136), - [anon_sym_struct] = ACTIONS(1136), - [anon_sym_union] = ACTIONS(1136), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_else] = ACTIONS(1136), - [anon_sym_switch] = ACTIONS(1136), - [anon_sym_case] = ACTIONS(1136), - [anon_sym_default] = ACTIONS(1136), - [anon_sym_while] = ACTIONS(1136), - [anon_sym_do] = ACTIONS(1136), - [anon_sym_for] = ACTIONS(1136), - [anon_sym_return] = ACTIONS(1136), - [anon_sym_break] = ACTIONS(1136), - [anon_sym_continue] = ACTIONS(1136), - [anon_sym_goto] = ACTIONS(1136), - [anon_sym___try] = ACTIONS(1136), - [anon_sym___leave] = ACTIONS(1136), - [anon_sym_DASH_DASH] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1138), - [anon_sym_sizeof] = ACTIONS(1136), - [anon_sym___alignof__] = ACTIONS(1136), - [anon_sym___alignof] = ACTIONS(1136), - [anon_sym__alignof] = ACTIONS(1136), - [anon_sym_alignof] = ACTIONS(1136), - [anon_sym__Alignof] = ACTIONS(1136), - [anon_sym_offsetof] = ACTIONS(1136), - [anon_sym__Generic] = ACTIONS(1136), - [anon_sym_asm] = ACTIONS(1136), - [anon_sym___asm__] = ACTIONS(1136), - [sym_number_literal] = ACTIONS(1138), - [anon_sym_L_SQUOTE] = ACTIONS(1138), - [anon_sym_u_SQUOTE] = ACTIONS(1138), - [anon_sym_U_SQUOTE] = ACTIONS(1138), - [anon_sym_u8_SQUOTE] = ACTIONS(1138), - [anon_sym_SQUOTE] = ACTIONS(1138), - [anon_sym_L_DQUOTE] = ACTIONS(1138), - [anon_sym_u_DQUOTE] = ACTIONS(1138), - [anon_sym_U_DQUOTE] = ACTIONS(1138), - [anon_sym_u8_DQUOTE] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(1138), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [anon_sym_NULL] = ACTIONS(1136), - [anon_sym_nullptr] = ACTIONS(1136), + [ts_builtin_sym_end] = ACTIONS(1181), + [sym_identifier] = ACTIONS(1179), + [aux_sym_preproc_include_token1] = ACTIONS(1179), + [aux_sym_preproc_def_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), + [sym_preproc_directive] = ACTIONS(1179), + [anon_sym_LPAREN2] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym___extension__] = ACTIONS(1179), + [anon_sym_typedef] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym___attribute__] = ACTIONS(1179), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym___declspec] = ACTIONS(1179), + [anon_sym___cdecl] = ACTIONS(1179), + [anon_sym___clrcall] = ACTIONS(1179), + [anon_sym___stdcall] = ACTIONS(1179), + [anon_sym___fastcall] = ACTIONS(1179), + [anon_sym___thiscall] = ACTIONS(1179), + [anon_sym___vectorcall] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_signed] = ACTIONS(1179), + [anon_sym_unsigned] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_auto] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_inline] = ACTIONS(1179), + [anon_sym___inline] = ACTIONS(1179), + [anon_sym___inline__] = ACTIONS(1179), + [anon_sym___forceinline] = ACTIONS(1179), + [anon_sym_thread_local] = ACTIONS(1179), + [anon_sym___thread] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_constexpr] = ACTIONS(1179), + [anon_sym_volatile] = ACTIONS(1179), + [anon_sym_restrict] = ACTIONS(1179), + [anon_sym___restrict__] = ACTIONS(1179), + [anon_sym__Atomic] = ACTIONS(1179), + [anon_sym__Noreturn] = ACTIONS(1179), + [anon_sym_noreturn] = ACTIONS(1179), + [anon_sym_alignas] = ACTIONS(1179), + [anon_sym__Alignas] = ACTIONS(1179), + [sym_primitive_type] = ACTIONS(1179), + [anon_sym_enum] = ACTIONS(1179), + [anon_sym_struct] = ACTIONS(1179), + [anon_sym_union] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_case] = ACTIONS(1179), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_goto] = ACTIONS(1179), + [anon_sym___try] = ACTIONS(1179), + [anon_sym___leave] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_sizeof] = ACTIONS(1179), + [anon_sym___alignof__] = ACTIONS(1179), + [anon_sym___alignof] = ACTIONS(1179), + [anon_sym__alignof] = ACTIONS(1179), + [anon_sym_alignof] = ACTIONS(1179), + [anon_sym__Alignof] = ACTIONS(1179), + [anon_sym_offsetof] = ACTIONS(1179), + [anon_sym__Generic] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym___asm__] = ACTIONS(1179), + [sym_number_literal] = ACTIONS(1181), + [anon_sym_L_SQUOTE] = ACTIONS(1181), + [anon_sym_u_SQUOTE] = ACTIONS(1181), + [anon_sym_U_SQUOTE] = ACTIONS(1181), + [anon_sym_u8_SQUOTE] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_L_DQUOTE] = ACTIONS(1181), + [anon_sym_u_DQUOTE] = ACTIONS(1181), + [anon_sym_U_DQUOTE] = ACTIONS(1181), + [anon_sym_u8_DQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym_true] = ACTIONS(1179), + [sym_false] = ACTIONS(1179), + [anon_sym_NULL] = ACTIONS(1179), + [anon_sym_nullptr] = ACTIONS(1179), [sym_comment] = ACTIONS(3), }, [240] = { - [sym_identifier] = ACTIONS(1140), - [aux_sym_preproc_include_token1] = ACTIONS(1140), - [aux_sym_preproc_def_token1] = ACTIONS(1140), - [aux_sym_preproc_if_token1] = ACTIONS(1140), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1140), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1140), - [sym_preproc_directive] = ACTIONS(1140), - [anon_sym_LPAREN2] = ACTIONS(1142), - [anon_sym_BANG] = ACTIONS(1142), - [anon_sym_TILDE] = ACTIONS(1142), - [anon_sym_DASH] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(1140), - [anon_sym_STAR] = ACTIONS(1142), - [anon_sym_AMP] = ACTIONS(1142), - [anon_sym_SEMI] = ACTIONS(1142), - [anon_sym___extension__] = ACTIONS(1140), - [anon_sym_typedef] = ACTIONS(1140), - [anon_sym_extern] = ACTIONS(1140), - [anon_sym___attribute__] = ACTIONS(1140), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), - [anon_sym___declspec] = ACTIONS(1140), - [anon_sym___cdecl] = ACTIONS(1140), - [anon_sym___clrcall] = ACTIONS(1140), - [anon_sym___stdcall] = ACTIONS(1140), - [anon_sym___fastcall] = ACTIONS(1140), - [anon_sym___thiscall] = ACTIONS(1140), - [anon_sym___vectorcall] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(1142), - [anon_sym_RBRACE] = ACTIONS(1142), - [anon_sym_signed] = ACTIONS(1140), - [anon_sym_unsigned] = ACTIONS(1140), - [anon_sym_long] = ACTIONS(1140), - [anon_sym_short] = ACTIONS(1140), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_auto] = ACTIONS(1140), - [anon_sym_register] = ACTIONS(1140), - [anon_sym_inline] = ACTIONS(1140), - [anon_sym___inline] = ACTIONS(1140), - [anon_sym___inline__] = ACTIONS(1140), - [anon_sym___forceinline] = ACTIONS(1140), - [anon_sym_thread_local] = ACTIONS(1140), - [anon_sym___thread] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1140), - [anon_sym_constexpr] = ACTIONS(1140), - [anon_sym_volatile] = ACTIONS(1140), - [anon_sym_restrict] = ACTIONS(1140), - [anon_sym___restrict__] = ACTIONS(1140), - [anon_sym__Atomic] = ACTIONS(1140), - [anon_sym__Noreturn] = ACTIONS(1140), - [anon_sym_noreturn] = ACTIONS(1140), - [sym_primitive_type] = ACTIONS(1140), - [anon_sym_enum] = ACTIONS(1140), - [anon_sym_struct] = ACTIONS(1140), - [anon_sym_union] = ACTIONS(1140), - [anon_sym_if] = ACTIONS(1140), - [anon_sym_else] = ACTIONS(1140), - [anon_sym_switch] = ACTIONS(1140), - [anon_sym_case] = ACTIONS(1140), - [anon_sym_default] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1140), - [anon_sym_return] = ACTIONS(1140), - [anon_sym_break] = ACTIONS(1140), - [anon_sym_continue] = ACTIONS(1140), - [anon_sym_goto] = ACTIONS(1140), - [anon_sym___try] = ACTIONS(1140), - [anon_sym___leave] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1142), - [anon_sym_PLUS_PLUS] = ACTIONS(1142), - [anon_sym_sizeof] = ACTIONS(1140), - [anon_sym___alignof__] = ACTIONS(1140), - [anon_sym___alignof] = ACTIONS(1140), - [anon_sym__alignof] = ACTIONS(1140), - [anon_sym_alignof] = ACTIONS(1140), - [anon_sym__Alignof] = ACTIONS(1140), - [anon_sym_offsetof] = ACTIONS(1140), - [anon_sym__Generic] = ACTIONS(1140), - [anon_sym_asm] = ACTIONS(1140), - [anon_sym___asm__] = ACTIONS(1140), - [sym_number_literal] = ACTIONS(1142), - [anon_sym_L_SQUOTE] = ACTIONS(1142), - [anon_sym_u_SQUOTE] = ACTIONS(1142), - [anon_sym_U_SQUOTE] = ACTIONS(1142), - [anon_sym_u8_SQUOTE] = ACTIONS(1142), - [anon_sym_SQUOTE] = ACTIONS(1142), - [anon_sym_L_DQUOTE] = ACTIONS(1142), - [anon_sym_u_DQUOTE] = ACTIONS(1142), - [anon_sym_U_DQUOTE] = ACTIONS(1142), - [anon_sym_u8_DQUOTE] = ACTIONS(1142), - [anon_sym_DQUOTE] = ACTIONS(1142), - [sym_true] = ACTIONS(1140), - [sym_false] = ACTIONS(1140), - [anon_sym_NULL] = ACTIONS(1140), - [anon_sym_nullptr] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1163), + [aux_sym_preproc_include_token1] = ACTIONS(1163), + [aux_sym_preproc_def_token1] = ACTIONS(1163), + [aux_sym_preproc_if_token1] = ACTIONS(1163), + [aux_sym_preproc_if_token2] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), + [sym_preproc_directive] = ACTIONS(1163), + [anon_sym_LPAREN2] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym___extension__] = ACTIONS(1163), + [anon_sym_typedef] = ACTIONS(1163), + [anon_sym_extern] = ACTIONS(1163), + [anon_sym___attribute__] = ACTIONS(1163), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), + [anon_sym___declspec] = ACTIONS(1163), + [anon_sym___cdecl] = ACTIONS(1163), + [anon_sym___clrcall] = ACTIONS(1163), + [anon_sym___stdcall] = ACTIONS(1163), + [anon_sym___fastcall] = ACTIONS(1163), + [anon_sym___thiscall] = ACTIONS(1163), + [anon_sym___vectorcall] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_signed] = ACTIONS(1163), + [anon_sym_unsigned] = ACTIONS(1163), + [anon_sym_long] = ACTIONS(1163), + [anon_sym_short] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_auto] = ACTIONS(1163), + [anon_sym_register] = ACTIONS(1163), + [anon_sym_inline] = ACTIONS(1163), + [anon_sym___inline] = ACTIONS(1163), + [anon_sym___inline__] = ACTIONS(1163), + [anon_sym___forceinline] = ACTIONS(1163), + [anon_sym_thread_local] = ACTIONS(1163), + [anon_sym___thread] = ACTIONS(1163), + [anon_sym_const] = ACTIONS(1163), + [anon_sym_constexpr] = ACTIONS(1163), + [anon_sym_volatile] = ACTIONS(1163), + [anon_sym_restrict] = ACTIONS(1163), + [anon_sym___restrict__] = ACTIONS(1163), + [anon_sym__Atomic] = ACTIONS(1163), + [anon_sym__Noreturn] = ACTIONS(1163), + [anon_sym_noreturn] = ACTIONS(1163), + [anon_sym_alignas] = ACTIONS(1163), + [anon_sym__Alignas] = ACTIONS(1163), + [sym_primitive_type] = ACTIONS(1163), + [anon_sym_enum] = ACTIONS(1163), + [anon_sym_struct] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_else] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1163), + [anon_sym_case] = ACTIONS(1163), + [anon_sym_default] = ACTIONS(1163), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_do] = ACTIONS(1163), + [anon_sym_for] = ACTIONS(1163), + [anon_sym_return] = ACTIONS(1163), + [anon_sym_break] = ACTIONS(1163), + [anon_sym_continue] = ACTIONS(1163), + [anon_sym_goto] = ACTIONS(1163), + [anon_sym___try] = ACTIONS(1163), + [anon_sym___leave] = ACTIONS(1163), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_sizeof] = ACTIONS(1163), + [anon_sym___alignof__] = ACTIONS(1163), + [anon_sym___alignof] = ACTIONS(1163), + [anon_sym__alignof] = ACTIONS(1163), + [anon_sym_alignof] = ACTIONS(1163), + [anon_sym__Alignof] = ACTIONS(1163), + [anon_sym_offsetof] = ACTIONS(1163), + [anon_sym__Generic] = ACTIONS(1163), + [anon_sym_asm] = ACTIONS(1163), + [anon_sym___asm__] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(1165), + [anon_sym_L_SQUOTE] = ACTIONS(1165), + [anon_sym_u_SQUOTE] = ACTIONS(1165), + [anon_sym_U_SQUOTE] = ACTIONS(1165), + [anon_sym_u8_SQUOTE] = ACTIONS(1165), + [anon_sym_SQUOTE] = ACTIONS(1165), + [anon_sym_L_DQUOTE] = ACTIONS(1165), + [anon_sym_u_DQUOTE] = ACTIONS(1165), + [anon_sym_U_DQUOTE] = ACTIONS(1165), + [anon_sym_u8_DQUOTE] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym_true] = ACTIONS(1163), + [sym_false] = ACTIONS(1163), + [anon_sym_NULL] = ACTIONS(1163), + [anon_sym_nullptr] = ACTIONS(1163), [sym_comment] = ACTIONS(3), }, [241] = { - [sym_identifier] = ACTIONS(1212), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym___extension__] = ACTIONS(1212), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym___inline] = ACTIONS(1212), - [anon_sym___inline__] = ACTIONS(1212), - [anon_sym___forceinline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym___thread] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1212), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym___try] = ACTIONS(1212), - [anon_sym___leave] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym___alignof__] = ACTIONS(1212), - [anon_sym___alignof] = ACTIONS(1212), - [anon_sym__alignof] = ACTIONS(1212), - [anon_sym_alignof] = ACTIONS(1212), - [anon_sym__Alignof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1223), + [aux_sym_preproc_include_token1] = ACTIONS(1223), + [aux_sym_preproc_def_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_LPAREN2] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym___extension__] = ACTIONS(1223), + [anon_sym_typedef] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(1223), + [anon_sym___attribute__] = ACTIONS(1223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), + [anon_sym___declspec] = ACTIONS(1223), + [anon_sym___cdecl] = ACTIONS(1223), + [anon_sym___clrcall] = ACTIONS(1223), + [anon_sym___stdcall] = ACTIONS(1223), + [anon_sym___fastcall] = ACTIONS(1223), + [anon_sym___thiscall] = ACTIONS(1223), + [anon_sym___vectorcall] = ACTIONS(1223), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(1223), + [anon_sym_unsigned] = ACTIONS(1223), + [anon_sym_long] = ACTIONS(1223), + [anon_sym_short] = ACTIONS(1223), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_auto] = ACTIONS(1223), + [anon_sym_register] = ACTIONS(1223), + [anon_sym_inline] = ACTIONS(1223), + [anon_sym___inline] = ACTIONS(1223), + [anon_sym___inline__] = ACTIONS(1223), + [anon_sym___forceinline] = ACTIONS(1223), + [anon_sym_thread_local] = ACTIONS(1223), + [anon_sym___thread] = ACTIONS(1223), + [anon_sym_const] = ACTIONS(1223), + [anon_sym_constexpr] = ACTIONS(1223), + [anon_sym_volatile] = ACTIONS(1223), + [anon_sym_restrict] = ACTIONS(1223), + [anon_sym___restrict__] = ACTIONS(1223), + [anon_sym__Atomic] = ACTIONS(1223), + [anon_sym__Noreturn] = ACTIONS(1223), + [anon_sym_noreturn] = ACTIONS(1223), + [anon_sym_alignas] = ACTIONS(1223), + [anon_sym__Alignas] = ACTIONS(1223), + [sym_primitive_type] = ACTIONS(1223), + [anon_sym_enum] = ACTIONS(1223), + [anon_sym_struct] = ACTIONS(1223), + [anon_sym_union] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1223), + [anon_sym_else] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1223), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_do] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1223), + [anon_sym_break] = ACTIONS(1223), + [anon_sym_continue] = ACTIONS(1223), + [anon_sym_goto] = ACTIONS(1223), + [anon_sym___try] = ACTIONS(1223), + [anon_sym___leave] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_sizeof] = ACTIONS(1223), + [anon_sym___alignof__] = ACTIONS(1223), + [anon_sym___alignof] = ACTIONS(1223), + [anon_sym__alignof] = ACTIONS(1223), + [anon_sym_alignof] = ACTIONS(1223), + [anon_sym__Alignof] = ACTIONS(1223), + [anon_sym_offsetof] = ACTIONS(1223), + [anon_sym__Generic] = ACTIONS(1223), + [anon_sym_asm] = ACTIONS(1223), + [anon_sym___asm__] = ACTIONS(1223), + [sym_number_literal] = ACTIONS(1225), + [anon_sym_L_SQUOTE] = ACTIONS(1225), + [anon_sym_u_SQUOTE] = ACTIONS(1225), + [anon_sym_U_SQUOTE] = ACTIONS(1225), + [anon_sym_u8_SQUOTE] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_L_DQUOTE] = ACTIONS(1225), + [anon_sym_u_DQUOTE] = ACTIONS(1225), + [anon_sym_U_DQUOTE] = ACTIONS(1225), + [anon_sym_u8_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [anon_sym_NULL] = ACTIONS(1223), + [anon_sym_nullptr] = ACTIONS(1223), [sym_comment] = ACTIONS(3), }, [242] = { - [sym_identifier] = ACTIONS(1152), - [aux_sym_preproc_include_token1] = ACTIONS(1152), - [aux_sym_preproc_def_token1] = ACTIONS(1152), - [aux_sym_preproc_if_token1] = ACTIONS(1152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1152), - [sym_preproc_directive] = ACTIONS(1152), - [anon_sym_LPAREN2] = ACTIONS(1154), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1154), - [anon_sym___extension__] = ACTIONS(1152), - [anon_sym_typedef] = ACTIONS(1152), - [anon_sym_extern] = ACTIONS(1152), - [anon_sym___attribute__] = ACTIONS(1152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1154), - [anon_sym___declspec] = ACTIONS(1152), - [anon_sym___cdecl] = ACTIONS(1152), - [anon_sym___clrcall] = ACTIONS(1152), - [anon_sym___stdcall] = ACTIONS(1152), - [anon_sym___fastcall] = ACTIONS(1152), - [anon_sym___thiscall] = ACTIONS(1152), - [anon_sym___vectorcall] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_RBRACE] = ACTIONS(1154), - [anon_sym_signed] = ACTIONS(1152), - [anon_sym_unsigned] = ACTIONS(1152), - [anon_sym_long] = ACTIONS(1152), - [anon_sym_short] = ACTIONS(1152), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_auto] = ACTIONS(1152), - [anon_sym_register] = ACTIONS(1152), - [anon_sym_inline] = ACTIONS(1152), - [anon_sym___inline] = ACTIONS(1152), - [anon_sym___inline__] = ACTIONS(1152), - [anon_sym___forceinline] = ACTIONS(1152), - [anon_sym_thread_local] = ACTIONS(1152), - [anon_sym___thread] = ACTIONS(1152), - [anon_sym_const] = ACTIONS(1152), - [anon_sym_constexpr] = ACTIONS(1152), - [anon_sym_volatile] = ACTIONS(1152), - [anon_sym_restrict] = ACTIONS(1152), - [anon_sym___restrict__] = ACTIONS(1152), - [anon_sym__Atomic] = ACTIONS(1152), - [anon_sym__Noreturn] = ACTIONS(1152), - [anon_sym_noreturn] = ACTIONS(1152), - [sym_primitive_type] = ACTIONS(1152), - [anon_sym_enum] = ACTIONS(1152), - [anon_sym_struct] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(1152), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_else] = ACTIONS(1152), - [anon_sym_switch] = ACTIONS(1152), - [anon_sym_case] = ACTIONS(1152), - [anon_sym_default] = ACTIONS(1152), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(1152), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_return] = ACTIONS(1152), - [anon_sym_break] = ACTIONS(1152), - [anon_sym_continue] = ACTIONS(1152), - [anon_sym_goto] = ACTIONS(1152), - [anon_sym___try] = ACTIONS(1152), - [anon_sym___leave] = ACTIONS(1152), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_sizeof] = ACTIONS(1152), - [anon_sym___alignof__] = ACTIONS(1152), - [anon_sym___alignof] = ACTIONS(1152), - [anon_sym__alignof] = ACTIONS(1152), - [anon_sym_alignof] = ACTIONS(1152), - [anon_sym__Alignof] = ACTIONS(1152), - [anon_sym_offsetof] = ACTIONS(1152), - [anon_sym__Generic] = ACTIONS(1152), - [anon_sym_asm] = ACTIONS(1152), - [anon_sym___asm__] = ACTIONS(1152), - [sym_number_literal] = ACTIONS(1154), - [anon_sym_L_SQUOTE] = ACTIONS(1154), - [anon_sym_u_SQUOTE] = ACTIONS(1154), - [anon_sym_U_SQUOTE] = ACTIONS(1154), - [anon_sym_u8_SQUOTE] = ACTIONS(1154), - [anon_sym_SQUOTE] = ACTIONS(1154), - [anon_sym_L_DQUOTE] = ACTIONS(1154), - [anon_sym_u_DQUOTE] = ACTIONS(1154), - [anon_sym_U_DQUOTE] = ACTIONS(1154), - [anon_sym_u8_DQUOTE] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1154), - [sym_true] = ACTIONS(1152), - [sym_false] = ACTIONS(1152), - [anon_sym_NULL] = ACTIONS(1152), - [anon_sym_nullptr] = ACTIONS(1152), + [sym_identifier] = ACTIONS(1159), + [aux_sym_preproc_include_token1] = ACTIONS(1159), + [aux_sym_preproc_def_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), + [sym_preproc_directive] = ACTIONS(1159), + [anon_sym_LPAREN2] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(1161), + [anon_sym_TILDE] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1161), + [anon_sym___extension__] = ACTIONS(1159), + [anon_sym_typedef] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym___attribute__] = ACTIONS(1159), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), + [anon_sym___declspec] = ACTIONS(1159), + [anon_sym___cdecl] = ACTIONS(1159), + [anon_sym___clrcall] = ACTIONS(1159), + [anon_sym___stdcall] = ACTIONS(1159), + [anon_sym___fastcall] = ACTIONS(1159), + [anon_sym___thiscall] = ACTIONS(1159), + [anon_sym___vectorcall] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym_signed] = ACTIONS(1159), + [anon_sym_unsigned] = ACTIONS(1159), + [anon_sym_long] = ACTIONS(1159), + [anon_sym_short] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_auto] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_inline] = ACTIONS(1159), + [anon_sym___inline] = ACTIONS(1159), + [anon_sym___inline__] = ACTIONS(1159), + [anon_sym___forceinline] = ACTIONS(1159), + [anon_sym_thread_local] = ACTIONS(1159), + [anon_sym___thread] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_constexpr] = ACTIONS(1159), + [anon_sym_volatile] = ACTIONS(1159), + [anon_sym_restrict] = ACTIONS(1159), + [anon_sym___restrict__] = ACTIONS(1159), + [anon_sym__Atomic] = ACTIONS(1159), + [anon_sym__Noreturn] = ACTIONS(1159), + [anon_sym_noreturn] = ACTIONS(1159), + [anon_sym_alignas] = ACTIONS(1159), + [anon_sym__Alignas] = ACTIONS(1159), + [sym_primitive_type] = ACTIONS(1159), + [anon_sym_enum] = ACTIONS(1159), + [anon_sym_struct] = ACTIONS(1159), + [anon_sym_union] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_switch] = ACTIONS(1159), + [anon_sym_case] = ACTIONS(1159), + [anon_sym_default] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_goto] = ACTIONS(1159), + [anon_sym___try] = ACTIONS(1159), + [anon_sym___leave] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1161), + [anon_sym_PLUS_PLUS] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1159), + [anon_sym___alignof__] = ACTIONS(1159), + [anon_sym___alignof] = ACTIONS(1159), + [anon_sym__alignof] = ACTIONS(1159), + [anon_sym_alignof] = ACTIONS(1159), + [anon_sym__Alignof] = ACTIONS(1159), + [anon_sym_offsetof] = ACTIONS(1159), + [anon_sym__Generic] = ACTIONS(1159), + [anon_sym_asm] = ACTIONS(1159), + [anon_sym___asm__] = ACTIONS(1159), + [sym_number_literal] = ACTIONS(1161), + [anon_sym_L_SQUOTE] = ACTIONS(1161), + [anon_sym_u_SQUOTE] = ACTIONS(1161), + [anon_sym_U_SQUOTE] = ACTIONS(1161), + [anon_sym_u8_SQUOTE] = ACTIONS(1161), + [anon_sym_SQUOTE] = ACTIONS(1161), + [anon_sym_L_DQUOTE] = ACTIONS(1161), + [anon_sym_u_DQUOTE] = ACTIONS(1161), + [anon_sym_U_DQUOTE] = ACTIONS(1161), + [anon_sym_u8_DQUOTE] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym_true] = ACTIONS(1159), + [sym_false] = ACTIONS(1159), + [anon_sym_NULL] = ACTIONS(1159), + [anon_sym_nullptr] = ACTIONS(1159), [sym_comment] = ACTIONS(3), }, [243] = { - [ts_builtin_sym_end] = ACTIONS(1226), - [sym_identifier] = ACTIONS(1224), - [aux_sym_preproc_include_token1] = ACTIONS(1224), - [aux_sym_preproc_def_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), - [sym_preproc_directive] = ACTIONS(1224), - [anon_sym_LPAREN2] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym___extension__] = ACTIONS(1224), - [anon_sym_typedef] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym___attribute__] = ACTIONS(1224), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), - [anon_sym___declspec] = ACTIONS(1224), - [anon_sym___cdecl] = ACTIONS(1224), - [anon_sym___clrcall] = ACTIONS(1224), - [anon_sym___stdcall] = ACTIONS(1224), - [anon_sym___fastcall] = ACTIONS(1224), - [anon_sym___thiscall] = ACTIONS(1224), - [anon_sym___vectorcall] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_auto] = ACTIONS(1224), - [anon_sym_register] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym___inline] = ACTIONS(1224), - [anon_sym___inline__] = ACTIONS(1224), - [anon_sym___forceinline] = ACTIONS(1224), - [anon_sym_thread_local] = ACTIONS(1224), - [anon_sym___thread] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_constexpr] = ACTIONS(1224), - [anon_sym_volatile] = ACTIONS(1224), - [anon_sym_restrict] = ACTIONS(1224), - [anon_sym___restrict__] = ACTIONS(1224), - [anon_sym__Atomic] = ACTIONS(1224), - [anon_sym__Noreturn] = ACTIONS(1224), - [anon_sym_noreturn] = ACTIONS(1224), - [sym_primitive_type] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1224), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_goto] = ACTIONS(1224), - [anon_sym___try] = ACTIONS(1224), - [anon_sym___leave] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1224), - [anon_sym___alignof__] = ACTIONS(1224), - [anon_sym___alignof] = ACTIONS(1224), - [anon_sym__alignof] = ACTIONS(1224), - [anon_sym_alignof] = ACTIONS(1224), - [anon_sym__Alignof] = ACTIONS(1224), - [anon_sym_offsetof] = ACTIONS(1224), - [anon_sym__Generic] = ACTIONS(1224), - [anon_sym_asm] = ACTIONS(1224), - [anon_sym___asm__] = ACTIONS(1224), - [sym_number_literal] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1226), - [anon_sym_u_SQUOTE] = ACTIONS(1226), - [anon_sym_U_SQUOTE] = ACTIONS(1226), - [anon_sym_u8_SQUOTE] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_L_DQUOTE] = ACTIONS(1226), - [anon_sym_u_DQUOTE] = ACTIONS(1226), - [anon_sym_U_DQUOTE] = ACTIONS(1226), - [anon_sym_u8_DQUOTE] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_true] = ACTIONS(1224), - [sym_false] = ACTIONS(1224), - [anon_sym_NULL] = ACTIONS(1224), - [anon_sym_nullptr] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [244] = { - [ts_builtin_sym_end] = ACTIONS(1210), - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym___extension__] = ACTIONS(1208), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym___inline] = ACTIONS(1208), - [anon_sym___inline__] = ACTIONS(1208), - [anon_sym___forceinline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym___thread] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym___try] = ACTIONS(1208), - [anon_sym___leave] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym___alignof__] = ACTIONS(1208), - [anon_sym___alignof] = ACTIONS(1208), - [anon_sym__alignof] = ACTIONS(1208), - [anon_sym_alignof] = ACTIONS(1208), - [anon_sym__Alignof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), + [ts_builtin_sym_end] = ACTIONS(1205), + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, [245] = { - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym___extension__] = ACTIONS(1204), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym___inline] = ACTIONS(1204), - [anon_sym___inline__] = ACTIONS(1204), - [anon_sym___forceinline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym___thread] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym___try] = ACTIONS(1204), - [anon_sym___leave] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym___alignof__] = ACTIONS(1204), - [anon_sym___alignof] = ACTIONS(1204), - [anon_sym__alignof] = ACTIONS(1204), - [anon_sym_alignof] = ACTIONS(1204), - [anon_sym__Alignof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [246] = { - [sym_identifier] = ACTIONS(1196), - [aux_sym_preproc_include_token1] = ACTIONS(1196), - [aux_sym_preproc_def_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), - [sym_preproc_directive] = ACTIONS(1196), - [anon_sym_LPAREN2] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym___extension__] = ACTIONS(1196), - [anon_sym_typedef] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym___attribute__] = ACTIONS(1196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), - [anon_sym___declspec] = ACTIONS(1196), - [anon_sym___cdecl] = ACTIONS(1196), - [anon_sym___clrcall] = ACTIONS(1196), - [anon_sym___stdcall] = ACTIONS(1196), - [anon_sym___fastcall] = ACTIONS(1196), - [anon_sym___thiscall] = ACTIONS(1196), - [anon_sym___vectorcall] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_RBRACE] = ACTIONS(1198), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_auto] = ACTIONS(1196), - [anon_sym_register] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym___inline] = ACTIONS(1196), - [anon_sym___inline__] = ACTIONS(1196), - [anon_sym___forceinline] = ACTIONS(1196), - [anon_sym_thread_local] = ACTIONS(1196), - [anon_sym___thread] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_constexpr] = ACTIONS(1196), - [anon_sym_volatile] = ACTIONS(1196), - [anon_sym_restrict] = ACTIONS(1196), - [anon_sym___restrict__] = ACTIONS(1196), - [anon_sym__Atomic] = ACTIONS(1196), - [anon_sym__Noreturn] = ACTIONS(1196), - [anon_sym_noreturn] = ACTIONS(1196), - [sym_primitive_type] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_case] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_goto] = ACTIONS(1196), - [anon_sym___try] = ACTIONS(1196), - [anon_sym___leave] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_sizeof] = ACTIONS(1196), - [anon_sym___alignof__] = ACTIONS(1196), - [anon_sym___alignof] = ACTIONS(1196), - [anon_sym__alignof] = ACTIONS(1196), - [anon_sym_alignof] = ACTIONS(1196), - [anon_sym__Alignof] = ACTIONS(1196), - [anon_sym_offsetof] = ACTIONS(1196), - [anon_sym__Generic] = ACTIONS(1196), - [anon_sym_asm] = ACTIONS(1196), - [anon_sym___asm__] = ACTIONS(1196), - [sym_number_literal] = ACTIONS(1198), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1198), - [anon_sym_u_DQUOTE] = ACTIONS(1198), - [anon_sym_U_DQUOTE] = ACTIONS(1198), - [anon_sym_u8_DQUOTE] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_true] = ACTIONS(1196), - [sym_false] = ACTIONS(1196), - [anon_sym_NULL] = ACTIONS(1196), - [anon_sym_nullptr] = ACTIONS(1196), + [sym_identifier] = ACTIONS(1155), + [aux_sym_preproc_include_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1155), + [aux_sym_preproc_if_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), + [sym_preproc_directive] = ACTIONS(1155), + [anon_sym_LPAREN2] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1157), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1157), + [anon_sym___extension__] = ACTIONS(1155), + [anon_sym_typedef] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym___attribute__] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1157), + [anon_sym___declspec] = ACTIONS(1155), + [anon_sym___cdecl] = ACTIONS(1155), + [anon_sym___clrcall] = ACTIONS(1155), + [anon_sym___stdcall] = ACTIONS(1155), + [anon_sym___fastcall] = ACTIONS(1155), + [anon_sym___thiscall] = ACTIONS(1155), + [anon_sym___vectorcall] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(1155), + [anon_sym_unsigned] = ACTIONS(1155), + [anon_sym_long] = ACTIONS(1155), + [anon_sym_short] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1155), + [anon_sym_auto] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_inline] = ACTIONS(1155), + [anon_sym___inline] = ACTIONS(1155), + [anon_sym___inline__] = ACTIONS(1155), + [anon_sym___forceinline] = ACTIONS(1155), + [anon_sym_thread_local] = ACTIONS(1155), + [anon_sym___thread] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_constexpr] = ACTIONS(1155), + [anon_sym_volatile] = ACTIONS(1155), + [anon_sym_restrict] = ACTIONS(1155), + [anon_sym___restrict__] = ACTIONS(1155), + [anon_sym__Atomic] = ACTIONS(1155), + [anon_sym__Noreturn] = ACTIONS(1155), + [anon_sym_noreturn] = ACTIONS(1155), + [anon_sym_alignas] = ACTIONS(1155), + [anon_sym__Alignas] = ACTIONS(1155), + [sym_primitive_type] = ACTIONS(1155), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_struct] = ACTIONS(1155), + [anon_sym_union] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_switch] = ACTIONS(1155), + [anon_sym_case] = ACTIONS(1155), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_goto] = ACTIONS(1155), + [anon_sym___try] = ACTIONS(1155), + [anon_sym___leave] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_sizeof] = ACTIONS(1155), + [anon_sym___alignof__] = ACTIONS(1155), + [anon_sym___alignof] = ACTIONS(1155), + [anon_sym__alignof] = ACTIONS(1155), + [anon_sym_alignof] = ACTIONS(1155), + [anon_sym__Alignof] = ACTIONS(1155), + [anon_sym_offsetof] = ACTIONS(1155), + [anon_sym__Generic] = ACTIONS(1155), + [anon_sym_asm] = ACTIONS(1155), + [anon_sym___asm__] = ACTIONS(1155), + [sym_number_literal] = ACTIONS(1157), + [anon_sym_L_SQUOTE] = ACTIONS(1157), + [anon_sym_u_SQUOTE] = ACTIONS(1157), + [anon_sym_U_SQUOTE] = ACTIONS(1157), + [anon_sym_u8_SQUOTE] = ACTIONS(1157), + [anon_sym_SQUOTE] = ACTIONS(1157), + [anon_sym_L_DQUOTE] = ACTIONS(1157), + [anon_sym_u_DQUOTE] = ACTIONS(1157), + [anon_sym_U_DQUOTE] = ACTIONS(1157), + [anon_sym_u8_DQUOTE] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_true] = ACTIONS(1155), + [sym_false] = ACTIONS(1155), + [anon_sym_NULL] = ACTIONS(1155), + [anon_sym_nullptr] = ACTIONS(1155), [sym_comment] = ACTIONS(3), }, [247] = { - [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___extension__] = ACTIONS(1120), - [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_signed] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1120), - [anon_sym_long] = ACTIONS(1120), - [anon_sym_short] = ACTIONS(1120), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_auto] = ACTIONS(1120), - [anon_sym_register] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym___inline] = ACTIONS(1120), - [anon_sym___inline__] = ACTIONS(1120), - [anon_sym___forceinline] = ACTIONS(1120), - [anon_sym_thread_local] = ACTIONS(1120), - [anon_sym___thread] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1120), - [anon_sym___leave] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_sizeof] = ACTIONS(1120), - [anon_sym___alignof__] = ACTIONS(1120), - [anon_sym___alignof] = ACTIONS(1120), - [anon_sym__alignof] = ACTIONS(1120), - [anon_sym_alignof] = ACTIONS(1120), - [anon_sym__Alignof] = ACTIONS(1120), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1120), - [anon_sym_nullptr] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token2] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, [248] = { - [sym_identifier] = ACTIONS(1224), - [aux_sym_preproc_include_token1] = ACTIONS(1224), - [aux_sym_preproc_def_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), - [sym_preproc_directive] = ACTIONS(1224), - [anon_sym_LPAREN2] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym___extension__] = ACTIONS(1224), - [anon_sym_typedef] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym___attribute__] = ACTIONS(1224), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), - [anon_sym___declspec] = ACTIONS(1224), - [anon_sym___cdecl] = ACTIONS(1224), - [anon_sym___clrcall] = ACTIONS(1224), - [anon_sym___stdcall] = ACTIONS(1224), - [anon_sym___fastcall] = ACTIONS(1224), - [anon_sym___thiscall] = ACTIONS(1224), - [anon_sym___vectorcall] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_auto] = ACTIONS(1224), - [anon_sym_register] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym___inline] = ACTIONS(1224), - [anon_sym___inline__] = ACTIONS(1224), - [anon_sym___forceinline] = ACTIONS(1224), - [anon_sym_thread_local] = ACTIONS(1224), - [anon_sym___thread] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_constexpr] = ACTIONS(1224), - [anon_sym_volatile] = ACTIONS(1224), - [anon_sym_restrict] = ACTIONS(1224), - [anon_sym___restrict__] = ACTIONS(1224), - [anon_sym__Atomic] = ACTIONS(1224), - [anon_sym__Noreturn] = ACTIONS(1224), - [anon_sym_noreturn] = ACTIONS(1224), - [sym_primitive_type] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1224), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_goto] = ACTIONS(1224), - [anon_sym___try] = ACTIONS(1224), - [anon_sym___leave] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1224), - [anon_sym___alignof__] = ACTIONS(1224), - [anon_sym___alignof] = ACTIONS(1224), - [anon_sym__alignof] = ACTIONS(1224), - [anon_sym_alignof] = ACTIONS(1224), - [anon_sym__Alignof] = ACTIONS(1224), - [anon_sym_offsetof] = ACTIONS(1224), - [anon_sym__Generic] = ACTIONS(1224), - [anon_sym_asm] = ACTIONS(1224), - [anon_sym___asm__] = ACTIONS(1224), - [sym_number_literal] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1226), - [anon_sym_u_SQUOTE] = ACTIONS(1226), - [anon_sym_U_SQUOTE] = ACTIONS(1226), - [anon_sym_u8_SQUOTE] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_L_DQUOTE] = ACTIONS(1226), - [anon_sym_u_DQUOTE] = ACTIONS(1226), - [anon_sym_U_DQUOTE] = ACTIONS(1226), - [anon_sym_u8_DQUOTE] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_true] = ACTIONS(1224), - [sym_false] = ACTIONS(1224), - [anon_sym_NULL] = ACTIONS(1224), - [anon_sym_nullptr] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [249] = { - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym___extension__] = ACTIONS(1208), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_RBRACE] = ACTIONS(1210), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym___inline] = ACTIONS(1208), - [anon_sym___inline__] = ACTIONS(1208), - [anon_sym___forceinline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym___thread] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym___try] = ACTIONS(1208), - [anon_sym___leave] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym___alignof__] = ACTIONS(1208), - [anon_sym___alignof] = ACTIONS(1208), - [anon_sym__alignof] = ACTIONS(1208), - [anon_sym_alignof] = ACTIONS(1208), - [anon_sym__Alignof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [250] = { - [sym_identifier] = ACTIONS(1192), - [aux_sym_preproc_include_token1] = ACTIONS(1192), - [aux_sym_preproc_def_token1] = ACTIONS(1192), - [aux_sym_preproc_if_token1] = ACTIONS(1192), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1192), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1192), - [sym_preproc_directive] = ACTIONS(1192), - [anon_sym_LPAREN2] = ACTIONS(1194), - [anon_sym_BANG] = ACTIONS(1194), - [anon_sym_TILDE] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym___extension__] = ACTIONS(1192), - [anon_sym_typedef] = ACTIONS(1192), - [anon_sym_extern] = ACTIONS(1192), - [anon_sym___attribute__] = ACTIONS(1192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1194), - [anon_sym___declspec] = ACTIONS(1192), - [anon_sym___cdecl] = ACTIONS(1192), - [anon_sym___clrcall] = ACTIONS(1192), - [anon_sym___stdcall] = ACTIONS(1192), - [anon_sym___fastcall] = ACTIONS(1192), - [anon_sym___thiscall] = ACTIONS(1192), - [anon_sym___vectorcall] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_signed] = ACTIONS(1192), - [anon_sym_unsigned] = ACTIONS(1192), - [anon_sym_long] = ACTIONS(1192), - [anon_sym_short] = ACTIONS(1192), - [anon_sym_static] = ACTIONS(1192), - [anon_sym_auto] = ACTIONS(1192), - [anon_sym_register] = ACTIONS(1192), - [anon_sym_inline] = ACTIONS(1192), - [anon_sym___inline] = ACTIONS(1192), - [anon_sym___inline__] = ACTIONS(1192), - [anon_sym___forceinline] = ACTIONS(1192), - [anon_sym_thread_local] = ACTIONS(1192), - [anon_sym___thread] = ACTIONS(1192), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_constexpr] = ACTIONS(1192), - [anon_sym_volatile] = ACTIONS(1192), - [anon_sym_restrict] = ACTIONS(1192), - [anon_sym___restrict__] = ACTIONS(1192), - [anon_sym__Atomic] = ACTIONS(1192), - [anon_sym__Noreturn] = ACTIONS(1192), - [anon_sym_noreturn] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(1192), - [anon_sym_enum] = ACTIONS(1192), - [anon_sym_struct] = ACTIONS(1192), - [anon_sym_union] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1192), - [anon_sym_else] = ACTIONS(1192), - [anon_sym_switch] = ACTIONS(1192), - [anon_sym_case] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(1192), - [anon_sym_while] = ACTIONS(1192), - [anon_sym_do] = ACTIONS(1192), - [anon_sym_for] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1192), - [anon_sym_break] = ACTIONS(1192), - [anon_sym_continue] = ACTIONS(1192), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym___try] = ACTIONS(1192), - [anon_sym___leave] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_sizeof] = ACTIONS(1192), - [anon_sym___alignof__] = ACTIONS(1192), - [anon_sym___alignof] = ACTIONS(1192), - [anon_sym__alignof] = ACTIONS(1192), - [anon_sym_alignof] = ACTIONS(1192), - [anon_sym__Alignof] = ACTIONS(1192), - [anon_sym_offsetof] = ACTIONS(1192), - [anon_sym__Generic] = ACTIONS(1192), - [anon_sym_asm] = ACTIONS(1192), - [anon_sym___asm__] = ACTIONS(1192), - [sym_number_literal] = ACTIONS(1194), - [anon_sym_L_SQUOTE] = ACTIONS(1194), - [anon_sym_u_SQUOTE] = ACTIONS(1194), - [anon_sym_U_SQUOTE] = ACTIONS(1194), - [anon_sym_u8_SQUOTE] = ACTIONS(1194), - [anon_sym_SQUOTE] = ACTIONS(1194), - [anon_sym_L_DQUOTE] = ACTIONS(1194), - [anon_sym_u_DQUOTE] = ACTIONS(1194), - [anon_sym_U_DQUOTE] = ACTIONS(1194), - [anon_sym_u8_DQUOTE] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym_true] = ACTIONS(1192), - [sym_false] = ACTIONS(1192), - [anon_sym_NULL] = ACTIONS(1192), - [anon_sym_nullptr] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), + [sym_preproc_directive] = ACTIONS(1231), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym___extension__] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym___attribute__] = ACTIONS(1231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1231), + [anon_sym___cdecl] = ACTIONS(1231), + [anon_sym___clrcall] = ACTIONS(1231), + [anon_sym___stdcall] = ACTIONS(1231), + [anon_sym___fastcall] = ACTIONS(1231), + [anon_sym___thiscall] = ACTIONS(1231), + [anon_sym___vectorcall] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1231), + [anon_sym_unsigned] = ACTIONS(1231), + [anon_sym_long] = ACTIONS(1231), + [anon_sym_short] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_auto] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_inline] = ACTIONS(1231), + [anon_sym___inline] = ACTIONS(1231), + [anon_sym___inline__] = ACTIONS(1231), + [anon_sym___forceinline] = ACTIONS(1231), + [anon_sym_thread_local] = ACTIONS(1231), + [anon_sym___thread] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_constexpr] = ACTIONS(1231), + [anon_sym_volatile] = ACTIONS(1231), + [anon_sym_restrict] = ACTIONS(1231), + [anon_sym___restrict__] = ACTIONS(1231), + [anon_sym__Atomic] = ACTIONS(1231), + [anon_sym__Noreturn] = ACTIONS(1231), + [anon_sym_noreturn] = ACTIONS(1231), + [anon_sym_alignas] = ACTIONS(1231), + [anon_sym__Alignas] = ACTIONS(1231), + [sym_primitive_type] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_union] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_goto] = ACTIONS(1231), + [anon_sym___try] = ACTIONS(1231), + [anon_sym___leave] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1231), + [anon_sym___alignof__] = ACTIONS(1231), + [anon_sym___alignof] = ACTIONS(1231), + [anon_sym__alignof] = ACTIONS(1231), + [anon_sym_alignof] = ACTIONS(1231), + [anon_sym__Alignof] = ACTIONS(1231), + [anon_sym_offsetof] = ACTIONS(1231), + [anon_sym__Generic] = ACTIONS(1231), + [anon_sym_asm] = ACTIONS(1231), + [anon_sym___asm__] = ACTIONS(1231), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_L_SQUOTE] = ACTIONS(1233), + [anon_sym_u_SQUOTE] = ACTIONS(1233), + [anon_sym_U_SQUOTE] = ACTIONS(1233), + [anon_sym_u8_SQUOTE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_L_DQUOTE] = ACTIONS(1233), + [anon_sym_u_DQUOTE] = ACTIONS(1233), + [anon_sym_U_DQUOTE] = ACTIONS(1233), + [anon_sym_u8_DQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1231), + [sym_false] = ACTIONS(1231), + [anon_sym_NULL] = ACTIONS(1231), + [anon_sym_nullptr] = ACTIONS(1231), [sym_comment] = ACTIONS(3), }, [251] = { - [sym_identifier] = ACTIONS(1176), - [aux_sym_preproc_include_token1] = ACTIONS(1176), - [aux_sym_preproc_def_token1] = ACTIONS(1176), - [aux_sym_preproc_if_token1] = ACTIONS(1176), - [aux_sym_preproc_if_token2] = ACTIONS(1176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1176), - [sym_preproc_directive] = ACTIONS(1176), - [anon_sym_LPAREN2] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_TILDE] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1178), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym___extension__] = ACTIONS(1176), - [anon_sym_typedef] = ACTIONS(1176), - [anon_sym_extern] = ACTIONS(1176), - [anon_sym___attribute__] = ACTIONS(1176), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1178), - [anon_sym___declspec] = ACTIONS(1176), - [anon_sym___cdecl] = ACTIONS(1176), - [anon_sym___clrcall] = ACTIONS(1176), - [anon_sym___stdcall] = ACTIONS(1176), - [anon_sym___fastcall] = ACTIONS(1176), - [anon_sym___thiscall] = ACTIONS(1176), - [anon_sym___vectorcall] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_signed] = ACTIONS(1176), - [anon_sym_unsigned] = ACTIONS(1176), - [anon_sym_long] = ACTIONS(1176), - [anon_sym_short] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1176), - [anon_sym_auto] = ACTIONS(1176), - [anon_sym_register] = ACTIONS(1176), - [anon_sym_inline] = ACTIONS(1176), - [anon_sym___inline] = ACTIONS(1176), - [anon_sym___inline__] = ACTIONS(1176), - [anon_sym___forceinline] = ACTIONS(1176), - [anon_sym_thread_local] = ACTIONS(1176), - [anon_sym___thread] = ACTIONS(1176), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_constexpr] = ACTIONS(1176), - [anon_sym_volatile] = ACTIONS(1176), - [anon_sym_restrict] = ACTIONS(1176), - [anon_sym___restrict__] = ACTIONS(1176), - [anon_sym__Atomic] = ACTIONS(1176), - [anon_sym__Noreturn] = ACTIONS(1176), - [anon_sym_noreturn] = ACTIONS(1176), - [sym_primitive_type] = ACTIONS(1176), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_struct] = ACTIONS(1176), - [anon_sym_union] = ACTIONS(1176), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_else] = ACTIONS(1176), - [anon_sym_switch] = ACTIONS(1176), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_goto] = ACTIONS(1176), - [anon_sym___try] = ACTIONS(1176), - [anon_sym___leave] = ACTIONS(1176), - [anon_sym_DASH_DASH] = ACTIONS(1178), - [anon_sym_PLUS_PLUS] = ACTIONS(1178), - [anon_sym_sizeof] = ACTIONS(1176), - [anon_sym___alignof__] = ACTIONS(1176), - [anon_sym___alignof] = ACTIONS(1176), - [anon_sym__alignof] = ACTIONS(1176), - [anon_sym_alignof] = ACTIONS(1176), - [anon_sym__Alignof] = ACTIONS(1176), - [anon_sym_offsetof] = ACTIONS(1176), - [anon_sym__Generic] = ACTIONS(1176), - [anon_sym_asm] = ACTIONS(1176), - [anon_sym___asm__] = ACTIONS(1176), - [sym_number_literal] = ACTIONS(1178), - [anon_sym_L_SQUOTE] = ACTIONS(1178), - [anon_sym_u_SQUOTE] = ACTIONS(1178), - [anon_sym_U_SQUOTE] = ACTIONS(1178), - [anon_sym_u8_SQUOTE] = ACTIONS(1178), - [anon_sym_SQUOTE] = ACTIONS(1178), - [anon_sym_L_DQUOTE] = ACTIONS(1178), - [anon_sym_u_DQUOTE] = ACTIONS(1178), - [anon_sym_U_DQUOTE] = ACTIONS(1178), - [anon_sym_u8_DQUOTE] = ACTIONS(1178), - [anon_sym_DQUOTE] = ACTIONS(1178), - [sym_true] = ACTIONS(1176), - [sym_false] = ACTIONS(1176), - [anon_sym_NULL] = ACTIONS(1176), - [anon_sym_nullptr] = ACTIONS(1176), + [sym_identifier] = ACTIONS(1235), + [aux_sym_preproc_include_token1] = ACTIONS(1235), + [aux_sym_preproc_def_token1] = ACTIONS(1235), + [aux_sym_preproc_if_token1] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1235), + [sym_preproc_directive] = ACTIONS(1235), + [anon_sym_LPAREN2] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym___extension__] = ACTIONS(1235), + [anon_sym_typedef] = ACTIONS(1235), + [anon_sym_extern] = ACTIONS(1235), + [anon_sym___attribute__] = ACTIONS(1235), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1237), + [anon_sym___declspec] = ACTIONS(1235), + [anon_sym___cdecl] = ACTIONS(1235), + [anon_sym___clrcall] = ACTIONS(1235), + [anon_sym___stdcall] = ACTIONS(1235), + [anon_sym___fastcall] = ACTIONS(1235), + [anon_sym___thiscall] = ACTIONS(1235), + [anon_sym___vectorcall] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_signed] = ACTIONS(1235), + [anon_sym_unsigned] = ACTIONS(1235), + [anon_sym_long] = ACTIONS(1235), + [anon_sym_short] = ACTIONS(1235), + [anon_sym_static] = ACTIONS(1235), + [anon_sym_auto] = ACTIONS(1235), + [anon_sym_register] = ACTIONS(1235), + [anon_sym_inline] = ACTIONS(1235), + [anon_sym___inline] = ACTIONS(1235), + [anon_sym___inline__] = ACTIONS(1235), + [anon_sym___forceinline] = ACTIONS(1235), + [anon_sym_thread_local] = ACTIONS(1235), + [anon_sym___thread] = ACTIONS(1235), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_constexpr] = ACTIONS(1235), + [anon_sym_volatile] = ACTIONS(1235), + [anon_sym_restrict] = ACTIONS(1235), + [anon_sym___restrict__] = ACTIONS(1235), + [anon_sym__Atomic] = ACTIONS(1235), + [anon_sym__Noreturn] = ACTIONS(1235), + [anon_sym_noreturn] = ACTIONS(1235), + [anon_sym_alignas] = ACTIONS(1235), + [anon_sym__Alignas] = ACTIONS(1235), + [sym_primitive_type] = ACTIONS(1235), + [anon_sym_enum] = ACTIONS(1235), + [anon_sym_struct] = ACTIONS(1235), + [anon_sym_union] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1235), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_switch] = ACTIONS(1235), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1235), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1235), + [anon_sym_return] = ACTIONS(1235), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_goto] = ACTIONS(1235), + [anon_sym___try] = ACTIONS(1235), + [anon_sym___leave] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_sizeof] = ACTIONS(1235), + [anon_sym___alignof__] = ACTIONS(1235), + [anon_sym___alignof] = ACTIONS(1235), + [anon_sym__alignof] = ACTIONS(1235), + [anon_sym_alignof] = ACTIONS(1235), + [anon_sym__Alignof] = ACTIONS(1235), + [anon_sym_offsetof] = ACTIONS(1235), + [anon_sym__Generic] = ACTIONS(1235), + [anon_sym_asm] = ACTIONS(1235), + [anon_sym___asm__] = ACTIONS(1235), + [sym_number_literal] = ACTIONS(1237), + [anon_sym_L_SQUOTE] = ACTIONS(1237), + [anon_sym_u_SQUOTE] = ACTIONS(1237), + [anon_sym_U_SQUOTE] = ACTIONS(1237), + [anon_sym_u8_SQUOTE] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_L_DQUOTE] = ACTIONS(1237), + [anon_sym_u_DQUOTE] = ACTIONS(1237), + [anon_sym_U_DQUOTE] = ACTIONS(1237), + [anon_sym_u8_DQUOTE] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_true] = ACTIONS(1235), + [sym_false] = ACTIONS(1235), + [anon_sym_NULL] = ACTIONS(1235), + [anon_sym_nullptr] = ACTIONS(1235), [sym_comment] = ACTIONS(3), }, [252] = { - [sym_identifier] = ACTIONS(1176), - [aux_sym_preproc_include_token1] = ACTIONS(1176), - [aux_sym_preproc_def_token1] = ACTIONS(1176), - [aux_sym_preproc_if_token1] = ACTIONS(1176), - [aux_sym_preproc_if_token2] = ACTIONS(1176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1176), - [sym_preproc_directive] = ACTIONS(1176), - [anon_sym_LPAREN2] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_TILDE] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1178), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym___extension__] = ACTIONS(1176), - [anon_sym_typedef] = ACTIONS(1176), - [anon_sym_extern] = ACTIONS(1176), - [anon_sym___attribute__] = ACTIONS(1176), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1178), - [anon_sym___declspec] = ACTIONS(1176), - [anon_sym___cdecl] = ACTIONS(1176), - [anon_sym___clrcall] = ACTIONS(1176), - [anon_sym___stdcall] = ACTIONS(1176), - [anon_sym___fastcall] = ACTIONS(1176), - [anon_sym___thiscall] = ACTIONS(1176), - [anon_sym___vectorcall] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_signed] = ACTIONS(1176), - [anon_sym_unsigned] = ACTIONS(1176), - [anon_sym_long] = ACTIONS(1176), - [anon_sym_short] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1176), - [anon_sym_auto] = ACTIONS(1176), - [anon_sym_register] = ACTIONS(1176), - [anon_sym_inline] = ACTIONS(1176), - [anon_sym___inline] = ACTIONS(1176), - [anon_sym___inline__] = ACTIONS(1176), - [anon_sym___forceinline] = ACTIONS(1176), - [anon_sym_thread_local] = ACTIONS(1176), - [anon_sym___thread] = ACTIONS(1176), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_constexpr] = ACTIONS(1176), - [anon_sym_volatile] = ACTIONS(1176), - [anon_sym_restrict] = ACTIONS(1176), - [anon_sym___restrict__] = ACTIONS(1176), - [anon_sym__Atomic] = ACTIONS(1176), - [anon_sym__Noreturn] = ACTIONS(1176), - [anon_sym_noreturn] = ACTIONS(1176), - [sym_primitive_type] = ACTIONS(1176), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_struct] = ACTIONS(1176), - [anon_sym_union] = ACTIONS(1176), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_else] = ACTIONS(1176), - [anon_sym_switch] = ACTIONS(1176), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_goto] = ACTIONS(1176), - [anon_sym___try] = ACTIONS(1176), - [anon_sym___leave] = ACTIONS(1176), - [anon_sym_DASH_DASH] = ACTIONS(1178), - [anon_sym_PLUS_PLUS] = ACTIONS(1178), - [anon_sym_sizeof] = ACTIONS(1176), - [anon_sym___alignof__] = ACTIONS(1176), - [anon_sym___alignof] = ACTIONS(1176), - [anon_sym__alignof] = ACTIONS(1176), - [anon_sym_alignof] = ACTIONS(1176), - [anon_sym__Alignof] = ACTIONS(1176), - [anon_sym_offsetof] = ACTIONS(1176), - [anon_sym__Generic] = ACTIONS(1176), - [anon_sym_asm] = ACTIONS(1176), - [anon_sym___asm__] = ACTIONS(1176), - [sym_number_literal] = ACTIONS(1178), - [anon_sym_L_SQUOTE] = ACTIONS(1178), - [anon_sym_u_SQUOTE] = ACTIONS(1178), - [anon_sym_U_SQUOTE] = ACTIONS(1178), - [anon_sym_u8_SQUOTE] = ACTIONS(1178), - [anon_sym_SQUOTE] = ACTIONS(1178), - [anon_sym_L_DQUOTE] = ACTIONS(1178), - [anon_sym_u_DQUOTE] = ACTIONS(1178), - [anon_sym_U_DQUOTE] = ACTIONS(1178), - [anon_sym_u8_DQUOTE] = ACTIONS(1178), - [anon_sym_DQUOTE] = ACTIONS(1178), - [sym_true] = ACTIONS(1176), - [sym_false] = ACTIONS(1176), - [anon_sym_NULL] = ACTIONS(1176), - [anon_sym_nullptr] = ACTIONS(1176), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [253] = { - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token2] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym___extension__] = ACTIONS(1200), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym___inline] = ACTIONS(1200), - [anon_sym___inline__] = ACTIONS(1200), - [anon_sym___forceinline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym___thread] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym___try] = ACTIONS(1200), - [anon_sym___leave] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym___alignof__] = ACTIONS(1200), - [anon_sym___alignof] = ACTIONS(1200), - [anon_sym__alignof] = ACTIONS(1200), - [anon_sym_alignof] = ACTIONS(1200), - [anon_sym__Alignof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [254] = { - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token2] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym___extension__] = ACTIONS(1200), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym___inline] = ACTIONS(1200), - [anon_sym___inline__] = ACTIONS(1200), - [anon_sym___forceinline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym___thread] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym___try] = ACTIONS(1200), - [anon_sym___leave] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym___alignof__] = ACTIONS(1200), - [anon_sym___alignof] = ACTIONS(1200), - [anon_sym__alignof] = ACTIONS(1200), - [anon_sym_alignof] = ACTIONS(1200), - [anon_sym__Alignof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [255] = { - [sym_identifier] = ACTIONS(1172), - [aux_sym_preproc_include_token1] = ACTIONS(1172), - [aux_sym_preproc_def_token1] = ACTIONS(1172), - [aux_sym_preproc_if_token1] = ACTIONS(1172), - [aux_sym_preproc_if_token2] = ACTIONS(1172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1172), - [sym_preproc_directive] = ACTIONS(1172), - [anon_sym_LPAREN2] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_TILDE] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym___extension__] = ACTIONS(1172), - [anon_sym_typedef] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym___attribute__] = ACTIONS(1172), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1174), - [anon_sym___declspec] = ACTIONS(1172), - [anon_sym___cdecl] = ACTIONS(1172), - [anon_sym___clrcall] = ACTIONS(1172), - [anon_sym___stdcall] = ACTIONS(1172), - [anon_sym___fastcall] = ACTIONS(1172), - [anon_sym___thiscall] = ACTIONS(1172), - [anon_sym___vectorcall] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_signed] = ACTIONS(1172), - [anon_sym_unsigned] = ACTIONS(1172), - [anon_sym_long] = ACTIONS(1172), - [anon_sym_short] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1172), - [anon_sym_auto] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_inline] = ACTIONS(1172), - [anon_sym___inline] = ACTIONS(1172), - [anon_sym___inline__] = ACTIONS(1172), - [anon_sym___forceinline] = ACTIONS(1172), - [anon_sym_thread_local] = ACTIONS(1172), - [anon_sym___thread] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_constexpr] = ACTIONS(1172), - [anon_sym_volatile] = ACTIONS(1172), - [anon_sym_restrict] = ACTIONS(1172), - [anon_sym___restrict__] = ACTIONS(1172), - [anon_sym__Atomic] = ACTIONS(1172), - [anon_sym__Noreturn] = ACTIONS(1172), - [anon_sym_noreturn] = ACTIONS(1172), - [sym_primitive_type] = ACTIONS(1172), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_struct] = ACTIONS(1172), - [anon_sym_union] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_else] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1172), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_goto] = ACTIONS(1172), - [anon_sym___try] = ACTIONS(1172), - [anon_sym___leave] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_sizeof] = ACTIONS(1172), - [anon_sym___alignof__] = ACTIONS(1172), - [anon_sym___alignof] = ACTIONS(1172), - [anon_sym__alignof] = ACTIONS(1172), - [anon_sym_alignof] = ACTIONS(1172), - [anon_sym__Alignof] = ACTIONS(1172), - [anon_sym_offsetof] = ACTIONS(1172), - [anon_sym__Generic] = ACTIONS(1172), - [anon_sym_asm] = ACTIONS(1172), - [anon_sym___asm__] = ACTIONS(1172), - [sym_number_literal] = ACTIONS(1174), - [anon_sym_L_SQUOTE] = ACTIONS(1174), - [anon_sym_u_SQUOTE] = ACTIONS(1174), - [anon_sym_U_SQUOTE] = ACTIONS(1174), - [anon_sym_u8_SQUOTE] = ACTIONS(1174), - [anon_sym_SQUOTE] = ACTIONS(1174), - [anon_sym_L_DQUOTE] = ACTIONS(1174), - [anon_sym_u_DQUOTE] = ACTIONS(1174), - [anon_sym_U_DQUOTE] = ACTIONS(1174), - [anon_sym_u8_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1174), - [sym_true] = ACTIONS(1172), - [sym_false] = ACTIONS(1172), - [anon_sym_NULL] = ACTIONS(1172), - [anon_sym_nullptr] = ACTIONS(1172), + [sym_identifier] = ACTIONS(1139), + [aux_sym_preproc_include_token1] = ACTIONS(1139), + [aux_sym_preproc_def_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), + [sym_preproc_directive] = ACTIONS(1139), + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym___extension__] = ACTIONS(1139), + [anon_sym_typedef] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym___attribute__] = ACTIONS(1139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), + [anon_sym___declspec] = ACTIONS(1139), + [anon_sym___cdecl] = ACTIONS(1139), + [anon_sym___clrcall] = ACTIONS(1139), + [anon_sym___stdcall] = ACTIONS(1139), + [anon_sym___fastcall] = ACTIONS(1139), + [anon_sym___thiscall] = ACTIONS(1139), + [anon_sym___vectorcall] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_RBRACE] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1139), + [anon_sym_unsigned] = ACTIONS(1139), + [anon_sym_long] = ACTIONS(1139), + [anon_sym_short] = ACTIONS(1139), + [anon_sym_static] = ACTIONS(1139), + [anon_sym_auto] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_inline] = ACTIONS(1139), + [anon_sym___inline] = ACTIONS(1139), + [anon_sym___inline__] = ACTIONS(1139), + [anon_sym___forceinline] = ACTIONS(1139), + [anon_sym_thread_local] = ACTIONS(1139), + [anon_sym___thread] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_constexpr] = ACTIONS(1139), + [anon_sym_volatile] = ACTIONS(1139), + [anon_sym_restrict] = ACTIONS(1139), + [anon_sym___restrict__] = ACTIONS(1139), + [anon_sym__Atomic] = ACTIONS(1139), + [anon_sym__Noreturn] = ACTIONS(1139), + [anon_sym_noreturn] = ACTIONS(1139), + [anon_sym_alignas] = ACTIONS(1139), + [anon_sym__Alignas] = ACTIONS(1139), + [sym_primitive_type] = ACTIONS(1139), + [anon_sym_enum] = ACTIONS(1139), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_union] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_switch] = ACTIONS(1139), + [anon_sym_case] = ACTIONS(1139), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1139), + [anon_sym___leave] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_sizeof] = ACTIONS(1139), + [anon_sym___alignof__] = ACTIONS(1139), + [anon_sym___alignof] = ACTIONS(1139), + [anon_sym__alignof] = ACTIONS(1139), + [anon_sym_alignof] = ACTIONS(1139), + [anon_sym__Alignof] = ACTIONS(1139), + [anon_sym_offsetof] = ACTIONS(1139), + [anon_sym__Generic] = ACTIONS(1139), + [anon_sym_asm] = ACTIONS(1139), + [anon_sym___asm__] = ACTIONS(1139), + [sym_number_literal] = ACTIONS(1141), + [anon_sym_L_SQUOTE] = ACTIONS(1141), + [anon_sym_u_SQUOTE] = ACTIONS(1141), + [anon_sym_U_SQUOTE] = ACTIONS(1141), + [anon_sym_u8_SQUOTE] = ACTIONS(1141), + [anon_sym_SQUOTE] = ACTIONS(1141), + [anon_sym_L_DQUOTE] = ACTIONS(1141), + [anon_sym_u_DQUOTE] = ACTIONS(1141), + [anon_sym_U_DQUOTE] = ACTIONS(1141), + [anon_sym_u8_DQUOTE] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1141), + [sym_true] = ACTIONS(1139), + [sym_false] = ACTIONS(1139), + [anon_sym_NULL] = ACTIONS(1139), + [anon_sym_nullptr] = ACTIONS(1139), [sym_comment] = ACTIONS(3), }, [256] = { - [ts_builtin_sym_end] = ACTIONS(1146), - [sym_identifier] = ACTIONS(1144), - [aux_sym_preproc_include_token1] = ACTIONS(1144), - [aux_sym_preproc_def_token1] = ACTIONS(1144), - [aux_sym_preproc_if_token1] = ACTIONS(1144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1144), - [sym_preproc_directive] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(1146), - [anon_sym_BANG] = ACTIONS(1146), - [anon_sym_TILDE] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_STAR] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1146), - [anon_sym_SEMI] = ACTIONS(1146), - [anon_sym___extension__] = ACTIONS(1144), - [anon_sym_typedef] = ACTIONS(1144), - [anon_sym_extern] = ACTIONS(1144), - [anon_sym___attribute__] = ACTIONS(1144), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1146), - [anon_sym___declspec] = ACTIONS(1144), - [anon_sym___cdecl] = ACTIONS(1144), - [anon_sym___clrcall] = ACTIONS(1144), - [anon_sym___stdcall] = ACTIONS(1144), - [anon_sym___fastcall] = ACTIONS(1144), - [anon_sym___thiscall] = ACTIONS(1144), - [anon_sym___vectorcall] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(1146), - [anon_sym_signed] = ACTIONS(1144), - [anon_sym_unsigned] = ACTIONS(1144), - [anon_sym_long] = ACTIONS(1144), - [anon_sym_short] = ACTIONS(1144), - [anon_sym_static] = ACTIONS(1144), - [anon_sym_auto] = ACTIONS(1144), - [anon_sym_register] = ACTIONS(1144), - [anon_sym_inline] = ACTIONS(1144), - [anon_sym___inline] = ACTIONS(1144), - [anon_sym___inline__] = ACTIONS(1144), - [anon_sym___forceinline] = ACTIONS(1144), - [anon_sym_thread_local] = ACTIONS(1144), - [anon_sym___thread] = ACTIONS(1144), - [anon_sym_const] = ACTIONS(1144), - [anon_sym_constexpr] = ACTIONS(1144), - [anon_sym_volatile] = ACTIONS(1144), - [anon_sym_restrict] = ACTIONS(1144), - [anon_sym___restrict__] = ACTIONS(1144), - [anon_sym__Atomic] = ACTIONS(1144), - [anon_sym__Noreturn] = ACTIONS(1144), - [anon_sym_noreturn] = ACTIONS(1144), - [sym_primitive_type] = ACTIONS(1144), - [anon_sym_enum] = ACTIONS(1144), - [anon_sym_struct] = ACTIONS(1144), - [anon_sym_union] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(1144), - [anon_sym_else] = ACTIONS(1144), - [anon_sym_switch] = ACTIONS(1144), - [anon_sym_case] = ACTIONS(1144), - [anon_sym_default] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1144), - [anon_sym_do] = ACTIONS(1144), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_return] = ACTIONS(1144), - [anon_sym_break] = ACTIONS(1144), - [anon_sym_continue] = ACTIONS(1144), - [anon_sym_goto] = ACTIONS(1144), - [anon_sym___try] = ACTIONS(1144), - [anon_sym___leave] = ACTIONS(1144), - [anon_sym_DASH_DASH] = ACTIONS(1146), - [anon_sym_PLUS_PLUS] = ACTIONS(1146), - [anon_sym_sizeof] = ACTIONS(1144), - [anon_sym___alignof__] = ACTIONS(1144), - [anon_sym___alignof] = ACTIONS(1144), - [anon_sym__alignof] = ACTIONS(1144), - [anon_sym_alignof] = ACTIONS(1144), - [anon_sym__Alignof] = ACTIONS(1144), - [anon_sym_offsetof] = ACTIONS(1144), - [anon_sym__Generic] = ACTIONS(1144), - [anon_sym_asm] = ACTIONS(1144), - [anon_sym___asm__] = ACTIONS(1144), - [sym_number_literal] = ACTIONS(1146), - [anon_sym_L_SQUOTE] = ACTIONS(1146), - [anon_sym_u_SQUOTE] = ACTIONS(1146), - [anon_sym_U_SQUOTE] = ACTIONS(1146), - [anon_sym_u8_SQUOTE] = ACTIONS(1146), - [anon_sym_SQUOTE] = ACTIONS(1146), - [anon_sym_L_DQUOTE] = ACTIONS(1146), - [anon_sym_u_DQUOTE] = ACTIONS(1146), - [anon_sym_U_DQUOTE] = ACTIONS(1146), - [anon_sym_u8_DQUOTE] = ACTIONS(1146), - [anon_sym_DQUOTE] = ACTIONS(1146), - [sym_true] = ACTIONS(1144), - [sym_false] = ACTIONS(1144), - [anon_sym_NULL] = ACTIONS(1144), - [anon_sym_nullptr] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [257] = { - [sym_identifier] = ACTIONS(1168), - [aux_sym_preproc_include_token1] = ACTIONS(1168), - [aux_sym_preproc_def_token1] = ACTIONS(1168), - [aux_sym_preproc_if_token1] = ACTIONS(1168), - [aux_sym_preproc_if_token2] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1168), - [sym_preproc_directive] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1170), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym___extension__] = ACTIONS(1168), - [anon_sym_typedef] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym___attribute__] = ACTIONS(1168), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1170), - [anon_sym___declspec] = ACTIONS(1168), - [anon_sym___cdecl] = ACTIONS(1168), - [anon_sym___clrcall] = ACTIONS(1168), - [anon_sym___stdcall] = ACTIONS(1168), - [anon_sym___fastcall] = ACTIONS(1168), - [anon_sym___thiscall] = ACTIONS(1168), - [anon_sym___vectorcall] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_signed] = ACTIONS(1168), - [anon_sym_unsigned] = ACTIONS(1168), - [anon_sym_long] = ACTIONS(1168), - [anon_sym_short] = ACTIONS(1168), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_auto] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_inline] = ACTIONS(1168), - [anon_sym___inline] = ACTIONS(1168), - [anon_sym___inline__] = ACTIONS(1168), - [anon_sym___forceinline] = ACTIONS(1168), - [anon_sym_thread_local] = ACTIONS(1168), - [anon_sym___thread] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_constexpr] = ACTIONS(1168), - [anon_sym_volatile] = ACTIONS(1168), - [anon_sym_restrict] = ACTIONS(1168), - [anon_sym___restrict__] = ACTIONS(1168), - [anon_sym__Atomic] = ACTIONS(1168), - [anon_sym__Noreturn] = ACTIONS(1168), - [anon_sym_noreturn] = ACTIONS(1168), - [sym_primitive_type] = ACTIONS(1168), - [anon_sym_enum] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1168), - [anon_sym_union] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1168), - [anon_sym_case] = ACTIONS(1168), - [anon_sym_default] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_goto] = ACTIONS(1168), - [anon_sym___try] = ACTIONS(1168), - [anon_sym___leave] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_sizeof] = ACTIONS(1168), - [anon_sym___alignof__] = ACTIONS(1168), - [anon_sym___alignof] = ACTIONS(1168), - [anon_sym__alignof] = ACTIONS(1168), - [anon_sym_alignof] = ACTIONS(1168), - [anon_sym__Alignof] = ACTIONS(1168), - [anon_sym_offsetof] = ACTIONS(1168), - [anon_sym__Generic] = ACTIONS(1168), - [anon_sym_asm] = ACTIONS(1168), - [anon_sym___asm__] = ACTIONS(1168), - [sym_number_literal] = ACTIONS(1170), - [anon_sym_L_SQUOTE] = ACTIONS(1170), - [anon_sym_u_SQUOTE] = ACTIONS(1170), - [anon_sym_U_SQUOTE] = ACTIONS(1170), - [anon_sym_u8_SQUOTE] = ACTIONS(1170), - [anon_sym_SQUOTE] = ACTIONS(1170), - [anon_sym_L_DQUOTE] = ACTIONS(1170), - [anon_sym_u_DQUOTE] = ACTIONS(1170), - [anon_sym_U_DQUOTE] = ACTIONS(1170), - [anon_sym_u8_DQUOTE] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1170), - [sym_true] = ACTIONS(1168), - [sym_false] = ACTIONS(1168), - [anon_sym_NULL] = ACTIONS(1168), - [anon_sym_nullptr] = ACTIONS(1168), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [258] = { - [sym_identifier] = ACTIONS(1148), - [aux_sym_preproc_include_token1] = ACTIONS(1148), - [aux_sym_preproc_def_token1] = ACTIONS(1148), - [aux_sym_preproc_if_token1] = ACTIONS(1148), - [aux_sym_preproc_if_token2] = ACTIONS(1148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1148), - [sym_preproc_directive] = ACTIONS(1148), - [anon_sym_LPAREN2] = ACTIONS(1150), - [anon_sym_BANG] = ACTIONS(1150), - [anon_sym_TILDE] = ACTIONS(1150), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym___extension__] = ACTIONS(1148), - [anon_sym_typedef] = ACTIONS(1148), - [anon_sym_extern] = ACTIONS(1148), - [anon_sym___attribute__] = ACTIONS(1148), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1150), - [anon_sym___declspec] = ACTIONS(1148), - [anon_sym___cdecl] = ACTIONS(1148), - [anon_sym___clrcall] = ACTIONS(1148), - [anon_sym___stdcall] = ACTIONS(1148), - [anon_sym___fastcall] = ACTIONS(1148), - [anon_sym___thiscall] = ACTIONS(1148), - [anon_sym___vectorcall] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_signed] = ACTIONS(1148), - [anon_sym_unsigned] = ACTIONS(1148), - [anon_sym_long] = ACTIONS(1148), - [anon_sym_short] = ACTIONS(1148), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_auto] = ACTIONS(1148), - [anon_sym_register] = ACTIONS(1148), - [anon_sym_inline] = ACTIONS(1148), - [anon_sym___inline] = ACTIONS(1148), - [anon_sym___inline__] = ACTIONS(1148), - [anon_sym___forceinline] = ACTIONS(1148), - [anon_sym_thread_local] = ACTIONS(1148), - [anon_sym___thread] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1148), - [anon_sym_constexpr] = ACTIONS(1148), - [anon_sym_volatile] = ACTIONS(1148), - [anon_sym_restrict] = ACTIONS(1148), - [anon_sym___restrict__] = ACTIONS(1148), - [anon_sym__Atomic] = ACTIONS(1148), - [anon_sym__Noreturn] = ACTIONS(1148), - [anon_sym_noreturn] = ACTIONS(1148), - [sym_primitive_type] = ACTIONS(1148), - [anon_sym_enum] = ACTIONS(1148), - [anon_sym_struct] = ACTIONS(1148), - [anon_sym_union] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_else] = ACTIONS(1148), - [anon_sym_switch] = ACTIONS(1148), - [anon_sym_case] = ACTIONS(1148), - [anon_sym_default] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_goto] = ACTIONS(1148), - [anon_sym___try] = ACTIONS(1148), - [anon_sym___leave] = ACTIONS(1148), - [anon_sym_DASH_DASH] = ACTIONS(1150), - [anon_sym_PLUS_PLUS] = ACTIONS(1150), - [anon_sym_sizeof] = ACTIONS(1148), - [anon_sym___alignof__] = ACTIONS(1148), - [anon_sym___alignof] = ACTIONS(1148), - [anon_sym__alignof] = ACTIONS(1148), - [anon_sym_alignof] = ACTIONS(1148), - [anon_sym__Alignof] = ACTIONS(1148), - [anon_sym_offsetof] = ACTIONS(1148), - [anon_sym__Generic] = ACTIONS(1148), - [anon_sym_asm] = ACTIONS(1148), - [anon_sym___asm__] = ACTIONS(1148), - [sym_number_literal] = ACTIONS(1150), - [anon_sym_L_SQUOTE] = ACTIONS(1150), - [anon_sym_u_SQUOTE] = ACTIONS(1150), - [anon_sym_U_SQUOTE] = ACTIONS(1150), - [anon_sym_u8_SQUOTE] = ACTIONS(1150), - [anon_sym_SQUOTE] = ACTIONS(1150), - [anon_sym_L_DQUOTE] = ACTIONS(1150), - [anon_sym_u_DQUOTE] = ACTIONS(1150), - [anon_sym_U_DQUOTE] = ACTIONS(1150), - [anon_sym_u8_DQUOTE] = ACTIONS(1150), - [anon_sym_DQUOTE] = ACTIONS(1150), - [sym_true] = ACTIONS(1148), - [sym_false] = ACTIONS(1148), - [anon_sym_NULL] = ACTIONS(1148), - [anon_sym_nullptr] = ACTIONS(1148), + [sym_identifier] = ACTIONS(1215), + [aux_sym_preproc_include_token1] = ACTIONS(1215), + [aux_sym_preproc_def_token1] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_LPAREN2] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym___extension__] = ACTIONS(1215), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym___attribute__] = ACTIONS(1215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1217), + [anon_sym___declspec] = ACTIONS(1215), + [anon_sym___cdecl] = ACTIONS(1215), + [anon_sym___clrcall] = ACTIONS(1215), + [anon_sym___stdcall] = ACTIONS(1215), + [anon_sym___fastcall] = ACTIONS(1215), + [anon_sym___thiscall] = ACTIONS(1215), + [anon_sym___vectorcall] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym___inline] = ACTIONS(1215), + [anon_sym___inline__] = ACTIONS(1215), + [anon_sym___forceinline] = ACTIONS(1215), + [anon_sym_thread_local] = ACTIONS(1215), + [anon_sym___thread] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_constexpr] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym___restrict__] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym__Noreturn] = ACTIONS(1215), + [anon_sym_noreturn] = ACTIONS(1215), + [anon_sym_alignas] = ACTIONS(1215), + [anon_sym__Alignas] = ACTIONS(1215), + [sym_primitive_type] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(1215), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1215), + [anon_sym_default] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym___try] = ACTIONS(1215), + [anon_sym___leave] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_sizeof] = ACTIONS(1215), + [anon_sym___alignof__] = ACTIONS(1215), + [anon_sym___alignof] = ACTIONS(1215), + [anon_sym__alignof] = ACTIONS(1215), + [anon_sym_alignof] = ACTIONS(1215), + [anon_sym__Alignof] = ACTIONS(1215), + [anon_sym_offsetof] = ACTIONS(1215), + [anon_sym__Generic] = ACTIONS(1215), + [anon_sym_asm] = ACTIONS(1215), + [anon_sym___asm__] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1217), + [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(1217), + [anon_sym_u_DQUOTE] = ACTIONS(1217), + [anon_sym_U_DQUOTE] = ACTIONS(1217), + [anon_sym_u8_DQUOTE] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [anon_sym_NULL] = ACTIONS(1215), + [anon_sym_nullptr] = ACTIONS(1215), [sym_comment] = ACTIONS(3), }, [259] = { - [sym_identifier] = ACTIONS(1188), - [aux_sym_preproc_include_token1] = ACTIONS(1188), - [aux_sym_preproc_def_token1] = ACTIONS(1188), - [aux_sym_preproc_if_token1] = ACTIONS(1188), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1188), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1188), - [sym_preproc_directive] = ACTIONS(1188), - [anon_sym_LPAREN2] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_TILDE] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym___extension__] = ACTIONS(1188), - [anon_sym_typedef] = ACTIONS(1188), - [anon_sym_extern] = ACTIONS(1188), - [anon_sym___attribute__] = ACTIONS(1188), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1190), - [anon_sym___declspec] = ACTIONS(1188), - [anon_sym___cdecl] = ACTIONS(1188), - [anon_sym___clrcall] = ACTIONS(1188), - [anon_sym___stdcall] = ACTIONS(1188), - [anon_sym___fastcall] = ACTIONS(1188), - [anon_sym___thiscall] = ACTIONS(1188), - [anon_sym___vectorcall] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_signed] = ACTIONS(1188), - [anon_sym_unsigned] = ACTIONS(1188), - [anon_sym_long] = ACTIONS(1188), - [anon_sym_short] = ACTIONS(1188), - [anon_sym_static] = ACTIONS(1188), - [anon_sym_auto] = ACTIONS(1188), - [anon_sym_register] = ACTIONS(1188), - [anon_sym_inline] = ACTIONS(1188), - [anon_sym___inline] = ACTIONS(1188), - [anon_sym___inline__] = ACTIONS(1188), - [anon_sym___forceinline] = ACTIONS(1188), - [anon_sym_thread_local] = ACTIONS(1188), - [anon_sym___thread] = ACTIONS(1188), - [anon_sym_const] = ACTIONS(1188), - [anon_sym_constexpr] = ACTIONS(1188), - [anon_sym_volatile] = ACTIONS(1188), - [anon_sym_restrict] = ACTIONS(1188), - [anon_sym___restrict__] = ACTIONS(1188), - [anon_sym__Atomic] = ACTIONS(1188), - [anon_sym__Noreturn] = ACTIONS(1188), - [anon_sym_noreturn] = ACTIONS(1188), - [sym_primitive_type] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1188), - [anon_sym_struct] = ACTIONS(1188), - [anon_sym_union] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1188), - [anon_sym_else] = ACTIONS(1188), - [anon_sym_switch] = ACTIONS(1188), - [anon_sym_case] = ACTIONS(1188), - [anon_sym_default] = ACTIONS(1188), - [anon_sym_while] = ACTIONS(1188), - [anon_sym_do] = ACTIONS(1188), - [anon_sym_for] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1188), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1188), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1188), - [anon_sym___leave] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_sizeof] = ACTIONS(1188), - [anon_sym___alignof__] = ACTIONS(1188), - [anon_sym___alignof] = ACTIONS(1188), - [anon_sym__alignof] = ACTIONS(1188), - [anon_sym_alignof] = ACTIONS(1188), - [anon_sym__Alignof] = ACTIONS(1188), - [anon_sym_offsetof] = ACTIONS(1188), - [anon_sym__Generic] = ACTIONS(1188), - [anon_sym_asm] = ACTIONS(1188), - [anon_sym___asm__] = ACTIONS(1188), - [sym_number_literal] = ACTIONS(1190), - [anon_sym_L_SQUOTE] = ACTIONS(1190), - [anon_sym_u_SQUOTE] = ACTIONS(1190), - [anon_sym_U_SQUOTE] = ACTIONS(1190), - [anon_sym_u8_SQUOTE] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_L_DQUOTE] = ACTIONS(1190), - [anon_sym_u_DQUOTE] = ACTIONS(1190), - [anon_sym_U_DQUOTE] = ACTIONS(1190), - [anon_sym_u8_DQUOTE] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym_true] = ACTIONS(1188), - [sym_false] = ACTIONS(1188), - [anon_sym_NULL] = ACTIONS(1188), - [anon_sym_nullptr] = ACTIONS(1188), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [260] = { - [sym_identifier] = ACTIONS(1184), - [aux_sym_preproc_include_token1] = ACTIONS(1184), - [aux_sym_preproc_def_token1] = ACTIONS(1184), - [aux_sym_preproc_if_token1] = ACTIONS(1184), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1184), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1184), - [sym_preproc_directive] = ACTIONS(1184), - [anon_sym_LPAREN2] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym___extension__] = ACTIONS(1184), - [anon_sym_typedef] = ACTIONS(1184), - [anon_sym_extern] = ACTIONS(1184), - [anon_sym___attribute__] = ACTIONS(1184), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1186), - [anon_sym___declspec] = ACTIONS(1184), - [anon_sym___cdecl] = ACTIONS(1184), - [anon_sym___clrcall] = ACTIONS(1184), - [anon_sym___stdcall] = ACTIONS(1184), - [anon_sym___fastcall] = ACTIONS(1184), - [anon_sym___thiscall] = ACTIONS(1184), - [anon_sym___vectorcall] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_signed] = ACTIONS(1184), - [anon_sym_unsigned] = ACTIONS(1184), - [anon_sym_long] = ACTIONS(1184), - [anon_sym_short] = ACTIONS(1184), - [anon_sym_static] = ACTIONS(1184), - [anon_sym_auto] = ACTIONS(1184), - [anon_sym_register] = ACTIONS(1184), - [anon_sym_inline] = ACTIONS(1184), - [anon_sym___inline] = ACTIONS(1184), - [anon_sym___inline__] = ACTIONS(1184), - [anon_sym___forceinline] = ACTIONS(1184), - [anon_sym_thread_local] = ACTIONS(1184), - [anon_sym___thread] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1184), - [anon_sym_constexpr] = ACTIONS(1184), - [anon_sym_volatile] = ACTIONS(1184), - [anon_sym_restrict] = ACTIONS(1184), - [anon_sym___restrict__] = ACTIONS(1184), - [anon_sym__Atomic] = ACTIONS(1184), - [anon_sym__Noreturn] = ACTIONS(1184), - [anon_sym_noreturn] = ACTIONS(1184), - [sym_primitive_type] = ACTIONS(1184), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_struct] = ACTIONS(1184), - [anon_sym_union] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_else] = ACTIONS(1184), - [anon_sym_switch] = ACTIONS(1184), - [anon_sym_case] = ACTIONS(1184), - [anon_sym_default] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_do] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_goto] = ACTIONS(1184), - [anon_sym___try] = ACTIONS(1184), - [anon_sym___leave] = ACTIONS(1184), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_sizeof] = ACTIONS(1184), - [anon_sym___alignof__] = ACTIONS(1184), - [anon_sym___alignof] = ACTIONS(1184), - [anon_sym__alignof] = ACTIONS(1184), - [anon_sym_alignof] = ACTIONS(1184), - [anon_sym__Alignof] = ACTIONS(1184), - [anon_sym_offsetof] = ACTIONS(1184), - [anon_sym__Generic] = ACTIONS(1184), - [anon_sym_asm] = ACTIONS(1184), - [anon_sym___asm__] = ACTIONS(1184), - [sym_number_literal] = ACTIONS(1186), - [anon_sym_L_SQUOTE] = ACTIONS(1186), - [anon_sym_u_SQUOTE] = ACTIONS(1186), - [anon_sym_U_SQUOTE] = ACTIONS(1186), - [anon_sym_u8_SQUOTE] = ACTIONS(1186), - [anon_sym_SQUOTE] = ACTIONS(1186), - [anon_sym_L_DQUOTE] = ACTIONS(1186), - [anon_sym_u_DQUOTE] = ACTIONS(1186), - [anon_sym_U_DQUOTE] = ACTIONS(1186), - [anon_sym_u8_DQUOTE] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym_true] = ACTIONS(1184), - [sym_false] = ACTIONS(1184), - [anon_sym_NULL] = ACTIONS(1184), - [anon_sym_nullptr] = ACTIONS(1184), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [261] = { - [ts_builtin_sym_end] = ACTIONS(1142), - [sym_identifier] = ACTIONS(1140), - [aux_sym_preproc_include_token1] = ACTIONS(1140), - [aux_sym_preproc_def_token1] = ACTIONS(1140), - [aux_sym_preproc_if_token1] = ACTIONS(1140), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1140), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1140), - [sym_preproc_directive] = ACTIONS(1140), - [anon_sym_LPAREN2] = ACTIONS(1142), - [anon_sym_BANG] = ACTIONS(1142), - [anon_sym_TILDE] = ACTIONS(1142), - [anon_sym_DASH] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(1140), - [anon_sym_STAR] = ACTIONS(1142), - [anon_sym_AMP] = ACTIONS(1142), - [anon_sym_SEMI] = ACTIONS(1142), - [anon_sym___extension__] = ACTIONS(1140), - [anon_sym_typedef] = ACTIONS(1140), - [anon_sym_extern] = ACTIONS(1140), - [anon_sym___attribute__] = ACTIONS(1140), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), - [anon_sym___declspec] = ACTIONS(1140), - [anon_sym___cdecl] = ACTIONS(1140), - [anon_sym___clrcall] = ACTIONS(1140), - [anon_sym___stdcall] = ACTIONS(1140), - [anon_sym___fastcall] = ACTIONS(1140), - [anon_sym___thiscall] = ACTIONS(1140), - [anon_sym___vectorcall] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(1142), - [anon_sym_signed] = ACTIONS(1140), - [anon_sym_unsigned] = ACTIONS(1140), - [anon_sym_long] = ACTIONS(1140), - [anon_sym_short] = ACTIONS(1140), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_auto] = ACTIONS(1140), - [anon_sym_register] = ACTIONS(1140), - [anon_sym_inline] = ACTIONS(1140), - [anon_sym___inline] = ACTIONS(1140), - [anon_sym___inline__] = ACTIONS(1140), - [anon_sym___forceinline] = ACTIONS(1140), - [anon_sym_thread_local] = ACTIONS(1140), - [anon_sym___thread] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1140), - [anon_sym_constexpr] = ACTIONS(1140), - [anon_sym_volatile] = ACTIONS(1140), - [anon_sym_restrict] = ACTIONS(1140), - [anon_sym___restrict__] = ACTIONS(1140), - [anon_sym__Atomic] = ACTIONS(1140), - [anon_sym__Noreturn] = ACTIONS(1140), - [anon_sym_noreturn] = ACTIONS(1140), - [sym_primitive_type] = ACTIONS(1140), - [anon_sym_enum] = ACTIONS(1140), - [anon_sym_struct] = ACTIONS(1140), - [anon_sym_union] = ACTIONS(1140), - [anon_sym_if] = ACTIONS(1140), - [anon_sym_else] = ACTIONS(1140), - [anon_sym_switch] = ACTIONS(1140), - [anon_sym_case] = ACTIONS(1140), - [anon_sym_default] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1140), - [anon_sym_return] = ACTIONS(1140), - [anon_sym_break] = ACTIONS(1140), - [anon_sym_continue] = ACTIONS(1140), - [anon_sym_goto] = ACTIONS(1140), - [anon_sym___try] = ACTIONS(1140), - [anon_sym___leave] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1142), - [anon_sym_PLUS_PLUS] = ACTIONS(1142), - [anon_sym_sizeof] = ACTIONS(1140), - [anon_sym___alignof__] = ACTIONS(1140), - [anon_sym___alignof] = ACTIONS(1140), - [anon_sym__alignof] = ACTIONS(1140), - [anon_sym_alignof] = ACTIONS(1140), - [anon_sym__Alignof] = ACTIONS(1140), - [anon_sym_offsetof] = ACTIONS(1140), - [anon_sym__Generic] = ACTIONS(1140), - [anon_sym_asm] = ACTIONS(1140), - [anon_sym___asm__] = ACTIONS(1140), - [sym_number_literal] = ACTIONS(1142), - [anon_sym_L_SQUOTE] = ACTIONS(1142), - [anon_sym_u_SQUOTE] = ACTIONS(1142), - [anon_sym_U_SQUOTE] = ACTIONS(1142), - [anon_sym_u8_SQUOTE] = ACTIONS(1142), - [anon_sym_SQUOTE] = ACTIONS(1142), - [anon_sym_L_DQUOTE] = ACTIONS(1142), - [anon_sym_u_DQUOTE] = ACTIONS(1142), - [anon_sym_U_DQUOTE] = ACTIONS(1142), - [anon_sym_u8_DQUOTE] = ACTIONS(1142), - [anon_sym_DQUOTE] = ACTIONS(1142), - [sym_true] = ACTIONS(1140), - [sym_false] = ACTIONS(1140), - [anon_sym_NULL] = ACTIONS(1140), - [anon_sym_nullptr] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1239), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_LPAREN2] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym___extension__] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym___attribute__] = ACTIONS(1239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1239), + [anon_sym___cdecl] = ACTIONS(1239), + [anon_sym___clrcall] = ACTIONS(1239), + [anon_sym___stdcall] = ACTIONS(1239), + [anon_sym___fastcall] = ACTIONS(1239), + [anon_sym___thiscall] = ACTIONS(1239), + [anon_sym___vectorcall] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym___inline] = ACTIONS(1239), + [anon_sym___inline__] = ACTIONS(1239), + [anon_sym___forceinline] = ACTIONS(1239), + [anon_sym_thread_local] = ACTIONS(1239), + [anon_sym___thread] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_constexpr] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym___restrict__] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym__Noreturn] = ACTIONS(1239), + [anon_sym_noreturn] = ACTIONS(1239), + [anon_sym_alignas] = ACTIONS(1239), + [anon_sym__Alignas] = ACTIONS(1239), + [sym_primitive_type] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_switch] = ACTIONS(1239), + [anon_sym_case] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_goto] = ACTIONS(1239), + [anon_sym___try] = ACTIONS(1239), + [anon_sym___leave] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_sizeof] = ACTIONS(1239), + [anon_sym___alignof__] = ACTIONS(1239), + [anon_sym___alignof] = ACTIONS(1239), + [anon_sym__alignof] = ACTIONS(1239), + [anon_sym_alignof] = ACTIONS(1239), + [anon_sym__Alignof] = ACTIONS(1239), + [anon_sym_offsetof] = ACTIONS(1239), + [anon_sym__Generic] = ACTIONS(1239), + [anon_sym_asm] = ACTIONS(1239), + [anon_sym___asm__] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1241), + [anon_sym_L_SQUOTE] = ACTIONS(1241), + [anon_sym_u_SQUOTE] = ACTIONS(1241), + [anon_sym_U_SQUOTE] = ACTIONS(1241), + [anon_sym_u8_SQUOTE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_L_DQUOTE] = ACTIONS(1241), + [anon_sym_u_DQUOTE] = ACTIONS(1241), + [anon_sym_U_DQUOTE] = ACTIONS(1241), + [anon_sym_u8_DQUOTE] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [anon_sym_NULL] = ACTIONS(1239), + [anon_sym_nullptr] = ACTIONS(1239), [sym_comment] = ACTIONS(3), }, [262] = { - [ts_builtin_sym_end] = ACTIONS(1138), - [sym_identifier] = ACTIONS(1136), - [aux_sym_preproc_include_token1] = ACTIONS(1136), - [aux_sym_preproc_def_token1] = ACTIONS(1136), - [aux_sym_preproc_if_token1] = ACTIONS(1136), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1136), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1136), - [sym_preproc_directive] = ACTIONS(1136), - [anon_sym_LPAREN2] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1138), - [anon_sym_TILDE] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1136), - [anon_sym_PLUS] = ACTIONS(1136), - [anon_sym_STAR] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym___extension__] = ACTIONS(1136), - [anon_sym_typedef] = ACTIONS(1136), - [anon_sym_extern] = ACTIONS(1136), - [anon_sym___attribute__] = ACTIONS(1136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1138), - [anon_sym___declspec] = ACTIONS(1136), - [anon_sym___cdecl] = ACTIONS(1136), - [anon_sym___clrcall] = ACTIONS(1136), - [anon_sym___stdcall] = ACTIONS(1136), - [anon_sym___fastcall] = ACTIONS(1136), - [anon_sym___thiscall] = ACTIONS(1136), - [anon_sym___vectorcall] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_signed] = ACTIONS(1136), - [anon_sym_unsigned] = ACTIONS(1136), - [anon_sym_long] = ACTIONS(1136), - [anon_sym_short] = ACTIONS(1136), - [anon_sym_static] = ACTIONS(1136), - [anon_sym_auto] = ACTIONS(1136), - [anon_sym_register] = ACTIONS(1136), - [anon_sym_inline] = ACTIONS(1136), - [anon_sym___inline] = ACTIONS(1136), - [anon_sym___inline__] = ACTIONS(1136), - [anon_sym___forceinline] = ACTIONS(1136), - [anon_sym_thread_local] = ACTIONS(1136), - [anon_sym___thread] = ACTIONS(1136), - [anon_sym_const] = ACTIONS(1136), - [anon_sym_constexpr] = ACTIONS(1136), - [anon_sym_volatile] = ACTIONS(1136), - [anon_sym_restrict] = ACTIONS(1136), - [anon_sym___restrict__] = ACTIONS(1136), - [anon_sym__Atomic] = ACTIONS(1136), - [anon_sym__Noreturn] = ACTIONS(1136), - [anon_sym_noreturn] = ACTIONS(1136), - [sym_primitive_type] = ACTIONS(1136), - [anon_sym_enum] = ACTIONS(1136), - [anon_sym_struct] = ACTIONS(1136), - [anon_sym_union] = ACTIONS(1136), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_else] = ACTIONS(1136), - [anon_sym_switch] = ACTIONS(1136), - [anon_sym_case] = ACTIONS(1136), - [anon_sym_default] = ACTIONS(1136), - [anon_sym_while] = ACTIONS(1136), - [anon_sym_do] = ACTIONS(1136), - [anon_sym_for] = ACTIONS(1136), - [anon_sym_return] = ACTIONS(1136), - [anon_sym_break] = ACTIONS(1136), - [anon_sym_continue] = ACTIONS(1136), - [anon_sym_goto] = ACTIONS(1136), - [anon_sym___try] = ACTIONS(1136), - [anon_sym___leave] = ACTIONS(1136), - [anon_sym_DASH_DASH] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1138), - [anon_sym_sizeof] = ACTIONS(1136), - [anon_sym___alignof__] = ACTIONS(1136), - [anon_sym___alignof] = ACTIONS(1136), - [anon_sym__alignof] = ACTIONS(1136), - [anon_sym_alignof] = ACTIONS(1136), - [anon_sym__Alignof] = ACTIONS(1136), - [anon_sym_offsetof] = ACTIONS(1136), - [anon_sym__Generic] = ACTIONS(1136), - [anon_sym_asm] = ACTIONS(1136), - [anon_sym___asm__] = ACTIONS(1136), - [sym_number_literal] = ACTIONS(1138), - [anon_sym_L_SQUOTE] = ACTIONS(1138), - [anon_sym_u_SQUOTE] = ACTIONS(1138), - [anon_sym_U_SQUOTE] = ACTIONS(1138), - [anon_sym_u8_SQUOTE] = ACTIONS(1138), - [anon_sym_SQUOTE] = ACTIONS(1138), - [anon_sym_L_DQUOTE] = ACTIONS(1138), - [anon_sym_u_DQUOTE] = ACTIONS(1138), - [anon_sym_U_DQUOTE] = ACTIONS(1138), - [anon_sym_u8_DQUOTE] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(1138), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [anon_sym_NULL] = ACTIONS(1136), - [anon_sym_nullptr] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1171), + [aux_sym_preproc_include_token1] = ACTIONS(1171), + [aux_sym_preproc_def_token1] = ACTIONS(1171), + [aux_sym_preproc_if_token1] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1171), + [sym_preproc_directive] = ACTIONS(1171), + [anon_sym_LPAREN2] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym___extension__] = ACTIONS(1171), + [anon_sym_typedef] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym___attribute__] = ACTIONS(1171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1173), + [anon_sym___declspec] = ACTIONS(1171), + [anon_sym___cdecl] = ACTIONS(1171), + [anon_sym___clrcall] = ACTIONS(1171), + [anon_sym___stdcall] = ACTIONS(1171), + [anon_sym___fastcall] = ACTIONS(1171), + [anon_sym___thiscall] = ACTIONS(1171), + [anon_sym___vectorcall] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(1171), + [anon_sym_unsigned] = ACTIONS(1171), + [anon_sym_long] = ACTIONS(1171), + [anon_sym_short] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1171), + [anon_sym_auto] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_inline] = ACTIONS(1171), + [anon_sym___inline] = ACTIONS(1171), + [anon_sym___inline__] = ACTIONS(1171), + [anon_sym___forceinline] = ACTIONS(1171), + [anon_sym_thread_local] = ACTIONS(1171), + [anon_sym___thread] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_constexpr] = ACTIONS(1171), + [anon_sym_volatile] = ACTIONS(1171), + [anon_sym_restrict] = ACTIONS(1171), + [anon_sym___restrict__] = ACTIONS(1171), + [anon_sym__Atomic] = ACTIONS(1171), + [anon_sym__Noreturn] = ACTIONS(1171), + [anon_sym_noreturn] = ACTIONS(1171), + [anon_sym_alignas] = ACTIONS(1171), + [anon_sym__Alignas] = ACTIONS(1171), + [sym_primitive_type] = ACTIONS(1171), + [anon_sym_enum] = ACTIONS(1171), + [anon_sym_struct] = ACTIONS(1171), + [anon_sym_union] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_switch] = ACTIONS(1171), + [anon_sym_case] = ACTIONS(1171), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_goto] = ACTIONS(1171), + [anon_sym___try] = ACTIONS(1171), + [anon_sym___leave] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1171), + [anon_sym___alignof__] = ACTIONS(1171), + [anon_sym___alignof] = ACTIONS(1171), + [anon_sym__alignof] = ACTIONS(1171), + [anon_sym_alignof] = ACTIONS(1171), + [anon_sym__Alignof] = ACTIONS(1171), + [anon_sym_offsetof] = ACTIONS(1171), + [anon_sym__Generic] = ACTIONS(1171), + [anon_sym_asm] = ACTIONS(1171), + [anon_sym___asm__] = ACTIONS(1171), + [sym_number_literal] = ACTIONS(1173), + [anon_sym_L_SQUOTE] = ACTIONS(1173), + [anon_sym_u_SQUOTE] = ACTIONS(1173), + [anon_sym_U_SQUOTE] = ACTIONS(1173), + [anon_sym_u8_SQUOTE] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1173), + [anon_sym_L_DQUOTE] = ACTIONS(1173), + [anon_sym_u_DQUOTE] = ACTIONS(1173), + [anon_sym_U_DQUOTE] = ACTIONS(1173), + [anon_sym_u8_DQUOTE] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym_true] = ACTIONS(1171), + [sym_false] = ACTIONS(1171), + [anon_sym_NULL] = ACTIONS(1171), + [anon_sym_nullptr] = ACTIONS(1171), [sym_comment] = ACTIONS(3), }, [263] = { - [sym_identifier] = ACTIONS(1180), - [aux_sym_preproc_include_token1] = ACTIONS(1180), - [aux_sym_preproc_def_token1] = ACTIONS(1180), - [aux_sym_preproc_if_token1] = ACTIONS(1180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1180), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1180), - [sym_preproc_directive] = ACTIONS(1180), - [anon_sym_LPAREN2] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1182), - [anon_sym_TILDE] = ACTIONS(1182), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_STAR] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1182), - [anon_sym_SEMI] = ACTIONS(1182), - [anon_sym___extension__] = ACTIONS(1180), - [anon_sym_typedef] = ACTIONS(1180), - [anon_sym_extern] = ACTIONS(1180), - [anon_sym___attribute__] = ACTIONS(1180), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1182), - [anon_sym___declspec] = ACTIONS(1180), - [anon_sym___cdecl] = ACTIONS(1180), - [anon_sym___clrcall] = ACTIONS(1180), - [anon_sym___stdcall] = ACTIONS(1180), - [anon_sym___fastcall] = ACTIONS(1180), - [anon_sym___thiscall] = ACTIONS(1180), - [anon_sym___vectorcall] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_RBRACE] = ACTIONS(1182), - [anon_sym_signed] = ACTIONS(1180), - [anon_sym_unsigned] = ACTIONS(1180), - [anon_sym_long] = ACTIONS(1180), - [anon_sym_short] = ACTIONS(1180), - [anon_sym_static] = ACTIONS(1180), - [anon_sym_auto] = ACTIONS(1180), - [anon_sym_register] = ACTIONS(1180), - [anon_sym_inline] = ACTIONS(1180), - [anon_sym___inline] = ACTIONS(1180), - [anon_sym___inline__] = ACTIONS(1180), - [anon_sym___forceinline] = ACTIONS(1180), - [anon_sym_thread_local] = ACTIONS(1180), - [anon_sym___thread] = ACTIONS(1180), - [anon_sym_const] = ACTIONS(1180), - [anon_sym_constexpr] = ACTIONS(1180), - [anon_sym_volatile] = ACTIONS(1180), - [anon_sym_restrict] = ACTIONS(1180), - [anon_sym___restrict__] = ACTIONS(1180), - [anon_sym__Atomic] = ACTIONS(1180), - [anon_sym__Noreturn] = ACTIONS(1180), - [anon_sym_noreturn] = ACTIONS(1180), - [sym_primitive_type] = ACTIONS(1180), - [anon_sym_enum] = ACTIONS(1180), - [anon_sym_struct] = ACTIONS(1180), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_else] = ACTIONS(1180), - [anon_sym_switch] = ACTIONS(1180), - [anon_sym_case] = ACTIONS(1180), - [anon_sym_default] = ACTIONS(1180), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1180), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_break] = ACTIONS(1180), - [anon_sym_continue] = ACTIONS(1180), - [anon_sym_goto] = ACTIONS(1180), - [anon_sym___try] = ACTIONS(1180), - [anon_sym___leave] = ACTIONS(1180), - [anon_sym_DASH_DASH] = ACTIONS(1182), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_sizeof] = ACTIONS(1180), - [anon_sym___alignof__] = ACTIONS(1180), - [anon_sym___alignof] = ACTIONS(1180), - [anon_sym__alignof] = ACTIONS(1180), - [anon_sym_alignof] = ACTIONS(1180), - [anon_sym__Alignof] = ACTIONS(1180), - [anon_sym_offsetof] = ACTIONS(1180), - [anon_sym__Generic] = ACTIONS(1180), - [anon_sym_asm] = ACTIONS(1180), - [anon_sym___asm__] = ACTIONS(1180), - [sym_number_literal] = ACTIONS(1182), - [anon_sym_L_SQUOTE] = ACTIONS(1182), - [anon_sym_u_SQUOTE] = ACTIONS(1182), - [anon_sym_U_SQUOTE] = ACTIONS(1182), - [anon_sym_u8_SQUOTE] = ACTIONS(1182), - [anon_sym_SQUOTE] = ACTIONS(1182), - [anon_sym_L_DQUOTE] = ACTIONS(1182), - [anon_sym_u_DQUOTE] = ACTIONS(1182), - [anon_sym_U_DQUOTE] = ACTIONS(1182), - [anon_sym_u8_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1182), - [sym_true] = ACTIONS(1180), - [sym_false] = ACTIONS(1180), - [anon_sym_NULL] = ACTIONS(1180), - [anon_sym_nullptr] = ACTIONS(1180), + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1243), + [aux_sym_preproc_def_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), + [sym_preproc_directive] = ACTIONS(1243), + [anon_sym_LPAREN2] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym___extension__] = ACTIONS(1243), + [anon_sym_typedef] = ACTIONS(1243), + [anon_sym_extern] = ACTIONS(1243), + [anon_sym___attribute__] = ACTIONS(1243), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), + [anon_sym___declspec] = ACTIONS(1243), + [anon_sym___cdecl] = ACTIONS(1243), + [anon_sym___clrcall] = ACTIONS(1243), + [anon_sym___stdcall] = ACTIONS(1243), + [anon_sym___fastcall] = ACTIONS(1243), + [anon_sym___thiscall] = ACTIONS(1243), + [anon_sym___vectorcall] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_signed] = ACTIONS(1243), + [anon_sym_unsigned] = ACTIONS(1243), + [anon_sym_long] = ACTIONS(1243), + [anon_sym_short] = ACTIONS(1243), + [anon_sym_static] = ACTIONS(1243), + [anon_sym_auto] = ACTIONS(1243), + [anon_sym_register] = ACTIONS(1243), + [anon_sym_inline] = ACTIONS(1243), + [anon_sym___inline] = ACTIONS(1243), + [anon_sym___inline__] = ACTIONS(1243), + [anon_sym___forceinline] = ACTIONS(1243), + [anon_sym_thread_local] = ACTIONS(1243), + [anon_sym___thread] = ACTIONS(1243), + [anon_sym_const] = ACTIONS(1243), + [anon_sym_constexpr] = ACTIONS(1243), + [anon_sym_volatile] = ACTIONS(1243), + [anon_sym_restrict] = ACTIONS(1243), + [anon_sym___restrict__] = ACTIONS(1243), + [anon_sym__Atomic] = ACTIONS(1243), + [anon_sym__Noreturn] = ACTIONS(1243), + [anon_sym_noreturn] = ACTIONS(1243), + [anon_sym_alignas] = ACTIONS(1243), + [anon_sym__Alignas] = ACTIONS(1243), + [sym_primitive_type] = ACTIONS(1243), + [anon_sym_enum] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_case] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_goto] = ACTIONS(1243), + [anon_sym___try] = ACTIONS(1243), + [anon_sym___leave] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_sizeof] = ACTIONS(1243), + [anon_sym___alignof__] = ACTIONS(1243), + [anon_sym___alignof] = ACTIONS(1243), + [anon_sym__alignof] = ACTIONS(1243), + [anon_sym_alignof] = ACTIONS(1243), + [anon_sym__Alignof] = ACTIONS(1243), + [anon_sym_offsetof] = ACTIONS(1243), + [anon_sym__Generic] = ACTIONS(1243), + [anon_sym_asm] = ACTIONS(1243), + [anon_sym___asm__] = ACTIONS(1243), + [sym_number_literal] = ACTIONS(1245), + [anon_sym_L_SQUOTE] = ACTIONS(1245), + [anon_sym_u_SQUOTE] = ACTIONS(1245), + [anon_sym_U_SQUOTE] = ACTIONS(1245), + [anon_sym_u8_SQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1245), + [anon_sym_L_DQUOTE] = ACTIONS(1245), + [anon_sym_u_DQUOTE] = ACTIONS(1245), + [anon_sym_U_DQUOTE] = ACTIONS(1245), + [anon_sym_u8_DQUOTE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_true] = ACTIONS(1243), + [sym_false] = ACTIONS(1243), + [anon_sym_NULL] = ACTIONS(1243), + [anon_sym_nullptr] = ACTIONS(1243), [sym_comment] = ACTIONS(3), }, [264] = { - [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___extension__] = ACTIONS(1120), - [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_signed] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1120), - [anon_sym_long] = ACTIONS(1120), - [anon_sym_short] = ACTIONS(1120), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_auto] = ACTIONS(1120), - [anon_sym_register] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym___inline] = ACTIONS(1120), - [anon_sym___inline__] = ACTIONS(1120), - [anon_sym___forceinline] = ACTIONS(1120), - [anon_sym_thread_local] = ACTIONS(1120), - [anon_sym___thread] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1120), - [anon_sym___leave] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_sizeof] = ACTIONS(1120), - [anon_sym___alignof__] = ACTIONS(1120), - [anon_sym___alignof] = ACTIONS(1120), - [anon_sym__alignof] = ACTIONS(1120), - [anon_sym_alignof] = ACTIONS(1120), - [anon_sym__Alignof] = ACTIONS(1120), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1120), - [anon_sym_nullptr] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1135), + [aux_sym_preproc_include_token1] = ACTIONS(1135), + [aux_sym_preproc_def_token1] = ACTIONS(1135), + [aux_sym_preproc_if_token1] = ACTIONS(1135), + [aux_sym_preproc_if_token2] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1135), + [sym_preproc_directive] = ACTIONS(1135), + [anon_sym_LPAREN2] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1137), + [anon_sym___extension__] = ACTIONS(1135), + [anon_sym_typedef] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym___attribute__] = ACTIONS(1135), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___declspec] = ACTIONS(1135), + [anon_sym___cdecl] = ACTIONS(1135), + [anon_sym___clrcall] = ACTIONS(1135), + [anon_sym___stdcall] = ACTIONS(1135), + [anon_sym___fastcall] = ACTIONS(1135), + [anon_sym___thiscall] = ACTIONS(1135), + [anon_sym___vectorcall] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_signed] = ACTIONS(1135), + [anon_sym_unsigned] = ACTIONS(1135), + [anon_sym_long] = ACTIONS(1135), + [anon_sym_short] = ACTIONS(1135), + [anon_sym_static] = ACTIONS(1135), + [anon_sym_auto] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_inline] = ACTIONS(1135), + [anon_sym___inline] = ACTIONS(1135), + [anon_sym___inline__] = ACTIONS(1135), + [anon_sym___forceinline] = ACTIONS(1135), + [anon_sym_thread_local] = ACTIONS(1135), + [anon_sym___thread] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_constexpr] = ACTIONS(1135), + [anon_sym_volatile] = ACTIONS(1135), + [anon_sym_restrict] = ACTIONS(1135), + [anon_sym___restrict__] = ACTIONS(1135), + [anon_sym__Atomic] = ACTIONS(1135), + [anon_sym__Noreturn] = ACTIONS(1135), + [anon_sym_noreturn] = ACTIONS(1135), + [anon_sym_alignas] = ACTIONS(1135), + [anon_sym__Alignas] = ACTIONS(1135), + [sym_primitive_type] = ACTIONS(1135), + [anon_sym_enum] = ACTIONS(1135), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_union] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_switch] = ACTIONS(1135), + [anon_sym_case] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_goto] = ACTIONS(1135), + [anon_sym___try] = ACTIONS(1135), + [anon_sym___leave] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_sizeof] = ACTIONS(1135), + [anon_sym___alignof__] = ACTIONS(1135), + [anon_sym___alignof] = ACTIONS(1135), + [anon_sym__alignof] = ACTIONS(1135), + [anon_sym_alignof] = ACTIONS(1135), + [anon_sym__Alignof] = ACTIONS(1135), + [anon_sym_offsetof] = ACTIONS(1135), + [anon_sym__Generic] = ACTIONS(1135), + [anon_sym_asm] = ACTIONS(1135), + [anon_sym___asm__] = ACTIONS(1135), + [sym_number_literal] = ACTIONS(1137), + [anon_sym_L_SQUOTE] = ACTIONS(1137), + [anon_sym_u_SQUOTE] = ACTIONS(1137), + [anon_sym_U_SQUOTE] = ACTIONS(1137), + [anon_sym_u8_SQUOTE] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1137), + [anon_sym_L_DQUOTE] = ACTIONS(1137), + [anon_sym_u_DQUOTE] = ACTIONS(1137), + [anon_sym_U_DQUOTE] = ACTIONS(1137), + [anon_sym_u8_DQUOTE] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym_true] = ACTIONS(1135), + [sym_false] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [anon_sym_nullptr] = ACTIONS(1135), [sym_comment] = ACTIONS(3), }, [265] = { - [ts_builtin_sym_end] = ACTIONS(1134), - [sym_identifier] = ACTIONS(1132), - [aux_sym_preproc_include_token1] = ACTIONS(1132), - [aux_sym_preproc_def_token1] = ACTIONS(1132), - [aux_sym_preproc_if_token1] = ACTIONS(1132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1132), - [sym_preproc_directive] = ACTIONS(1132), - [anon_sym_LPAREN2] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1132), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1134), - [anon_sym_SEMI] = ACTIONS(1134), - [anon_sym___extension__] = ACTIONS(1132), - [anon_sym_typedef] = ACTIONS(1132), - [anon_sym_extern] = ACTIONS(1132), - [anon_sym___attribute__] = ACTIONS(1132), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1134), - [anon_sym___declspec] = ACTIONS(1132), - [anon_sym___cdecl] = ACTIONS(1132), - [anon_sym___clrcall] = ACTIONS(1132), - [anon_sym___stdcall] = ACTIONS(1132), - [anon_sym___fastcall] = ACTIONS(1132), - [anon_sym___thiscall] = ACTIONS(1132), - [anon_sym___vectorcall] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_signed] = ACTIONS(1132), - [anon_sym_unsigned] = ACTIONS(1132), - [anon_sym_long] = ACTIONS(1132), - [anon_sym_short] = ACTIONS(1132), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_auto] = ACTIONS(1132), - [anon_sym_register] = ACTIONS(1132), - [anon_sym_inline] = ACTIONS(1132), - [anon_sym___inline] = ACTIONS(1132), - [anon_sym___inline__] = ACTIONS(1132), - [anon_sym___forceinline] = ACTIONS(1132), - [anon_sym_thread_local] = ACTIONS(1132), - [anon_sym___thread] = ACTIONS(1132), - [anon_sym_const] = ACTIONS(1132), - [anon_sym_constexpr] = ACTIONS(1132), - [anon_sym_volatile] = ACTIONS(1132), - [anon_sym_restrict] = ACTIONS(1132), - [anon_sym___restrict__] = ACTIONS(1132), - [anon_sym__Atomic] = ACTIONS(1132), - [anon_sym__Noreturn] = ACTIONS(1132), - [anon_sym_noreturn] = ACTIONS(1132), - [sym_primitive_type] = ACTIONS(1132), - [anon_sym_enum] = ACTIONS(1132), - [anon_sym_struct] = ACTIONS(1132), - [anon_sym_union] = ACTIONS(1132), - [anon_sym_if] = ACTIONS(1132), - [anon_sym_else] = ACTIONS(1132), - [anon_sym_switch] = ACTIONS(1132), - [anon_sym_case] = ACTIONS(1132), - [anon_sym_default] = ACTIONS(1132), - [anon_sym_while] = ACTIONS(1132), - [anon_sym_do] = ACTIONS(1132), - [anon_sym_for] = ACTIONS(1132), - [anon_sym_return] = ACTIONS(1132), - [anon_sym_break] = ACTIONS(1132), - [anon_sym_continue] = ACTIONS(1132), - [anon_sym_goto] = ACTIONS(1132), - [anon_sym___try] = ACTIONS(1132), - [anon_sym___leave] = ACTIONS(1132), - [anon_sym_DASH_DASH] = ACTIONS(1134), - [anon_sym_PLUS_PLUS] = ACTIONS(1134), - [anon_sym_sizeof] = ACTIONS(1132), - [anon_sym___alignof__] = ACTIONS(1132), - [anon_sym___alignof] = ACTIONS(1132), - [anon_sym__alignof] = ACTIONS(1132), - [anon_sym_alignof] = ACTIONS(1132), - [anon_sym__Alignof] = ACTIONS(1132), - [anon_sym_offsetof] = ACTIONS(1132), - [anon_sym__Generic] = ACTIONS(1132), - [anon_sym_asm] = ACTIONS(1132), - [anon_sym___asm__] = ACTIONS(1132), - [sym_number_literal] = ACTIONS(1134), - [anon_sym_L_SQUOTE] = ACTIONS(1134), - [anon_sym_u_SQUOTE] = ACTIONS(1134), - [anon_sym_U_SQUOTE] = ACTIONS(1134), - [anon_sym_u8_SQUOTE] = ACTIONS(1134), - [anon_sym_SQUOTE] = ACTIONS(1134), - [anon_sym_L_DQUOTE] = ACTIONS(1134), - [anon_sym_u_DQUOTE] = ACTIONS(1134), - [anon_sym_U_DQUOTE] = ACTIONS(1134), - [anon_sym_u8_DQUOTE] = ACTIONS(1134), - [anon_sym_DQUOTE] = ACTIONS(1134), - [sym_true] = ACTIONS(1132), - [sym_false] = ACTIONS(1132), - [anon_sym_NULL] = ACTIONS(1132), - [anon_sym_nullptr] = ACTIONS(1132), + [ts_builtin_sym_end] = ACTIONS(1245), + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1243), + [aux_sym_preproc_def_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), + [sym_preproc_directive] = ACTIONS(1243), + [anon_sym_LPAREN2] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym___extension__] = ACTIONS(1243), + [anon_sym_typedef] = ACTIONS(1243), + [anon_sym_extern] = ACTIONS(1243), + [anon_sym___attribute__] = ACTIONS(1243), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), + [anon_sym___declspec] = ACTIONS(1243), + [anon_sym___cdecl] = ACTIONS(1243), + [anon_sym___clrcall] = ACTIONS(1243), + [anon_sym___stdcall] = ACTIONS(1243), + [anon_sym___fastcall] = ACTIONS(1243), + [anon_sym___thiscall] = ACTIONS(1243), + [anon_sym___vectorcall] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_signed] = ACTIONS(1243), + [anon_sym_unsigned] = ACTIONS(1243), + [anon_sym_long] = ACTIONS(1243), + [anon_sym_short] = ACTIONS(1243), + [anon_sym_static] = ACTIONS(1243), + [anon_sym_auto] = ACTIONS(1243), + [anon_sym_register] = ACTIONS(1243), + [anon_sym_inline] = ACTIONS(1243), + [anon_sym___inline] = ACTIONS(1243), + [anon_sym___inline__] = ACTIONS(1243), + [anon_sym___forceinline] = ACTIONS(1243), + [anon_sym_thread_local] = ACTIONS(1243), + [anon_sym___thread] = ACTIONS(1243), + [anon_sym_const] = ACTIONS(1243), + [anon_sym_constexpr] = ACTIONS(1243), + [anon_sym_volatile] = ACTIONS(1243), + [anon_sym_restrict] = ACTIONS(1243), + [anon_sym___restrict__] = ACTIONS(1243), + [anon_sym__Atomic] = ACTIONS(1243), + [anon_sym__Noreturn] = ACTIONS(1243), + [anon_sym_noreturn] = ACTIONS(1243), + [anon_sym_alignas] = ACTIONS(1243), + [anon_sym__Alignas] = ACTIONS(1243), + [sym_primitive_type] = ACTIONS(1243), + [anon_sym_enum] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_case] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_goto] = ACTIONS(1243), + [anon_sym___try] = ACTIONS(1243), + [anon_sym___leave] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_sizeof] = ACTIONS(1243), + [anon_sym___alignof__] = ACTIONS(1243), + [anon_sym___alignof] = ACTIONS(1243), + [anon_sym__alignof] = ACTIONS(1243), + [anon_sym_alignof] = ACTIONS(1243), + [anon_sym__Alignof] = ACTIONS(1243), + [anon_sym_offsetof] = ACTIONS(1243), + [anon_sym__Generic] = ACTIONS(1243), + [anon_sym_asm] = ACTIONS(1243), + [anon_sym___asm__] = ACTIONS(1243), + [sym_number_literal] = ACTIONS(1245), + [anon_sym_L_SQUOTE] = ACTIONS(1245), + [anon_sym_u_SQUOTE] = ACTIONS(1245), + [anon_sym_U_SQUOTE] = ACTIONS(1245), + [anon_sym_u8_SQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1245), + [anon_sym_L_DQUOTE] = ACTIONS(1245), + [anon_sym_u_DQUOTE] = ACTIONS(1245), + [anon_sym_U_DQUOTE] = ACTIONS(1245), + [anon_sym_u8_DQUOTE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_true] = ACTIONS(1243), + [sym_false] = ACTIONS(1243), + [anon_sym_NULL] = ACTIONS(1243), + [anon_sym_nullptr] = ACTIONS(1243), [sym_comment] = ACTIONS(3), }, [266] = { - [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___extension__] = ACTIONS(1120), - [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_signed] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1120), - [anon_sym_long] = ACTIONS(1120), - [anon_sym_short] = ACTIONS(1120), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_auto] = ACTIONS(1120), - [anon_sym_register] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym___inline] = ACTIONS(1120), - [anon_sym___inline__] = ACTIONS(1120), - [anon_sym___forceinline] = ACTIONS(1120), - [anon_sym_thread_local] = ACTIONS(1120), - [anon_sym___thread] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1120), - [anon_sym___leave] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_sizeof] = ACTIONS(1120), - [anon_sym___alignof__] = ACTIONS(1120), - [anon_sym___alignof] = ACTIONS(1120), - [anon_sym__alignof] = ACTIONS(1120), - [anon_sym_alignof] = ACTIONS(1120), - [anon_sym__Alignof] = ACTIONS(1120), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1120), - [anon_sym_nullptr] = ACTIONS(1120), + [ts_builtin_sym_end] = ACTIONS(1245), + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1243), + [aux_sym_preproc_def_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), + [sym_preproc_directive] = ACTIONS(1243), + [anon_sym_LPAREN2] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym___extension__] = ACTIONS(1243), + [anon_sym_typedef] = ACTIONS(1243), + [anon_sym_extern] = ACTIONS(1243), + [anon_sym___attribute__] = ACTIONS(1243), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), + [anon_sym___declspec] = ACTIONS(1243), + [anon_sym___cdecl] = ACTIONS(1243), + [anon_sym___clrcall] = ACTIONS(1243), + [anon_sym___stdcall] = ACTIONS(1243), + [anon_sym___fastcall] = ACTIONS(1243), + [anon_sym___thiscall] = ACTIONS(1243), + [anon_sym___vectorcall] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_signed] = ACTIONS(1243), + [anon_sym_unsigned] = ACTIONS(1243), + [anon_sym_long] = ACTIONS(1243), + [anon_sym_short] = ACTIONS(1243), + [anon_sym_static] = ACTIONS(1243), + [anon_sym_auto] = ACTIONS(1243), + [anon_sym_register] = ACTIONS(1243), + [anon_sym_inline] = ACTIONS(1243), + [anon_sym___inline] = ACTIONS(1243), + [anon_sym___inline__] = ACTIONS(1243), + [anon_sym___forceinline] = ACTIONS(1243), + [anon_sym_thread_local] = ACTIONS(1243), + [anon_sym___thread] = ACTIONS(1243), + [anon_sym_const] = ACTIONS(1243), + [anon_sym_constexpr] = ACTIONS(1243), + [anon_sym_volatile] = ACTIONS(1243), + [anon_sym_restrict] = ACTIONS(1243), + [anon_sym___restrict__] = ACTIONS(1243), + [anon_sym__Atomic] = ACTIONS(1243), + [anon_sym__Noreturn] = ACTIONS(1243), + [anon_sym_noreturn] = ACTIONS(1243), + [anon_sym_alignas] = ACTIONS(1243), + [anon_sym__Alignas] = ACTIONS(1243), + [sym_primitive_type] = ACTIONS(1243), + [anon_sym_enum] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_case] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_goto] = ACTIONS(1243), + [anon_sym___try] = ACTIONS(1243), + [anon_sym___leave] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_sizeof] = ACTIONS(1243), + [anon_sym___alignof__] = ACTIONS(1243), + [anon_sym___alignof] = ACTIONS(1243), + [anon_sym__alignof] = ACTIONS(1243), + [anon_sym_alignof] = ACTIONS(1243), + [anon_sym__Alignof] = ACTIONS(1243), + [anon_sym_offsetof] = ACTIONS(1243), + [anon_sym__Generic] = ACTIONS(1243), + [anon_sym_asm] = ACTIONS(1243), + [anon_sym___asm__] = ACTIONS(1243), + [sym_number_literal] = ACTIONS(1245), + [anon_sym_L_SQUOTE] = ACTIONS(1245), + [anon_sym_u_SQUOTE] = ACTIONS(1245), + [anon_sym_U_SQUOTE] = ACTIONS(1245), + [anon_sym_u8_SQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1245), + [anon_sym_L_DQUOTE] = ACTIONS(1245), + [anon_sym_u_DQUOTE] = ACTIONS(1245), + [anon_sym_U_DQUOTE] = ACTIONS(1245), + [anon_sym_u8_DQUOTE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_true] = ACTIONS(1243), + [sym_false] = ACTIONS(1243), + [anon_sym_NULL] = ACTIONS(1243), + [anon_sym_nullptr] = ACTIONS(1243), [sym_comment] = ACTIONS(3), }, [267] = { - [sym_identifier] = ACTIONS(1144), - [aux_sym_preproc_include_token1] = ACTIONS(1144), - [aux_sym_preproc_def_token1] = ACTIONS(1144), - [aux_sym_preproc_if_token1] = ACTIONS(1144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1144), - [sym_preproc_directive] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(1146), - [anon_sym_BANG] = ACTIONS(1146), - [anon_sym_TILDE] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_STAR] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1146), - [anon_sym_SEMI] = ACTIONS(1146), - [anon_sym___extension__] = ACTIONS(1144), - [anon_sym_typedef] = ACTIONS(1144), - [anon_sym_extern] = ACTIONS(1144), - [anon_sym___attribute__] = ACTIONS(1144), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1146), - [anon_sym___declspec] = ACTIONS(1144), - [anon_sym___cdecl] = ACTIONS(1144), - [anon_sym___clrcall] = ACTIONS(1144), - [anon_sym___stdcall] = ACTIONS(1144), - [anon_sym___fastcall] = ACTIONS(1144), - [anon_sym___thiscall] = ACTIONS(1144), - [anon_sym___vectorcall] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(1146), - [anon_sym_RBRACE] = ACTIONS(1146), - [anon_sym_signed] = ACTIONS(1144), - [anon_sym_unsigned] = ACTIONS(1144), - [anon_sym_long] = ACTIONS(1144), - [anon_sym_short] = ACTIONS(1144), - [anon_sym_static] = ACTIONS(1144), - [anon_sym_auto] = ACTIONS(1144), - [anon_sym_register] = ACTIONS(1144), - [anon_sym_inline] = ACTIONS(1144), - [anon_sym___inline] = ACTIONS(1144), - [anon_sym___inline__] = ACTIONS(1144), - [anon_sym___forceinline] = ACTIONS(1144), - [anon_sym_thread_local] = ACTIONS(1144), - [anon_sym___thread] = ACTIONS(1144), - [anon_sym_const] = ACTIONS(1144), - [anon_sym_constexpr] = ACTIONS(1144), - [anon_sym_volatile] = ACTIONS(1144), - [anon_sym_restrict] = ACTIONS(1144), - [anon_sym___restrict__] = ACTIONS(1144), - [anon_sym__Atomic] = ACTIONS(1144), - [anon_sym__Noreturn] = ACTIONS(1144), - [anon_sym_noreturn] = ACTIONS(1144), - [sym_primitive_type] = ACTIONS(1144), - [anon_sym_enum] = ACTIONS(1144), - [anon_sym_struct] = ACTIONS(1144), - [anon_sym_union] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(1144), - [anon_sym_else] = ACTIONS(1144), - [anon_sym_switch] = ACTIONS(1144), - [anon_sym_case] = ACTIONS(1144), - [anon_sym_default] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1144), - [anon_sym_do] = ACTIONS(1144), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_return] = ACTIONS(1144), - [anon_sym_break] = ACTIONS(1144), - [anon_sym_continue] = ACTIONS(1144), - [anon_sym_goto] = ACTIONS(1144), - [anon_sym___try] = ACTIONS(1144), - [anon_sym___leave] = ACTIONS(1144), - [anon_sym_DASH_DASH] = ACTIONS(1146), - [anon_sym_PLUS_PLUS] = ACTIONS(1146), - [anon_sym_sizeof] = ACTIONS(1144), - [anon_sym___alignof__] = ACTIONS(1144), - [anon_sym___alignof] = ACTIONS(1144), - [anon_sym__alignof] = ACTIONS(1144), - [anon_sym_alignof] = ACTIONS(1144), - [anon_sym__Alignof] = ACTIONS(1144), - [anon_sym_offsetof] = ACTIONS(1144), - [anon_sym__Generic] = ACTIONS(1144), - [anon_sym_asm] = ACTIONS(1144), - [anon_sym___asm__] = ACTIONS(1144), - [sym_number_literal] = ACTIONS(1146), - [anon_sym_L_SQUOTE] = ACTIONS(1146), - [anon_sym_u_SQUOTE] = ACTIONS(1146), - [anon_sym_U_SQUOTE] = ACTIONS(1146), - [anon_sym_u8_SQUOTE] = ACTIONS(1146), - [anon_sym_SQUOTE] = ACTIONS(1146), - [anon_sym_L_DQUOTE] = ACTIONS(1146), - [anon_sym_u_DQUOTE] = ACTIONS(1146), - [anon_sym_U_DQUOTE] = ACTIONS(1146), - [anon_sym_u8_DQUOTE] = ACTIONS(1146), - [anon_sym_DQUOTE] = ACTIONS(1146), - [sym_true] = ACTIONS(1144), - [sym_false] = ACTIONS(1144), - [anon_sym_NULL] = ACTIONS(1144), - [anon_sym_nullptr] = ACTIONS(1144), + [ts_builtin_sym_end] = ACTIONS(1241), + [sym_identifier] = ACTIONS(1239), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_LPAREN2] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym___extension__] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym___attribute__] = ACTIONS(1239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1239), + [anon_sym___cdecl] = ACTIONS(1239), + [anon_sym___clrcall] = ACTIONS(1239), + [anon_sym___stdcall] = ACTIONS(1239), + [anon_sym___fastcall] = ACTIONS(1239), + [anon_sym___thiscall] = ACTIONS(1239), + [anon_sym___vectorcall] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym___inline] = ACTIONS(1239), + [anon_sym___inline__] = ACTIONS(1239), + [anon_sym___forceinline] = ACTIONS(1239), + [anon_sym_thread_local] = ACTIONS(1239), + [anon_sym___thread] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_constexpr] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym___restrict__] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym__Noreturn] = ACTIONS(1239), + [anon_sym_noreturn] = ACTIONS(1239), + [anon_sym_alignas] = ACTIONS(1239), + [anon_sym__Alignas] = ACTIONS(1239), + [sym_primitive_type] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_switch] = ACTIONS(1239), + [anon_sym_case] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_goto] = ACTIONS(1239), + [anon_sym___try] = ACTIONS(1239), + [anon_sym___leave] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_sizeof] = ACTIONS(1239), + [anon_sym___alignof__] = ACTIONS(1239), + [anon_sym___alignof] = ACTIONS(1239), + [anon_sym__alignof] = ACTIONS(1239), + [anon_sym_alignof] = ACTIONS(1239), + [anon_sym__Alignof] = ACTIONS(1239), + [anon_sym_offsetof] = ACTIONS(1239), + [anon_sym__Generic] = ACTIONS(1239), + [anon_sym_asm] = ACTIONS(1239), + [anon_sym___asm__] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1241), + [anon_sym_L_SQUOTE] = ACTIONS(1241), + [anon_sym_u_SQUOTE] = ACTIONS(1241), + [anon_sym_U_SQUOTE] = ACTIONS(1241), + [anon_sym_u8_SQUOTE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_L_DQUOTE] = ACTIONS(1241), + [anon_sym_u_DQUOTE] = ACTIONS(1241), + [anon_sym_U_DQUOTE] = ACTIONS(1241), + [anon_sym_u8_DQUOTE] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [anon_sym_NULL] = ACTIONS(1239), + [anon_sym_nullptr] = ACTIONS(1239), [sym_comment] = ACTIONS(3), }, [268] = { - [ts_builtin_sym_end] = ACTIONS(1154), - [sym_identifier] = ACTIONS(1152), - [aux_sym_preproc_include_token1] = ACTIONS(1152), - [aux_sym_preproc_def_token1] = ACTIONS(1152), - [aux_sym_preproc_if_token1] = ACTIONS(1152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1152), - [sym_preproc_directive] = ACTIONS(1152), - [anon_sym_LPAREN2] = ACTIONS(1154), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1154), - [anon_sym___extension__] = ACTIONS(1152), - [anon_sym_typedef] = ACTIONS(1152), - [anon_sym_extern] = ACTIONS(1152), - [anon_sym___attribute__] = ACTIONS(1152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1154), - [anon_sym___declspec] = ACTIONS(1152), - [anon_sym___cdecl] = ACTIONS(1152), - [anon_sym___clrcall] = ACTIONS(1152), - [anon_sym___stdcall] = ACTIONS(1152), - [anon_sym___fastcall] = ACTIONS(1152), - [anon_sym___thiscall] = ACTIONS(1152), - [anon_sym___vectorcall] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_signed] = ACTIONS(1152), - [anon_sym_unsigned] = ACTIONS(1152), - [anon_sym_long] = ACTIONS(1152), - [anon_sym_short] = ACTIONS(1152), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_auto] = ACTIONS(1152), - [anon_sym_register] = ACTIONS(1152), - [anon_sym_inline] = ACTIONS(1152), - [anon_sym___inline] = ACTIONS(1152), - [anon_sym___inline__] = ACTIONS(1152), - [anon_sym___forceinline] = ACTIONS(1152), - [anon_sym_thread_local] = ACTIONS(1152), - [anon_sym___thread] = ACTIONS(1152), - [anon_sym_const] = ACTIONS(1152), - [anon_sym_constexpr] = ACTIONS(1152), - [anon_sym_volatile] = ACTIONS(1152), - [anon_sym_restrict] = ACTIONS(1152), - [anon_sym___restrict__] = ACTIONS(1152), - [anon_sym__Atomic] = ACTIONS(1152), - [anon_sym__Noreturn] = ACTIONS(1152), - [anon_sym_noreturn] = ACTIONS(1152), - [sym_primitive_type] = ACTIONS(1152), - [anon_sym_enum] = ACTIONS(1152), - [anon_sym_struct] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(1152), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_else] = ACTIONS(1152), - [anon_sym_switch] = ACTIONS(1152), - [anon_sym_case] = ACTIONS(1152), - [anon_sym_default] = ACTIONS(1152), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(1152), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_return] = ACTIONS(1152), - [anon_sym_break] = ACTIONS(1152), - [anon_sym_continue] = ACTIONS(1152), - [anon_sym_goto] = ACTIONS(1152), - [anon_sym___try] = ACTIONS(1152), - [anon_sym___leave] = ACTIONS(1152), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_sizeof] = ACTIONS(1152), - [anon_sym___alignof__] = ACTIONS(1152), - [anon_sym___alignof] = ACTIONS(1152), - [anon_sym__alignof] = ACTIONS(1152), - [anon_sym_alignof] = ACTIONS(1152), - [anon_sym__Alignof] = ACTIONS(1152), - [anon_sym_offsetof] = ACTIONS(1152), - [anon_sym__Generic] = ACTIONS(1152), - [anon_sym_asm] = ACTIONS(1152), - [anon_sym___asm__] = ACTIONS(1152), - [sym_number_literal] = ACTIONS(1154), - [anon_sym_L_SQUOTE] = ACTIONS(1154), - [anon_sym_u_SQUOTE] = ACTIONS(1154), - [anon_sym_U_SQUOTE] = ACTIONS(1154), - [anon_sym_u8_SQUOTE] = ACTIONS(1154), - [anon_sym_SQUOTE] = ACTIONS(1154), - [anon_sym_L_DQUOTE] = ACTIONS(1154), - [anon_sym_u_DQUOTE] = ACTIONS(1154), - [anon_sym_U_DQUOTE] = ACTIONS(1154), - [anon_sym_u8_DQUOTE] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1154), - [sym_true] = ACTIONS(1152), - [sym_false] = ACTIONS(1152), - [anon_sym_NULL] = ACTIONS(1152), - [anon_sym_nullptr] = ACTIONS(1152), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [269] = { - [sym_identifier] = ACTIONS(1156), - [aux_sym_preproc_include_token1] = ACTIONS(1156), - [aux_sym_preproc_def_token1] = ACTIONS(1156), - [aux_sym_preproc_if_token1] = ACTIONS(1156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1156), - [sym_preproc_directive] = ACTIONS(1156), - [anon_sym_LPAREN2] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(1158), - [anon_sym_TILDE] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_AMP] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym___extension__] = ACTIONS(1156), - [anon_sym_typedef] = ACTIONS(1156), - [anon_sym_extern] = ACTIONS(1156), - [anon_sym___attribute__] = ACTIONS(1156), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1158), - [anon_sym___declspec] = ACTIONS(1156), - [anon_sym___cdecl] = ACTIONS(1156), - [anon_sym___clrcall] = ACTIONS(1156), - [anon_sym___stdcall] = ACTIONS(1156), - [anon_sym___fastcall] = ACTIONS(1156), - [anon_sym___thiscall] = ACTIONS(1156), - [anon_sym___vectorcall] = ACTIONS(1156), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_signed] = ACTIONS(1156), - [anon_sym_unsigned] = ACTIONS(1156), - [anon_sym_long] = ACTIONS(1156), - [anon_sym_short] = ACTIONS(1156), - [anon_sym_static] = ACTIONS(1156), - [anon_sym_auto] = ACTIONS(1156), - [anon_sym_register] = ACTIONS(1156), - [anon_sym_inline] = ACTIONS(1156), - [anon_sym___inline] = ACTIONS(1156), - [anon_sym___inline__] = ACTIONS(1156), - [anon_sym___forceinline] = ACTIONS(1156), - [anon_sym_thread_local] = ACTIONS(1156), - [anon_sym___thread] = ACTIONS(1156), - [anon_sym_const] = ACTIONS(1156), - [anon_sym_constexpr] = ACTIONS(1156), - [anon_sym_volatile] = ACTIONS(1156), - [anon_sym_restrict] = ACTIONS(1156), - [anon_sym___restrict__] = ACTIONS(1156), - [anon_sym__Atomic] = ACTIONS(1156), - [anon_sym__Noreturn] = ACTIONS(1156), - [anon_sym_noreturn] = ACTIONS(1156), - [sym_primitive_type] = ACTIONS(1156), - [anon_sym_enum] = ACTIONS(1156), - [anon_sym_struct] = ACTIONS(1156), - [anon_sym_union] = ACTIONS(1156), - [anon_sym_if] = ACTIONS(1156), - [anon_sym_else] = ACTIONS(1156), - [anon_sym_switch] = ACTIONS(1156), - [anon_sym_case] = ACTIONS(1156), - [anon_sym_default] = ACTIONS(1156), - [anon_sym_while] = ACTIONS(1156), - [anon_sym_do] = ACTIONS(1156), - [anon_sym_for] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_continue] = ACTIONS(1156), - [anon_sym_goto] = ACTIONS(1156), - [anon_sym___try] = ACTIONS(1156), - [anon_sym___leave] = ACTIONS(1156), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_sizeof] = ACTIONS(1156), - [anon_sym___alignof__] = ACTIONS(1156), - [anon_sym___alignof] = ACTIONS(1156), - [anon_sym__alignof] = ACTIONS(1156), - [anon_sym_alignof] = ACTIONS(1156), - [anon_sym__Alignof] = ACTIONS(1156), - [anon_sym_offsetof] = ACTIONS(1156), - [anon_sym__Generic] = ACTIONS(1156), - [anon_sym_asm] = ACTIONS(1156), - [anon_sym___asm__] = ACTIONS(1156), - [sym_number_literal] = ACTIONS(1158), - [anon_sym_L_SQUOTE] = ACTIONS(1158), - [anon_sym_u_SQUOTE] = ACTIONS(1158), - [anon_sym_U_SQUOTE] = ACTIONS(1158), - [anon_sym_u8_SQUOTE] = ACTIONS(1158), - [anon_sym_SQUOTE] = ACTIONS(1158), - [anon_sym_L_DQUOTE] = ACTIONS(1158), - [anon_sym_u_DQUOTE] = ACTIONS(1158), - [anon_sym_U_DQUOTE] = ACTIONS(1158), - [anon_sym_u8_DQUOTE] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym_true] = ACTIONS(1156), - [sym_false] = ACTIONS(1156), - [anon_sym_NULL] = ACTIONS(1156), - [anon_sym_nullptr] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1243), + [aux_sym_preproc_def_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), + [sym_preproc_directive] = ACTIONS(1243), + [anon_sym_LPAREN2] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym___extension__] = ACTIONS(1243), + [anon_sym_typedef] = ACTIONS(1243), + [anon_sym_extern] = ACTIONS(1243), + [anon_sym___attribute__] = ACTIONS(1243), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), + [anon_sym___declspec] = ACTIONS(1243), + [anon_sym___cdecl] = ACTIONS(1243), + [anon_sym___clrcall] = ACTIONS(1243), + [anon_sym___stdcall] = ACTIONS(1243), + [anon_sym___fastcall] = ACTIONS(1243), + [anon_sym___thiscall] = ACTIONS(1243), + [anon_sym___vectorcall] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_signed] = ACTIONS(1243), + [anon_sym_unsigned] = ACTIONS(1243), + [anon_sym_long] = ACTIONS(1243), + [anon_sym_short] = ACTIONS(1243), + [anon_sym_static] = ACTIONS(1243), + [anon_sym_auto] = ACTIONS(1243), + [anon_sym_register] = ACTIONS(1243), + [anon_sym_inline] = ACTIONS(1243), + [anon_sym___inline] = ACTIONS(1243), + [anon_sym___inline__] = ACTIONS(1243), + [anon_sym___forceinline] = ACTIONS(1243), + [anon_sym_thread_local] = ACTIONS(1243), + [anon_sym___thread] = ACTIONS(1243), + [anon_sym_const] = ACTIONS(1243), + [anon_sym_constexpr] = ACTIONS(1243), + [anon_sym_volatile] = ACTIONS(1243), + [anon_sym_restrict] = ACTIONS(1243), + [anon_sym___restrict__] = ACTIONS(1243), + [anon_sym__Atomic] = ACTIONS(1243), + [anon_sym__Noreturn] = ACTIONS(1243), + [anon_sym_noreturn] = ACTIONS(1243), + [anon_sym_alignas] = ACTIONS(1243), + [anon_sym__Alignas] = ACTIONS(1243), + [sym_primitive_type] = ACTIONS(1243), + [anon_sym_enum] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_case] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_goto] = ACTIONS(1243), + [anon_sym___try] = ACTIONS(1243), + [anon_sym___leave] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_sizeof] = ACTIONS(1243), + [anon_sym___alignof__] = ACTIONS(1243), + [anon_sym___alignof] = ACTIONS(1243), + [anon_sym__alignof] = ACTIONS(1243), + [anon_sym_alignof] = ACTIONS(1243), + [anon_sym__Alignof] = ACTIONS(1243), + [anon_sym_offsetof] = ACTIONS(1243), + [anon_sym__Generic] = ACTIONS(1243), + [anon_sym_asm] = ACTIONS(1243), + [anon_sym___asm__] = ACTIONS(1243), + [sym_number_literal] = ACTIONS(1245), + [anon_sym_L_SQUOTE] = ACTIONS(1245), + [anon_sym_u_SQUOTE] = ACTIONS(1245), + [anon_sym_U_SQUOTE] = ACTIONS(1245), + [anon_sym_u8_SQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1245), + [anon_sym_L_DQUOTE] = ACTIONS(1245), + [anon_sym_u_DQUOTE] = ACTIONS(1245), + [anon_sym_U_DQUOTE] = ACTIONS(1245), + [anon_sym_u8_DQUOTE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_true] = ACTIONS(1243), + [sym_false] = ACTIONS(1243), + [anon_sym_NULL] = ACTIONS(1243), + [anon_sym_nullptr] = ACTIONS(1243), [sym_comment] = ACTIONS(3), }, [270] = { - [sym_identifier] = ACTIONS(1176), - [aux_sym_preproc_include_token1] = ACTIONS(1176), - [aux_sym_preproc_def_token1] = ACTIONS(1176), - [aux_sym_preproc_if_token1] = ACTIONS(1176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1176), - [sym_preproc_directive] = ACTIONS(1176), - [anon_sym_LPAREN2] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_TILDE] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1178), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym___extension__] = ACTIONS(1176), - [anon_sym_typedef] = ACTIONS(1176), - [anon_sym_extern] = ACTIONS(1176), - [anon_sym___attribute__] = ACTIONS(1176), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1178), - [anon_sym___declspec] = ACTIONS(1176), - [anon_sym___cdecl] = ACTIONS(1176), - [anon_sym___clrcall] = ACTIONS(1176), - [anon_sym___stdcall] = ACTIONS(1176), - [anon_sym___fastcall] = ACTIONS(1176), - [anon_sym___thiscall] = ACTIONS(1176), - [anon_sym___vectorcall] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1178), - [anon_sym_signed] = ACTIONS(1176), - [anon_sym_unsigned] = ACTIONS(1176), - [anon_sym_long] = ACTIONS(1176), - [anon_sym_short] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1176), - [anon_sym_auto] = ACTIONS(1176), - [anon_sym_register] = ACTIONS(1176), - [anon_sym_inline] = ACTIONS(1176), - [anon_sym___inline] = ACTIONS(1176), - [anon_sym___inline__] = ACTIONS(1176), - [anon_sym___forceinline] = ACTIONS(1176), - [anon_sym_thread_local] = ACTIONS(1176), - [anon_sym___thread] = ACTIONS(1176), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_constexpr] = ACTIONS(1176), - [anon_sym_volatile] = ACTIONS(1176), - [anon_sym_restrict] = ACTIONS(1176), - [anon_sym___restrict__] = ACTIONS(1176), - [anon_sym__Atomic] = ACTIONS(1176), - [anon_sym__Noreturn] = ACTIONS(1176), - [anon_sym_noreturn] = ACTIONS(1176), - [sym_primitive_type] = ACTIONS(1176), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_struct] = ACTIONS(1176), - [anon_sym_union] = ACTIONS(1176), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_else] = ACTIONS(1176), - [anon_sym_switch] = ACTIONS(1176), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_goto] = ACTIONS(1176), - [anon_sym___try] = ACTIONS(1176), - [anon_sym___leave] = ACTIONS(1176), - [anon_sym_DASH_DASH] = ACTIONS(1178), - [anon_sym_PLUS_PLUS] = ACTIONS(1178), - [anon_sym_sizeof] = ACTIONS(1176), - [anon_sym___alignof__] = ACTIONS(1176), - [anon_sym___alignof] = ACTIONS(1176), - [anon_sym__alignof] = ACTIONS(1176), - [anon_sym_alignof] = ACTIONS(1176), - [anon_sym__Alignof] = ACTIONS(1176), - [anon_sym_offsetof] = ACTIONS(1176), - [anon_sym__Generic] = ACTIONS(1176), - [anon_sym_asm] = ACTIONS(1176), - [anon_sym___asm__] = ACTIONS(1176), - [sym_number_literal] = ACTIONS(1178), - [anon_sym_L_SQUOTE] = ACTIONS(1178), - [anon_sym_u_SQUOTE] = ACTIONS(1178), - [anon_sym_U_SQUOTE] = ACTIONS(1178), - [anon_sym_u8_SQUOTE] = ACTIONS(1178), - [anon_sym_SQUOTE] = ACTIONS(1178), - [anon_sym_L_DQUOTE] = ACTIONS(1178), - [anon_sym_u_DQUOTE] = ACTIONS(1178), - [anon_sym_U_DQUOTE] = ACTIONS(1178), - [anon_sym_u8_DQUOTE] = ACTIONS(1178), - [anon_sym_DQUOTE] = ACTIONS(1178), - [sym_true] = ACTIONS(1176), - [sym_false] = ACTIONS(1176), - [anon_sym_NULL] = ACTIONS(1176), - [anon_sym_nullptr] = ACTIONS(1176), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [271] = { - [sym_identifier] = ACTIONS(1176), - [aux_sym_preproc_include_token1] = ACTIONS(1176), - [aux_sym_preproc_def_token1] = ACTIONS(1176), - [aux_sym_preproc_if_token1] = ACTIONS(1176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1176), - [sym_preproc_directive] = ACTIONS(1176), - [anon_sym_LPAREN2] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_TILDE] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1178), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym___extension__] = ACTIONS(1176), - [anon_sym_typedef] = ACTIONS(1176), - [anon_sym_extern] = ACTIONS(1176), - [anon_sym___attribute__] = ACTIONS(1176), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1178), - [anon_sym___declspec] = ACTIONS(1176), - [anon_sym___cdecl] = ACTIONS(1176), - [anon_sym___clrcall] = ACTIONS(1176), - [anon_sym___stdcall] = ACTIONS(1176), - [anon_sym___fastcall] = ACTIONS(1176), - [anon_sym___thiscall] = ACTIONS(1176), - [anon_sym___vectorcall] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1178), - [anon_sym_signed] = ACTIONS(1176), - [anon_sym_unsigned] = ACTIONS(1176), - [anon_sym_long] = ACTIONS(1176), - [anon_sym_short] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1176), - [anon_sym_auto] = ACTIONS(1176), - [anon_sym_register] = ACTIONS(1176), - [anon_sym_inline] = ACTIONS(1176), - [anon_sym___inline] = ACTIONS(1176), - [anon_sym___inline__] = ACTIONS(1176), - [anon_sym___forceinline] = ACTIONS(1176), - [anon_sym_thread_local] = ACTIONS(1176), - [anon_sym___thread] = ACTIONS(1176), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_constexpr] = ACTIONS(1176), - [anon_sym_volatile] = ACTIONS(1176), - [anon_sym_restrict] = ACTIONS(1176), - [anon_sym___restrict__] = ACTIONS(1176), - [anon_sym__Atomic] = ACTIONS(1176), - [anon_sym__Noreturn] = ACTIONS(1176), - [anon_sym_noreturn] = ACTIONS(1176), - [sym_primitive_type] = ACTIONS(1176), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_struct] = ACTIONS(1176), - [anon_sym_union] = ACTIONS(1176), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_else] = ACTIONS(1176), - [anon_sym_switch] = ACTIONS(1176), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_goto] = ACTIONS(1176), - [anon_sym___try] = ACTIONS(1176), - [anon_sym___leave] = ACTIONS(1176), - [anon_sym_DASH_DASH] = ACTIONS(1178), - [anon_sym_PLUS_PLUS] = ACTIONS(1178), - [anon_sym_sizeof] = ACTIONS(1176), - [anon_sym___alignof__] = ACTIONS(1176), - [anon_sym___alignof] = ACTIONS(1176), - [anon_sym__alignof] = ACTIONS(1176), - [anon_sym_alignof] = ACTIONS(1176), - [anon_sym__Alignof] = ACTIONS(1176), - [anon_sym_offsetof] = ACTIONS(1176), - [anon_sym__Generic] = ACTIONS(1176), - [anon_sym_asm] = ACTIONS(1176), - [anon_sym___asm__] = ACTIONS(1176), - [sym_number_literal] = ACTIONS(1178), - [anon_sym_L_SQUOTE] = ACTIONS(1178), - [anon_sym_u_SQUOTE] = ACTIONS(1178), - [anon_sym_U_SQUOTE] = ACTIONS(1178), - [anon_sym_u8_SQUOTE] = ACTIONS(1178), - [anon_sym_SQUOTE] = ACTIONS(1178), - [anon_sym_L_DQUOTE] = ACTIONS(1178), - [anon_sym_u_DQUOTE] = ACTIONS(1178), - [anon_sym_U_DQUOTE] = ACTIONS(1178), - [anon_sym_u8_DQUOTE] = ACTIONS(1178), - [anon_sym_DQUOTE] = ACTIONS(1178), - [sym_true] = ACTIONS(1176), - [sym_false] = ACTIONS(1176), - [anon_sym_NULL] = ACTIONS(1176), - [anon_sym_nullptr] = ACTIONS(1176), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [272] = { - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym___extension__] = ACTIONS(1200), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_RBRACE] = ACTIONS(1202), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym___inline] = ACTIONS(1200), - [anon_sym___inline__] = ACTIONS(1200), - [anon_sym___forceinline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym___thread] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym___try] = ACTIONS(1200), - [anon_sym___leave] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym___alignof__] = ACTIONS(1200), - [anon_sym___alignof] = ACTIONS(1200), - [anon_sym__alignof] = ACTIONS(1200), - [anon_sym_alignof] = ACTIONS(1200), - [anon_sym__Alignof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [273] = { - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym___extension__] = ACTIONS(1200), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_RBRACE] = ACTIONS(1202), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym___inline] = ACTIONS(1200), - [anon_sym___inline__] = ACTIONS(1200), - [anon_sym___forceinline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym___thread] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym___try] = ACTIONS(1200), - [anon_sym___leave] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym___alignof__] = ACTIONS(1200), - [anon_sym___alignof] = ACTIONS(1200), - [anon_sym__alignof] = ACTIONS(1200), - [anon_sym_alignof] = ACTIONS(1200), - [anon_sym__Alignof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1215), + [aux_sym_preproc_include_token1] = ACTIONS(1215), + [aux_sym_preproc_def_token1] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1215), + [aux_sym_preproc_if_token2] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_LPAREN2] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym___extension__] = ACTIONS(1215), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym___attribute__] = ACTIONS(1215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1217), + [anon_sym___declspec] = ACTIONS(1215), + [anon_sym___cdecl] = ACTIONS(1215), + [anon_sym___clrcall] = ACTIONS(1215), + [anon_sym___stdcall] = ACTIONS(1215), + [anon_sym___fastcall] = ACTIONS(1215), + [anon_sym___thiscall] = ACTIONS(1215), + [anon_sym___vectorcall] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym___inline] = ACTIONS(1215), + [anon_sym___inline__] = ACTIONS(1215), + [anon_sym___forceinline] = ACTIONS(1215), + [anon_sym_thread_local] = ACTIONS(1215), + [anon_sym___thread] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_constexpr] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym___restrict__] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym__Noreturn] = ACTIONS(1215), + [anon_sym_noreturn] = ACTIONS(1215), + [anon_sym_alignas] = ACTIONS(1215), + [anon_sym__Alignas] = ACTIONS(1215), + [sym_primitive_type] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(1215), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1215), + [anon_sym_default] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym___try] = ACTIONS(1215), + [anon_sym___leave] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_sizeof] = ACTIONS(1215), + [anon_sym___alignof__] = ACTIONS(1215), + [anon_sym___alignof] = ACTIONS(1215), + [anon_sym__alignof] = ACTIONS(1215), + [anon_sym_alignof] = ACTIONS(1215), + [anon_sym__Alignof] = ACTIONS(1215), + [anon_sym_offsetof] = ACTIONS(1215), + [anon_sym__Generic] = ACTIONS(1215), + [anon_sym_asm] = ACTIONS(1215), + [anon_sym___asm__] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1217), + [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(1217), + [anon_sym_u_DQUOTE] = ACTIONS(1217), + [anon_sym_U_DQUOTE] = ACTIONS(1217), + [anon_sym_u8_DQUOTE] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [anon_sym_NULL] = ACTIONS(1215), + [anon_sym_nullptr] = ACTIONS(1215), [sym_comment] = ACTIONS(3), }, [274] = { - [sym_identifier] = ACTIONS(1216), - [aux_sym_preproc_include_token1] = ACTIONS(1216), - [aux_sym_preproc_def_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_LPAREN2] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym___extension__] = ACTIONS(1216), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym___attribute__] = ACTIONS(1216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), - [anon_sym___declspec] = ACTIONS(1216), - [anon_sym___cdecl] = ACTIONS(1216), - [anon_sym___clrcall] = ACTIONS(1216), - [anon_sym___stdcall] = ACTIONS(1216), - [anon_sym___fastcall] = ACTIONS(1216), - [anon_sym___thiscall] = ACTIONS(1216), - [anon_sym___vectorcall] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_RBRACE] = ACTIONS(1218), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym___inline] = ACTIONS(1216), - [anon_sym___inline__] = ACTIONS(1216), - [anon_sym___forceinline] = ACTIONS(1216), - [anon_sym_thread_local] = ACTIONS(1216), - [anon_sym___thread] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_constexpr] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym___restrict__] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym__Noreturn] = ACTIONS(1216), - [anon_sym_noreturn] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym___try] = ACTIONS(1216), - [anon_sym___leave] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [anon_sym_sizeof] = ACTIONS(1216), - [anon_sym___alignof__] = ACTIONS(1216), - [anon_sym___alignof] = ACTIONS(1216), - [anon_sym__alignof] = ACTIONS(1216), - [anon_sym_alignof] = ACTIONS(1216), - [anon_sym__Alignof] = ACTIONS(1216), - [anon_sym_offsetof] = ACTIONS(1216), - [anon_sym__Generic] = ACTIONS(1216), - [anon_sym_asm] = ACTIONS(1216), - [anon_sym___asm__] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_L_SQUOTE] = ACTIONS(1218), - [anon_sym_u_SQUOTE] = ACTIONS(1218), - [anon_sym_U_SQUOTE] = ACTIONS(1218), - [anon_sym_u8_SQUOTE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_L_DQUOTE] = ACTIONS(1218), - [anon_sym_u_DQUOTE] = ACTIONS(1218), - [anon_sym_U_DQUOTE] = ACTIONS(1218), - [anon_sym_u8_DQUOTE] = ACTIONS(1218), - [anon_sym_DQUOTE] = ACTIONS(1218), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [anon_sym_NULL] = ACTIONS(1216), - [anon_sym_nullptr] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [275] = { - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym___extension__] = ACTIONS(1220), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym___inline] = ACTIONS(1220), - [anon_sym___inline__] = ACTIONS(1220), - [anon_sym___forceinline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym___thread] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym___alignof__] = ACTIONS(1220), - [anon_sym___alignof] = ACTIONS(1220), - [anon_sym__alignof] = ACTIONS(1220), - [anon_sym_alignof] = ACTIONS(1220), - [anon_sym__Alignof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token2] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), [sym_comment] = ACTIONS(3), }, [276] = { - [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___extension__] = ACTIONS(1112), - [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_signed] = ACTIONS(1112), - [anon_sym_unsigned] = ACTIONS(1112), - [anon_sym_long] = ACTIONS(1112), - [anon_sym_short] = ACTIONS(1112), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_auto] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym___inline] = ACTIONS(1112), - [anon_sym___inline__] = ACTIONS(1112), - [anon_sym___forceinline] = ACTIONS(1112), - [anon_sym_thread_local] = ACTIONS(1112), - [anon_sym___thread] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1112), - [anon_sym___leave] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1114), - [anon_sym_PLUS_PLUS] = ACTIONS(1114), - [anon_sym_sizeof] = ACTIONS(1112), - [anon_sym___alignof__] = ACTIONS(1112), - [anon_sym___alignof] = ACTIONS(1112), - [anon_sym__alignof] = ACTIONS(1112), - [anon_sym_alignof] = ACTIONS(1112), - [anon_sym__Alignof] = ACTIONS(1112), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1112), - [anon_sym_nullptr] = ACTIONS(1112), + [sym_identifier] = ACTIONS(1223), + [aux_sym_preproc_include_token1] = ACTIONS(1223), + [aux_sym_preproc_def_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token2] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_LPAREN2] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym___extension__] = ACTIONS(1223), + [anon_sym_typedef] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(1223), + [anon_sym___attribute__] = ACTIONS(1223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), + [anon_sym___declspec] = ACTIONS(1223), + [anon_sym___cdecl] = ACTIONS(1223), + [anon_sym___clrcall] = ACTIONS(1223), + [anon_sym___stdcall] = ACTIONS(1223), + [anon_sym___fastcall] = ACTIONS(1223), + [anon_sym___thiscall] = ACTIONS(1223), + [anon_sym___vectorcall] = ACTIONS(1223), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(1223), + [anon_sym_unsigned] = ACTIONS(1223), + [anon_sym_long] = ACTIONS(1223), + [anon_sym_short] = ACTIONS(1223), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_auto] = ACTIONS(1223), + [anon_sym_register] = ACTIONS(1223), + [anon_sym_inline] = ACTIONS(1223), + [anon_sym___inline] = ACTIONS(1223), + [anon_sym___inline__] = ACTIONS(1223), + [anon_sym___forceinline] = ACTIONS(1223), + [anon_sym_thread_local] = ACTIONS(1223), + [anon_sym___thread] = ACTIONS(1223), + [anon_sym_const] = ACTIONS(1223), + [anon_sym_constexpr] = ACTIONS(1223), + [anon_sym_volatile] = ACTIONS(1223), + [anon_sym_restrict] = ACTIONS(1223), + [anon_sym___restrict__] = ACTIONS(1223), + [anon_sym__Atomic] = ACTIONS(1223), + [anon_sym__Noreturn] = ACTIONS(1223), + [anon_sym_noreturn] = ACTIONS(1223), + [anon_sym_alignas] = ACTIONS(1223), + [anon_sym__Alignas] = ACTIONS(1223), + [sym_primitive_type] = ACTIONS(1223), + [anon_sym_enum] = ACTIONS(1223), + [anon_sym_struct] = ACTIONS(1223), + [anon_sym_union] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1223), + [anon_sym_else] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1223), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_do] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1223), + [anon_sym_break] = ACTIONS(1223), + [anon_sym_continue] = ACTIONS(1223), + [anon_sym_goto] = ACTIONS(1223), + [anon_sym___try] = ACTIONS(1223), + [anon_sym___leave] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_sizeof] = ACTIONS(1223), + [anon_sym___alignof__] = ACTIONS(1223), + [anon_sym___alignof] = ACTIONS(1223), + [anon_sym__alignof] = ACTIONS(1223), + [anon_sym_alignof] = ACTIONS(1223), + [anon_sym__Alignof] = ACTIONS(1223), + [anon_sym_offsetof] = ACTIONS(1223), + [anon_sym__Generic] = ACTIONS(1223), + [anon_sym_asm] = ACTIONS(1223), + [anon_sym___asm__] = ACTIONS(1223), + [sym_number_literal] = ACTIONS(1225), + [anon_sym_L_SQUOTE] = ACTIONS(1225), + [anon_sym_u_SQUOTE] = ACTIONS(1225), + [anon_sym_U_SQUOTE] = ACTIONS(1225), + [anon_sym_u8_SQUOTE] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_L_DQUOTE] = ACTIONS(1225), + [anon_sym_u_DQUOTE] = ACTIONS(1225), + [anon_sym_U_DQUOTE] = ACTIONS(1225), + [anon_sym_u8_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [anon_sym_NULL] = ACTIONS(1223), + [anon_sym_nullptr] = ACTIONS(1223), [sym_comment] = ACTIONS(3), }, [277] = { - [sym_identifier] = ACTIONS(1228), - [aux_sym_preproc_include_token1] = ACTIONS(1228), - [aux_sym_preproc_def_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), - [sym_preproc_directive] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym___extension__] = ACTIONS(1228), - [anon_sym_typedef] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym___attribute__] = ACTIONS(1228), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), - [anon_sym___declspec] = ACTIONS(1228), - [anon_sym___cdecl] = ACTIONS(1228), - [anon_sym___clrcall] = ACTIONS(1228), - [anon_sym___stdcall] = ACTIONS(1228), - [anon_sym___fastcall] = ACTIONS(1228), - [anon_sym___thiscall] = ACTIONS(1228), - [anon_sym___vectorcall] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_RBRACE] = ACTIONS(1230), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_auto] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_inline] = ACTIONS(1228), - [anon_sym___inline] = ACTIONS(1228), - [anon_sym___inline__] = ACTIONS(1228), - [anon_sym___forceinline] = ACTIONS(1228), - [anon_sym_thread_local] = ACTIONS(1228), - [anon_sym___thread] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_constexpr] = ACTIONS(1228), - [anon_sym_volatile] = ACTIONS(1228), - [anon_sym_restrict] = ACTIONS(1228), - [anon_sym___restrict__] = ACTIONS(1228), - [anon_sym__Atomic] = ACTIONS(1228), - [anon_sym__Noreturn] = ACTIONS(1228), - [anon_sym_noreturn] = ACTIONS(1228), - [sym_primitive_type] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_switch] = ACTIONS(1228), - [anon_sym_case] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_goto] = ACTIONS(1228), - [anon_sym___try] = ACTIONS(1228), - [anon_sym___leave] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_sizeof] = ACTIONS(1228), - [anon_sym___alignof__] = ACTIONS(1228), - [anon_sym___alignof] = ACTIONS(1228), - [anon_sym__alignof] = ACTIONS(1228), - [anon_sym_alignof] = ACTIONS(1228), - [anon_sym__Alignof] = ACTIONS(1228), - [anon_sym_offsetof] = ACTIONS(1228), - [anon_sym__Generic] = ACTIONS(1228), - [anon_sym_asm] = ACTIONS(1228), - [anon_sym___asm__] = ACTIONS(1228), - [sym_number_literal] = ACTIONS(1230), - [anon_sym_L_SQUOTE] = ACTIONS(1230), - [anon_sym_u_SQUOTE] = ACTIONS(1230), - [anon_sym_U_SQUOTE] = ACTIONS(1230), - [anon_sym_u8_SQUOTE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_L_DQUOTE] = ACTIONS(1230), - [anon_sym_u_DQUOTE] = ACTIONS(1230), - [anon_sym_U_DQUOTE] = ACTIONS(1230), - [anon_sym_u8_DQUOTE] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_true] = ACTIONS(1228), - [sym_false] = ACTIONS(1228), - [anon_sym_NULL] = ACTIONS(1228), - [anon_sym_nullptr] = ACTIONS(1228), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [278] = { - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym___extension__] = ACTIONS(1232), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym___inline] = ACTIONS(1232), - [anon_sym___inline__] = ACTIONS(1232), - [anon_sym___forceinline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym___thread] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym___try] = ACTIONS(1232), - [anon_sym___leave] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym___alignof__] = ACTIONS(1232), - [anon_sym___alignof] = ACTIONS(1232), - [anon_sym__alignof] = ACTIONS(1232), - [anon_sym_alignof] = ACTIONS(1232), - [anon_sym__Alignof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), + [ts_builtin_sym_end] = ACTIONS(1241), + [sym_identifier] = ACTIONS(1239), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_LPAREN2] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym___extension__] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym___attribute__] = ACTIONS(1239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1239), + [anon_sym___cdecl] = ACTIONS(1239), + [anon_sym___clrcall] = ACTIONS(1239), + [anon_sym___stdcall] = ACTIONS(1239), + [anon_sym___fastcall] = ACTIONS(1239), + [anon_sym___thiscall] = ACTIONS(1239), + [anon_sym___vectorcall] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym___inline] = ACTIONS(1239), + [anon_sym___inline__] = ACTIONS(1239), + [anon_sym___forceinline] = ACTIONS(1239), + [anon_sym_thread_local] = ACTIONS(1239), + [anon_sym___thread] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_constexpr] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym___restrict__] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym__Noreturn] = ACTIONS(1239), + [anon_sym_noreturn] = ACTIONS(1239), + [anon_sym_alignas] = ACTIONS(1239), + [anon_sym__Alignas] = ACTIONS(1239), + [sym_primitive_type] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_switch] = ACTIONS(1239), + [anon_sym_case] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_goto] = ACTIONS(1239), + [anon_sym___try] = ACTIONS(1239), + [anon_sym___leave] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_sizeof] = ACTIONS(1239), + [anon_sym___alignof__] = ACTIONS(1239), + [anon_sym___alignof] = ACTIONS(1239), + [anon_sym__alignof] = ACTIONS(1239), + [anon_sym_alignof] = ACTIONS(1239), + [anon_sym__Alignof] = ACTIONS(1239), + [anon_sym_offsetof] = ACTIONS(1239), + [anon_sym__Generic] = ACTIONS(1239), + [anon_sym_asm] = ACTIONS(1239), + [anon_sym___asm__] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1241), + [anon_sym_L_SQUOTE] = ACTIONS(1241), + [anon_sym_u_SQUOTE] = ACTIONS(1241), + [anon_sym_U_SQUOTE] = ACTIONS(1241), + [anon_sym_u8_SQUOTE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_L_DQUOTE] = ACTIONS(1241), + [anon_sym_u_DQUOTE] = ACTIONS(1241), + [anon_sym_U_DQUOTE] = ACTIONS(1241), + [anon_sym_u8_DQUOTE] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [anon_sym_NULL] = ACTIONS(1239), + [anon_sym_nullptr] = ACTIONS(1239), [sym_comment] = ACTIONS(3), }, [279] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [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_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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1175), + [aux_sym_preproc_include_token1] = ACTIONS(1175), + [aux_sym_preproc_def_token1] = ACTIONS(1175), + [aux_sym_preproc_if_token1] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), + [sym_preproc_directive] = ACTIONS(1175), + [anon_sym_LPAREN2] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1177), + [anon_sym_TILDE] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym___extension__] = ACTIONS(1175), + [anon_sym_typedef] = ACTIONS(1175), + [anon_sym_extern] = ACTIONS(1175), + [anon_sym___attribute__] = ACTIONS(1175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1177), + [anon_sym___declspec] = ACTIONS(1175), + [anon_sym___cdecl] = ACTIONS(1175), + [anon_sym___clrcall] = ACTIONS(1175), + [anon_sym___stdcall] = ACTIONS(1175), + [anon_sym___fastcall] = ACTIONS(1175), + [anon_sym___thiscall] = ACTIONS(1175), + [anon_sym___vectorcall] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym_signed] = ACTIONS(1175), + [anon_sym_unsigned] = ACTIONS(1175), + [anon_sym_long] = ACTIONS(1175), + [anon_sym_short] = ACTIONS(1175), + [anon_sym_static] = ACTIONS(1175), + [anon_sym_auto] = ACTIONS(1175), + [anon_sym_register] = ACTIONS(1175), + [anon_sym_inline] = ACTIONS(1175), + [anon_sym___inline] = ACTIONS(1175), + [anon_sym___inline__] = ACTIONS(1175), + [anon_sym___forceinline] = ACTIONS(1175), + [anon_sym_thread_local] = ACTIONS(1175), + [anon_sym___thread] = ACTIONS(1175), + [anon_sym_const] = ACTIONS(1175), + [anon_sym_constexpr] = ACTIONS(1175), + [anon_sym_volatile] = ACTIONS(1175), + [anon_sym_restrict] = ACTIONS(1175), + [anon_sym___restrict__] = ACTIONS(1175), + [anon_sym__Atomic] = ACTIONS(1175), + [anon_sym__Noreturn] = ACTIONS(1175), + [anon_sym_noreturn] = ACTIONS(1175), + [anon_sym_alignas] = ACTIONS(1175), + [anon_sym__Alignas] = ACTIONS(1175), + [sym_primitive_type] = ACTIONS(1175), + [anon_sym_enum] = ACTIONS(1175), + [anon_sym_struct] = ACTIONS(1175), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_else] = ACTIONS(1175), + [anon_sym_switch] = ACTIONS(1175), + [anon_sym_case] = ACTIONS(1175), + [anon_sym_default] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_do] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1175), + [anon_sym_continue] = ACTIONS(1175), + [anon_sym_goto] = ACTIONS(1175), + [anon_sym___try] = ACTIONS(1175), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_sizeof] = ACTIONS(1175), + [anon_sym___alignof__] = ACTIONS(1175), + [anon_sym___alignof] = ACTIONS(1175), + [anon_sym__alignof] = ACTIONS(1175), + [anon_sym_alignof] = ACTIONS(1175), + [anon_sym__Alignof] = ACTIONS(1175), + [anon_sym_offsetof] = ACTIONS(1175), + [anon_sym__Generic] = ACTIONS(1175), + [anon_sym_asm] = ACTIONS(1175), + [anon_sym___asm__] = ACTIONS(1175), + [sym_number_literal] = ACTIONS(1177), + [anon_sym_L_SQUOTE] = ACTIONS(1177), + [anon_sym_u_SQUOTE] = ACTIONS(1177), + [anon_sym_U_SQUOTE] = ACTIONS(1177), + [anon_sym_u8_SQUOTE] = ACTIONS(1177), + [anon_sym_SQUOTE] = ACTIONS(1177), + [anon_sym_L_DQUOTE] = ACTIONS(1177), + [anon_sym_u_DQUOTE] = ACTIONS(1177), + [anon_sym_U_DQUOTE] = ACTIONS(1177), + [anon_sym_u8_DQUOTE] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym_true] = ACTIONS(1175), + [sym_false] = ACTIONS(1175), + [anon_sym_NULL] = ACTIONS(1175), + [anon_sym_nullptr] = ACTIONS(1175), [sym_comment] = ACTIONS(3), }, [281] = { - [ts_builtin_sym_end] = ACTIONS(1198), - [sym_identifier] = ACTIONS(1196), - [aux_sym_preproc_include_token1] = ACTIONS(1196), - [aux_sym_preproc_def_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), - [sym_preproc_directive] = ACTIONS(1196), - [anon_sym_LPAREN2] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym___extension__] = ACTIONS(1196), - [anon_sym_typedef] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym___attribute__] = ACTIONS(1196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), - [anon_sym___declspec] = ACTIONS(1196), - [anon_sym___cdecl] = ACTIONS(1196), - [anon_sym___clrcall] = ACTIONS(1196), - [anon_sym___stdcall] = ACTIONS(1196), - [anon_sym___fastcall] = ACTIONS(1196), - [anon_sym___thiscall] = ACTIONS(1196), - [anon_sym___vectorcall] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_auto] = ACTIONS(1196), - [anon_sym_register] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym___inline] = ACTIONS(1196), - [anon_sym___inline__] = ACTIONS(1196), - [anon_sym___forceinline] = ACTIONS(1196), - [anon_sym_thread_local] = ACTIONS(1196), - [anon_sym___thread] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_constexpr] = ACTIONS(1196), - [anon_sym_volatile] = ACTIONS(1196), - [anon_sym_restrict] = ACTIONS(1196), - [anon_sym___restrict__] = ACTIONS(1196), - [anon_sym__Atomic] = ACTIONS(1196), - [anon_sym__Noreturn] = ACTIONS(1196), - [anon_sym_noreturn] = ACTIONS(1196), - [sym_primitive_type] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_case] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_goto] = ACTIONS(1196), - [anon_sym___try] = ACTIONS(1196), - [anon_sym___leave] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_sizeof] = ACTIONS(1196), - [anon_sym___alignof__] = ACTIONS(1196), - [anon_sym___alignof] = ACTIONS(1196), - [anon_sym__alignof] = ACTIONS(1196), - [anon_sym_alignof] = ACTIONS(1196), - [anon_sym__Alignof] = ACTIONS(1196), - [anon_sym_offsetof] = ACTIONS(1196), - [anon_sym__Generic] = ACTIONS(1196), - [anon_sym_asm] = ACTIONS(1196), - [anon_sym___asm__] = ACTIONS(1196), - [sym_number_literal] = ACTIONS(1198), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1198), - [anon_sym_u_DQUOTE] = ACTIONS(1198), - [anon_sym_U_DQUOTE] = ACTIONS(1198), - [anon_sym_u8_DQUOTE] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_true] = ACTIONS(1196), - [sym_false] = ACTIONS(1196), - [anon_sym_NULL] = ACTIONS(1196), - [anon_sym_nullptr] = ACTIONS(1196), + [sym_identifier] = ACTIONS(1183), + [aux_sym_preproc_include_token1] = ACTIONS(1183), + [aux_sym_preproc_def_token1] = ACTIONS(1183), + [aux_sym_preproc_if_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), + [sym_preproc_directive] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym___extension__] = ACTIONS(1183), + [anon_sym_typedef] = ACTIONS(1183), + [anon_sym_extern] = ACTIONS(1183), + [anon_sym___attribute__] = ACTIONS(1183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), + [anon_sym___declspec] = ACTIONS(1183), + [anon_sym___cdecl] = ACTIONS(1183), + [anon_sym___clrcall] = ACTIONS(1183), + [anon_sym___stdcall] = ACTIONS(1183), + [anon_sym___fastcall] = ACTIONS(1183), + [anon_sym___thiscall] = ACTIONS(1183), + [anon_sym___vectorcall] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_signed] = ACTIONS(1183), + [anon_sym_unsigned] = ACTIONS(1183), + [anon_sym_long] = ACTIONS(1183), + [anon_sym_short] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1183), + [anon_sym_auto] = ACTIONS(1183), + [anon_sym_register] = ACTIONS(1183), + [anon_sym_inline] = ACTIONS(1183), + [anon_sym___inline] = ACTIONS(1183), + [anon_sym___inline__] = ACTIONS(1183), + [anon_sym___forceinline] = ACTIONS(1183), + [anon_sym_thread_local] = ACTIONS(1183), + [anon_sym___thread] = ACTIONS(1183), + [anon_sym_const] = ACTIONS(1183), + [anon_sym_constexpr] = ACTIONS(1183), + [anon_sym_volatile] = ACTIONS(1183), + [anon_sym_restrict] = ACTIONS(1183), + [anon_sym___restrict__] = ACTIONS(1183), + [anon_sym__Atomic] = ACTIONS(1183), + [anon_sym__Noreturn] = ACTIONS(1183), + [anon_sym_noreturn] = ACTIONS(1183), + [anon_sym_alignas] = ACTIONS(1183), + [anon_sym__Alignas] = ACTIONS(1183), + [sym_primitive_type] = ACTIONS(1183), + [anon_sym_enum] = ACTIONS(1183), + [anon_sym_struct] = ACTIONS(1183), + [anon_sym_union] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_else] = ACTIONS(1183), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1183), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(1183), + [anon_sym_for] = ACTIONS(1183), + [anon_sym_return] = ACTIONS(1183), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym___try] = ACTIONS(1183), + [anon_sym___leave] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_sizeof] = ACTIONS(1183), + [anon_sym___alignof__] = ACTIONS(1183), + [anon_sym___alignof] = ACTIONS(1183), + [anon_sym__alignof] = ACTIONS(1183), + [anon_sym_alignof] = ACTIONS(1183), + [anon_sym__Alignof] = ACTIONS(1183), + [anon_sym_offsetof] = ACTIONS(1183), + [anon_sym__Generic] = ACTIONS(1183), + [anon_sym_asm] = ACTIONS(1183), + [anon_sym___asm__] = ACTIONS(1183), + [sym_number_literal] = ACTIONS(1185), + [anon_sym_L_SQUOTE] = ACTIONS(1185), + [anon_sym_u_SQUOTE] = ACTIONS(1185), + [anon_sym_U_SQUOTE] = ACTIONS(1185), + [anon_sym_u8_SQUOTE] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_L_DQUOTE] = ACTIONS(1185), + [anon_sym_u_DQUOTE] = ACTIONS(1185), + [anon_sym_U_DQUOTE] = ACTIONS(1185), + [anon_sym_u8_DQUOTE] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym_true] = ACTIONS(1183), + [sym_false] = ACTIONS(1183), + [anon_sym_NULL] = ACTIONS(1183), + [anon_sym_nullptr] = ACTIONS(1183), [sym_comment] = ACTIONS(3), }, [282] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [283] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [284] = { - [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___extension__] = ACTIONS(1124), - [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_signed] = ACTIONS(1124), - [anon_sym_unsigned] = ACTIONS(1124), - [anon_sym_long] = ACTIONS(1124), - [anon_sym_short] = ACTIONS(1124), - [anon_sym_static] = ACTIONS(1124), - [anon_sym_auto] = ACTIONS(1124), - [anon_sym_register] = ACTIONS(1124), - [anon_sym_inline] = ACTIONS(1124), - [anon_sym___inline] = ACTIONS(1124), - [anon_sym___inline__] = ACTIONS(1124), - [anon_sym___forceinline] = ACTIONS(1124), - [anon_sym_thread_local] = ACTIONS(1124), - [anon_sym___thread] = ACTIONS(1124), - [anon_sym_const] = ACTIONS(1124), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1124), - [anon_sym___leave] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_sizeof] = ACTIONS(1124), - [anon_sym___alignof__] = ACTIONS(1124), - [anon_sym___alignof] = ACTIONS(1124), - [anon_sym__alignof] = ACTIONS(1124), - [anon_sym_alignof] = ACTIONS(1124), - [anon_sym__Alignof] = ACTIONS(1124), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1124), - [anon_sym_nullptr] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [285] = { - [ts_builtin_sym_end] = ACTIONS(1194), - [sym_identifier] = ACTIONS(1192), - [aux_sym_preproc_include_token1] = ACTIONS(1192), - [aux_sym_preproc_def_token1] = ACTIONS(1192), - [aux_sym_preproc_if_token1] = ACTIONS(1192), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1192), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1192), - [sym_preproc_directive] = ACTIONS(1192), - [anon_sym_LPAREN2] = ACTIONS(1194), - [anon_sym_BANG] = ACTIONS(1194), - [anon_sym_TILDE] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym___extension__] = ACTIONS(1192), - [anon_sym_typedef] = ACTIONS(1192), - [anon_sym_extern] = ACTIONS(1192), - [anon_sym___attribute__] = ACTIONS(1192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1194), - [anon_sym___declspec] = ACTIONS(1192), - [anon_sym___cdecl] = ACTIONS(1192), - [anon_sym___clrcall] = ACTIONS(1192), - [anon_sym___stdcall] = ACTIONS(1192), - [anon_sym___fastcall] = ACTIONS(1192), - [anon_sym___thiscall] = ACTIONS(1192), - [anon_sym___vectorcall] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_signed] = ACTIONS(1192), - [anon_sym_unsigned] = ACTIONS(1192), - [anon_sym_long] = ACTIONS(1192), - [anon_sym_short] = ACTIONS(1192), - [anon_sym_static] = ACTIONS(1192), - [anon_sym_auto] = ACTIONS(1192), - [anon_sym_register] = ACTIONS(1192), - [anon_sym_inline] = ACTIONS(1192), - [anon_sym___inline] = ACTIONS(1192), - [anon_sym___inline__] = ACTIONS(1192), - [anon_sym___forceinline] = ACTIONS(1192), - [anon_sym_thread_local] = ACTIONS(1192), - [anon_sym___thread] = ACTIONS(1192), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_constexpr] = ACTIONS(1192), - [anon_sym_volatile] = ACTIONS(1192), - [anon_sym_restrict] = ACTIONS(1192), - [anon_sym___restrict__] = ACTIONS(1192), - [anon_sym__Atomic] = ACTIONS(1192), - [anon_sym__Noreturn] = ACTIONS(1192), - [anon_sym_noreturn] = ACTIONS(1192), - [sym_primitive_type] = ACTIONS(1192), - [anon_sym_enum] = ACTIONS(1192), - [anon_sym_struct] = ACTIONS(1192), - [anon_sym_union] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1192), - [anon_sym_else] = ACTIONS(1192), - [anon_sym_switch] = ACTIONS(1192), - [anon_sym_case] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(1192), - [anon_sym_while] = ACTIONS(1192), - [anon_sym_do] = ACTIONS(1192), - [anon_sym_for] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1192), - [anon_sym_break] = ACTIONS(1192), - [anon_sym_continue] = ACTIONS(1192), - [anon_sym_goto] = ACTIONS(1192), - [anon_sym___try] = ACTIONS(1192), - [anon_sym___leave] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_sizeof] = ACTIONS(1192), - [anon_sym___alignof__] = ACTIONS(1192), - [anon_sym___alignof] = ACTIONS(1192), - [anon_sym__alignof] = ACTIONS(1192), - [anon_sym_alignof] = ACTIONS(1192), - [anon_sym__Alignof] = ACTIONS(1192), - [anon_sym_offsetof] = ACTIONS(1192), - [anon_sym__Generic] = ACTIONS(1192), - [anon_sym_asm] = ACTIONS(1192), - [anon_sym___asm__] = ACTIONS(1192), - [sym_number_literal] = ACTIONS(1194), - [anon_sym_L_SQUOTE] = ACTIONS(1194), - [anon_sym_u_SQUOTE] = ACTIONS(1194), - [anon_sym_U_SQUOTE] = ACTIONS(1194), - [anon_sym_u8_SQUOTE] = ACTIONS(1194), - [anon_sym_SQUOTE] = ACTIONS(1194), - [anon_sym_L_DQUOTE] = ACTIONS(1194), - [anon_sym_u_DQUOTE] = ACTIONS(1194), - [anon_sym_U_DQUOTE] = ACTIONS(1194), - [anon_sym_u8_DQUOTE] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [sym_true] = ACTIONS(1192), - [sym_false] = ACTIONS(1192), - [anon_sym_NULL] = ACTIONS(1192), - [anon_sym_nullptr] = ACTIONS(1192), + [ts_builtin_sym_end] = ACTIONS(1129), + [sym_identifier] = ACTIONS(1127), + [aux_sym_preproc_include_token1] = ACTIONS(1127), + [aux_sym_preproc_def_token1] = ACTIONS(1127), + [aux_sym_preproc_if_token1] = ACTIONS(1127), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1127), + [sym_preproc_directive] = ACTIONS(1127), + [anon_sym_LPAREN2] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1129), + [anon_sym___extension__] = ACTIONS(1127), + [anon_sym_typedef] = ACTIONS(1127), + [anon_sym_extern] = ACTIONS(1127), + [anon_sym___attribute__] = ACTIONS(1127), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1129), + [anon_sym___declspec] = ACTIONS(1127), + [anon_sym___cdecl] = ACTIONS(1127), + [anon_sym___clrcall] = ACTIONS(1127), + [anon_sym___stdcall] = ACTIONS(1127), + [anon_sym___fastcall] = ACTIONS(1127), + [anon_sym___thiscall] = ACTIONS(1127), + [anon_sym___vectorcall] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_signed] = ACTIONS(1127), + [anon_sym_unsigned] = ACTIONS(1127), + [anon_sym_long] = ACTIONS(1127), + [anon_sym_short] = ACTIONS(1127), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_auto] = ACTIONS(1127), + [anon_sym_register] = ACTIONS(1127), + [anon_sym_inline] = ACTIONS(1127), + [anon_sym___inline] = ACTIONS(1127), + [anon_sym___inline__] = ACTIONS(1127), + [anon_sym___forceinline] = ACTIONS(1127), + [anon_sym_thread_local] = ACTIONS(1127), + [anon_sym___thread] = ACTIONS(1127), + [anon_sym_const] = ACTIONS(1127), + [anon_sym_constexpr] = ACTIONS(1127), + [anon_sym_volatile] = ACTIONS(1127), + [anon_sym_restrict] = ACTIONS(1127), + [anon_sym___restrict__] = ACTIONS(1127), + [anon_sym__Atomic] = ACTIONS(1127), + [anon_sym__Noreturn] = ACTIONS(1127), + [anon_sym_noreturn] = ACTIONS(1127), + [anon_sym_alignas] = ACTIONS(1127), + [anon_sym__Alignas] = ACTIONS(1127), + [sym_primitive_type] = ACTIONS(1127), + [anon_sym_enum] = ACTIONS(1127), + [anon_sym_struct] = ACTIONS(1127), + [anon_sym_union] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1127), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_switch] = ACTIONS(1127), + [anon_sym_case] = ACTIONS(1127), + [anon_sym_default] = ACTIONS(1127), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1127), + [anon_sym_for] = ACTIONS(1127), + [anon_sym_return] = ACTIONS(1127), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1127), + [anon_sym_goto] = ACTIONS(1127), + [anon_sym___try] = ACTIONS(1127), + [anon_sym___leave] = ACTIONS(1127), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_sizeof] = ACTIONS(1127), + [anon_sym___alignof__] = ACTIONS(1127), + [anon_sym___alignof] = ACTIONS(1127), + [anon_sym__alignof] = ACTIONS(1127), + [anon_sym_alignof] = ACTIONS(1127), + [anon_sym__Alignof] = ACTIONS(1127), + [anon_sym_offsetof] = ACTIONS(1127), + [anon_sym__Generic] = ACTIONS(1127), + [anon_sym_asm] = ACTIONS(1127), + [anon_sym___asm__] = ACTIONS(1127), + [sym_number_literal] = ACTIONS(1129), + [anon_sym_L_SQUOTE] = ACTIONS(1129), + [anon_sym_u_SQUOTE] = ACTIONS(1129), + [anon_sym_U_SQUOTE] = ACTIONS(1129), + [anon_sym_u8_SQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1129), + [anon_sym_L_DQUOTE] = ACTIONS(1129), + [anon_sym_u_DQUOTE] = ACTIONS(1129), + [anon_sym_U_DQUOTE] = ACTIONS(1129), + [anon_sym_u8_DQUOTE] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [anon_sym_NULL] = ACTIONS(1127), + [anon_sym_nullptr] = ACTIONS(1127), [sym_comment] = ACTIONS(3), }, [286] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [287] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [288] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [289] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1229), + [sym_identifier] = ACTIONS(1227), + [aux_sym_preproc_include_token1] = ACTIONS(1227), + [aux_sym_preproc_def_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), + [sym_preproc_directive] = ACTIONS(1227), + [anon_sym_LPAREN2] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym___extension__] = ACTIONS(1227), + [anon_sym_typedef] = ACTIONS(1227), + [anon_sym_extern] = ACTIONS(1227), + [anon_sym___attribute__] = ACTIONS(1227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1229), + [anon_sym___declspec] = ACTIONS(1227), + [anon_sym___cdecl] = ACTIONS(1227), + [anon_sym___clrcall] = ACTIONS(1227), + [anon_sym___stdcall] = ACTIONS(1227), + [anon_sym___fastcall] = ACTIONS(1227), + [anon_sym___thiscall] = ACTIONS(1227), + [anon_sym___vectorcall] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_signed] = ACTIONS(1227), + [anon_sym_unsigned] = ACTIONS(1227), + [anon_sym_long] = ACTIONS(1227), + [anon_sym_short] = ACTIONS(1227), + [anon_sym_static] = ACTIONS(1227), + [anon_sym_auto] = ACTIONS(1227), + [anon_sym_register] = ACTIONS(1227), + [anon_sym_inline] = ACTIONS(1227), + [anon_sym___inline] = ACTIONS(1227), + [anon_sym___inline__] = ACTIONS(1227), + [anon_sym___forceinline] = ACTIONS(1227), + [anon_sym_thread_local] = ACTIONS(1227), + [anon_sym___thread] = ACTIONS(1227), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_constexpr] = ACTIONS(1227), + [anon_sym_volatile] = ACTIONS(1227), + [anon_sym_restrict] = ACTIONS(1227), + [anon_sym___restrict__] = ACTIONS(1227), + [anon_sym__Atomic] = ACTIONS(1227), + [anon_sym__Noreturn] = ACTIONS(1227), + [anon_sym_noreturn] = ACTIONS(1227), + [anon_sym_alignas] = ACTIONS(1227), + [anon_sym__Alignas] = ACTIONS(1227), + [sym_primitive_type] = ACTIONS(1227), + [anon_sym_enum] = ACTIONS(1227), + [anon_sym_struct] = ACTIONS(1227), + [anon_sym_union] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_else] = ACTIONS(1227), + [anon_sym_switch] = ACTIONS(1227), + [anon_sym_case] = ACTIONS(1227), + [anon_sym_default] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_goto] = ACTIONS(1227), + [anon_sym___try] = ACTIONS(1227), + [anon_sym___leave] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_sizeof] = ACTIONS(1227), + [anon_sym___alignof__] = ACTIONS(1227), + [anon_sym___alignof] = ACTIONS(1227), + [anon_sym__alignof] = ACTIONS(1227), + [anon_sym_alignof] = ACTIONS(1227), + [anon_sym__Alignof] = ACTIONS(1227), + [anon_sym_offsetof] = ACTIONS(1227), + [anon_sym__Generic] = ACTIONS(1227), + [anon_sym_asm] = ACTIONS(1227), + [anon_sym___asm__] = ACTIONS(1227), + [sym_number_literal] = ACTIONS(1229), + [anon_sym_L_SQUOTE] = ACTIONS(1229), + [anon_sym_u_SQUOTE] = ACTIONS(1229), + [anon_sym_U_SQUOTE] = ACTIONS(1229), + [anon_sym_u8_SQUOTE] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_L_DQUOTE] = ACTIONS(1229), + [anon_sym_u_DQUOTE] = ACTIONS(1229), + [anon_sym_U_DQUOTE] = ACTIONS(1229), + [anon_sym_u8_DQUOTE] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym_true] = ACTIONS(1227), + [sym_false] = ACTIONS(1227), + [anon_sym_NULL] = ACTIONS(1227), + [anon_sym_nullptr] = ACTIONS(1227), [sym_comment] = ACTIONS(3), }, [290] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1197), + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [sym_preproc_directive] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym___extension__] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [anon_sym___inline] = ACTIONS(1195), + [anon_sym___inline__] = ACTIONS(1195), + [anon_sym___forceinline] = ACTIONS(1195), + [anon_sym_thread_local] = ACTIONS(1195), + [anon_sym___thread] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_constexpr] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym___restrict__] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym__Noreturn] = ACTIONS(1195), + [anon_sym_noreturn] = ACTIONS(1195), + [anon_sym_alignas] = ACTIONS(1195), + [anon_sym__Alignas] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym___try] = ACTIONS(1195), + [anon_sym___leave] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [anon_sym___alignof__] = ACTIONS(1195), + [anon_sym___alignof] = ACTIONS(1195), + [anon_sym__alignof] = ACTIONS(1195), + [anon_sym_alignof] = ACTIONS(1195), + [anon_sym__Alignof] = ACTIONS(1195), + [anon_sym_offsetof] = ACTIONS(1195), + [anon_sym__Generic] = ACTIONS(1195), + [anon_sym_asm] = ACTIONS(1195), + [anon_sym___asm__] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [anon_sym_NULL] = ACTIONS(1195), + [anon_sym_nullptr] = ACTIONS(1195), [sym_comment] = ACTIONS(3), }, [291] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1199), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), + [sym_preproc_directive] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1199), + [anon_sym_extern] = ACTIONS(1199), + [anon_sym___attribute__] = ACTIONS(1199), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1199), + [anon_sym___cdecl] = ACTIONS(1199), + [anon_sym___clrcall] = ACTIONS(1199), + [anon_sym___stdcall] = ACTIONS(1199), + [anon_sym___fastcall] = ACTIONS(1199), + [anon_sym___thiscall] = ACTIONS(1199), + [anon_sym___vectorcall] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1199), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_auto] = ACTIONS(1199), + [anon_sym_register] = ACTIONS(1199), + [anon_sym_inline] = ACTIONS(1199), + [anon_sym___inline] = ACTIONS(1199), + [anon_sym___inline__] = ACTIONS(1199), + [anon_sym___forceinline] = ACTIONS(1199), + [anon_sym_thread_local] = ACTIONS(1199), + [anon_sym___thread] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(1199), + [anon_sym_constexpr] = ACTIONS(1199), + [anon_sym_volatile] = ACTIONS(1199), + [anon_sym_restrict] = ACTIONS(1199), + [anon_sym___restrict__] = ACTIONS(1199), + [anon_sym__Atomic] = ACTIONS(1199), + [anon_sym__Noreturn] = ACTIONS(1199), + [anon_sym_noreturn] = ACTIONS(1199), + [anon_sym_alignas] = ACTIONS(1199), + [anon_sym__Alignas] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1199), + [anon_sym_enum] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_switch] = ACTIONS(1199), + [anon_sym_case] = ACTIONS(1199), + [anon_sym_default] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [anon_sym_do] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1199), + [anon_sym___try] = ACTIONS(1199), + [anon_sym___leave] = ACTIONS(1199), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1199), + [anon_sym___alignof__] = ACTIONS(1199), + [anon_sym___alignof] = ACTIONS(1199), + [anon_sym__alignof] = ACTIONS(1199), + [anon_sym_alignof] = ACTIONS(1199), + [anon_sym__Alignof] = ACTIONS(1199), + [anon_sym_offsetof] = ACTIONS(1199), + [anon_sym__Generic] = ACTIONS(1199), + [anon_sym_asm] = ACTIONS(1199), + [anon_sym___asm__] = ACTIONS(1199), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1199), + [sym_false] = ACTIONS(1199), + [anon_sym_NULL] = ACTIONS(1199), + [anon_sym_nullptr] = ACTIONS(1199), [sym_comment] = ACTIONS(3), }, [292] = { - [ts_builtin_sym_end] = ACTIONS(1190), - [sym_identifier] = ACTIONS(1188), - [aux_sym_preproc_include_token1] = ACTIONS(1188), - [aux_sym_preproc_def_token1] = ACTIONS(1188), - [aux_sym_preproc_if_token1] = ACTIONS(1188), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1188), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1188), - [sym_preproc_directive] = ACTIONS(1188), - [anon_sym_LPAREN2] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_TILDE] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym___extension__] = ACTIONS(1188), - [anon_sym_typedef] = ACTIONS(1188), - [anon_sym_extern] = ACTIONS(1188), - [anon_sym___attribute__] = ACTIONS(1188), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1190), - [anon_sym___declspec] = ACTIONS(1188), - [anon_sym___cdecl] = ACTIONS(1188), - [anon_sym___clrcall] = ACTIONS(1188), - [anon_sym___stdcall] = ACTIONS(1188), - [anon_sym___fastcall] = ACTIONS(1188), - [anon_sym___thiscall] = ACTIONS(1188), - [anon_sym___vectorcall] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_signed] = ACTIONS(1188), - [anon_sym_unsigned] = ACTIONS(1188), - [anon_sym_long] = ACTIONS(1188), - [anon_sym_short] = ACTIONS(1188), - [anon_sym_static] = ACTIONS(1188), - [anon_sym_auto] = ACTIONS(1188), - [anon_sym_register] = ACTIONS(1188), - [anon_sym_inline] = ACTIONS(1188), - [anon_sym___inline] = ACTIONS(1188), - [anon_sym___inline__] = ACTIONS(1188), - [anon_sym___forceinline] = ACTIONS(1188), - [anon_sym_thread_local] = ACTIONS(1188), - [anon_sym___thread] = ACTIONS(1188), - [anon_sym_const] = ACTIONS(1188), - [anon_sym_constexpr] = ACTIONS(1188), - [anon_sym_volatile] = ACTIONS(1188), - [anon_sym_restrict] = ACTIONS(1188), - [anon_sym___restrict__] = ACTIONS(1188), - [anon_sym__Atomic] = ACTIONS(1188), - [anon_sym__Noreturn] = ACTIONS(1188), - [anon_sym_noreturn] = ACTIONS(1188), - [sym_primitive_type] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1188), - [anon_sym_struct] = ACTIONS(1188), - [anon_sym_union] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1188), - [anon_sym_else] = ACTIONS(1188), - [anon_sym_switch] = ACTIONS(1188), - [anon_sym_case] = ACTIONS(1188), - [anon_sym_default] = ACTIONS(1188), - [anon_sym_while] = ACTIONS(1188), - [anon_sym_do] = ACTIONS(1188), - [anon_sym_for] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1188), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1188), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1188), - [anon_sym___leave] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_sizeof] = ACTIONS(1188), - [anon_sym___alignof__] = ACTIONS(1188), - [anon_sym___alignof] = ACTIONS(1188), - [anon_sym__alignof] = ACTIONS(1188), - [anon_sym_alignof] = ACTIONS(1188), - [anon_sym__Alignof] = ACTIONS(1188), - [anon_sym_offsetof] = ACTIONS(1188), - [anon_sym__Generic] = ACTIONS(1188), - [anon_sym_asm] = ACTIONS(1188), - [anon_sym___asm__] = ACTIONS(1188), - [sym_number_literal] = ACTIONS(1190), - [anon_sym_L_SQUOTE] = ACTIONS(1190), - [anon_sym_u_SQUOTE] = ACTIONS(1190), - [anon_sym_U_SQUOTE] = ACTIONS(1190), - [anon_sym_u8_SQUOTE] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_L_DQUOTE] = ACTIONS(1190), - [anon_sym_u_DQUOTE] = ACTIONS(1190), - [anon_sym_U_DQUOTE] = ACTIONS(1190), - [anon_sym_u8_DQUOTE] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym_true] = ACTIONS(1188), - [sym_false] = ACTIONS(1188), - [anon_sym_NULL] = ACTIONS(1188), - [anon_sym_nullptr] = ACTIONS(1188), + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, [293] = { - [ts_builtin_sym_end] = ACTIONS(1186), - [sym_identifier] = ACTIONS(1184), - [aux_sym_preproc_include_token1] = ACTIONS(1184), - [aux_sym_preproc_def_token1] = ACTIONS(1184), - [aux_sym_preproc_if_token1] = ACTIONS(1184), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1184), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1184), - [sym_preproc_directive] = ACTIONS(1184), - [anon_sym_LPAREN2] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym___extension__] = ACTIONS(1184), - [anon_sym_typedef] = ACTIONS(1184), - [anon_sym_extern] = ACTIONS(1184), - [anon_sym___attribute__] = ACTIONS(1184), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1186), - [anon_sym___declspec] = ACTIONS(1184), - [anon_sym___cdecl] = ACTIONS(1184), - [anon_sym___clrcall] = ACTIONS(1184), - [anon_sym___stdcall] = ACTIONS(1184), - [anon_sym___fastcall] = ACTIONS(1184), - [anon_sym___thiscall] = ACTIONS(1184), - [anon_sym___vectorcall] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_signed] = ACTIONS(1184), - [anon_sym_unsigned] = ACTIONS(1184), - [anon_sym_long] = ACTIONS(1184), - [anon_sym_short] = ACTIONS(1184), - [anon_sym_static] = ACTIONS(1184), - [anon_sym_auto] = ACTIONS(1184), - [anon_sym_register] = ACTIONS(1184), - [anon_sym_inline] = ACTIONS(1184), - [anon_sym___inline] = ACTIONS(1184), - [anon_sym___inline__] = ACTIONS(1184), - [anon_sym___forceinline] = ACTIONS(1184), - [anon_sym_thread_local] = ACTIONS(1184), - [anon_sym___thread] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1184), - [anon_sym_constexpr] = ACTIONS(1184), - [anon_sym_volatile] = ACTIONS(1184), - [anon_sym_restrict] = ACTIONS(1184), - [anon_sym___restrict__] = ACTIONS(1184), - [anon_sym__Atomic] = ACTIONS(1184), - [anon_sym__Noreturn] = ACTIONS(1184), - [anon_sym_noreturn] = ACTIONS(1184), - [sym_primitive_type] = ACTIONS(1184), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_struct] = ACTIONS(1184), - [anon_sym_union] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_else] = ACTIONS(1184), - [anon_sym_switch] = ACTIONS(1184), - [anon_sym_case] = ACTIONS(1184), - [anon_sym_default] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_do] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_goto] = ACTIONS(1184), - [anon_sym___try] = ACTIONS(1184), - [anon_sym___leave] = ACTIONS(1184), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_sizeof] = ACTIONS(1184), - [anon_sym___alignof__] = ACTIONS(1184), - [anon_sym___alignof] = ACTIONS(1184), - [anon_sym__alignof] = ACTIONS(1184), - [anon_sym_alignof] = ACTIONS(1184), - [anon_sym__Alignof] = ACTIONS(1184), - [anon_sym_offsetof] = ACTIONS(1184), - [anon_sym__Generic] = ACTIONS(1184), - [anon_sym_asm] = ACTIONS(1184), - [anon_sym___asm__] = ACTIONS(1184), - [sym_number_literal] = ACTIONS(1186), - [anon_sym_L_SQUOTE] = ACTIONS(1186), - [anon_sym_u_SQUOTE] = ACTIONS(1186), - [anon_sym_U_SQUOTE] = ACTIONS(1186), - [anon_sym_u8_SQUOTE] = ACTIONS(1186), - [anon_sym_SQUOTE] = ACTIONS(1186), - [anon_sym_L_DQUOTE] = ACTIONS(1186), - [anon_sym_u_DQUOTE] = ACTIONS(1186), - [anon_sym_U_DQUOTE] = ACTIONS(1186), - [anon_sym_u8_DQUOTE] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym_true] = ACTIONS(1184), - [sym_false] = ACTIONS(1184), - [anon_sym_NULL] = ACTIONS(1184), - [anon_sym_nullptr] = ACTIONS(1184), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [294] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token2] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, [295] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1199), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token2] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), + [sym_preproc_directive] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1199), + [anon_sym_extern] = ACTIONS(1199), + [anon_sym___attribute__] = ACTIONS(1199), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1199), + [anon_sym___cdecl] = ACTIONS(1199), + [anon_sym___clrcall] = ACTIONS(1199), + [anon_sym___stdcall] = ACTIONS(1199), + [anon_sym___fastcall] = ACTIONS(1199), + [anon_sym___thiscall] = ACTIONS(1199), + [anon_sym___vectorcall] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1199), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_auto] = ACTIONS(1199), + [anon_sym_register] = ACTIONS(1199), + [anon_sym_inline] = ACTIONS(1199), + [anon_sym___inline] = ACTIONS(1199), + [anon_sym___inline__] = ACTIONS(1199), + [anon_sym___forceinline] = ACTIONS(1199), + [anon_sym_thread_local] = ACTIONS(1199), + [anon_sym___thread] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(1199), + [anon_sym_constexpr] = ACTIONS(1199), + [anon_sym_volatile] = ACTIONS(1199), + [anon_sym_restrict] = ACTIONS(1199), + [anon_sym___restrict__] = ACTIONS(1199), + [anon_sym__Atomic] = ACTIONS(1199), + [anon_sym__Noreturn] = ACTIONS(1199), + [anon_sym_noreturn] = ACTIONS(1199), + [anon_sym_alignas] = ACTIONS(1199), + [anon_sym__Alignas] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1199), + [anon_sym_enum] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_switch] = ACTIONS(1199), + [anon_sym_case] = ACTIONS(1199), + [anon_sym_default] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [anon_sym_do] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1199), + [anon_sym___try] = ACTIONS(1199), + [anon_sym___leave] = ACTIONS(1199), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1199), + [anon_sym___alignof__] = ACTIONS(1199), + [anon_sym___alignof] = ACTIONS(1199), + [anon_sym__alignof] = ACTIONS(1199), + [anon_sym_alignof] = ACTIONS(1199), + [anon_sym__Alignof] = ACTIONS(1199), + [anon_sym_offsetof] = ACTIONS(1199), + [anon_sym__Generic] = ACTIONS(1199), + [anon_sym_asm] = ACTIONS(1199), + [anon_sym___asm__] = ACTIONS(1199), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1199), + [sym_false] = ACTIONS(1199), + [anon_sym_NULL] = ACTIONS(1199), + [anon_sym_nullptr] = ACTIONS(1199), [sym_comment] = ACTIONS(3), }, [296] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1221), + [sym_identifier] = ACTIONS(1219), + [aux_sym_preproc_include_token1] = ACTIONS(1219), + [aux_sym_preproc_def_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), + [sym_preproc_directive] = ACTIONS(1219), + [anon_sym_LPAREN2] = ACTIONS(1221), + [anon_sym_BANG] = ACTIONS(1221), + [anon_sym_TILDE] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym___extension__] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1219), + [anon_sym_extern] = ACTIONS(1219), + [anon_sym___attribute__] = ACTIONS(1219), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), + [anon_sym___declspec] = ACTIONS(1219), + [anon_sym___cdecl] = ACTIONS(1219), + [anon_sym___clrcall] = ACTIONS(1219), + [anon_sym___stdcall] = ACTIONS(1219), + [anon_sym___fastcall] = ACTIONS(1219), + [anon_sym___thiscall] = ACTIONS(1219), + [anon_sym___vectorcall] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_signed] = ACTIONS(1219), + [anon_sym_unsigned] = ACTIONS(1219), + [anon_sym_long] = ACTIONS(1219), + [anon_sym_short] = ACTIONS(1219), + [anon_sym_static] = ACTIONS(1219), + [anon_sym_auto] = ACTIONS(1219), + [anon_sym_register] = ACTIONS(1219), + [anon_sym_inline] = ACTIONS(1219), + [anon_sym___inline] = ACTIONS(1219), + [anon_sym___inline__] = ACTIONS(1219), + [anon_sym___forceinline] = ACTIONS(1219), + [anon_sym_thread_local] = ACTIONS(1219), + [anon_sym___thread] = ACTIONS(1219), + [anon_sym_const] = ACTIONS(1219), + [anon_sym_constexpr] = ACTIONS(1219), + [anon_sym_volatile] = ACTIONS(1219), + [anon_sym_restrict] = ACTIONS(1219), + [anon_sym___restrict__] = ACTIONS(1219), + [anon_sym__Atomic] = ACTIONS(1219), + [anon_sym__Noreturn] = ACTIONS(1219), + [anon_sym_noreturn] = ACTIONS(1219), + [anon_sym_alignas] = ACTIONS(1219), + [anon_sym__Alignas] = ACTIONS(1219), + [sym_primitive_type] = ACTIONS(1219), + [anon_sym_enum] = ACTIONS(1219), + [anon_sym_struct] = ACTIONS(1219), + [anon_sym_union] = ACTIONS(1219), + [anon_sym_if] = ACTIONS(1219), + [anon_sym_else] = ACTIONS(1219), + [anon_sym_switch] = ACTIONS(1219), + [anon_sym_case] = ACTIONS(1219), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1219), + [anon_sym_for] = ACTIONS(1219), + [anon_sym_return] = ACTIONS(1219), + [anon_sym_break] = ACTIONS(1219), + [anon_sym_continue] = ACTIONS(1219), + [anon_sym_goto] = ACTIONS(1219), + [anon_sym___try] = ACTIONS(1219), + [anon_sym___leave] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1219), + [anon_sym___alignof__] = ACTIONS(1219), + [anon_sym___alignof] = ACTIONS(1219), + [anon_sym__alignof] = ACTIONS(1219), + [anon_sym_alignof] = ACTIONS(1219), + [anon_sym__Alignof] = ACTIONS(1219), + [anon_sym_offsetof] = ACTIONS(1219), + [anon_sym__Generic] = ACTIONS(1219), + [anon_sym_asm] = ACTIONS(1219), + [anon_sym___asm__] = ACTIONS(1219), + [sym_number_literal] = ACTIONS(1221), + [anon_sym_L_SQUOTE] = ACTIONS(1221), + [anon_sym_u_SQUOTE] = ACTIONS(1221), + [anon_sym_U_SQUOTE] = ACTIONS(1221), + [anon_sym_u8_SQUOTE] = ACTIONS(1221), + [anon_sym_SQUOTE] = ACTIONS(1221), + [anon_sym_L_DQUOTE] = ACTIONS(1221), + [anon_sym_u_DQUOTE] = ACTIONS(1221), + [anon_sym_U_DQUOTE] = ACTIONS(1221), + [anon_sym_u8_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym_true] = ACTIONS(1219), + [sym_false] = ACTIONS(1219), + [anon_sym_NULL] = ACTIONS(1219), + [anon_sym_nullptr] = ACTIONS(1219), [sym_comment] = ACTIONS(3), }, [297] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1193), + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, [298] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token2] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [sym_preproc_directive] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym___extension__] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [anon_sym___inline] = ACTIONS(1195), + [anon_sym___inline__] = ACTIONS(1195), + [anon_sym___forceinline] = ACTIONS(1195), + [anon_sym_thread_local] = ACTIONS(1195), + [anon_sym___thread] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_constexpr] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym___restrict__] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym__Noreturn] = ACTIONS(1195), + [anon_sym_noreturn] = ACTIONS(1195), + [anon_sym_alignas] = ACTIONS(1195), + [anon_sym__Alignas] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym___try] = ACTIONS(1195), + [anon_sym___leave] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [anon_sym___alignof__] = ACTIONS(1195), + [anon_sym___alignof] = ACTIONS(1195), + [anon_sym__alignof] = ACTIONS(1195), + [anon_sym_alignof] = ACTIONS(1195), + [anon_sym__Alignof] = ACTIONS(1195), + [anon_sym_offsetof] = ACTIONS(1195), + [anon_sym__Generic] = ACTIONS(1195), + [anon_sym_asm] = ACTIONS(1195), + [anon_sym___asm__] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [anon_sym_NULL] = ACTIONS(1195), + [anon_sym_nullptr] = ACTIONS(1195), [sym_comment] = ACTIONS(3), }, [299] = { - [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___extension__] = ACTIONS(1116), - [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_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym___inline] = ACTIONS(1116), - [anon_sym___inline__] = ACTIONS(1116), - [anon_sym___forceinline] = ACTIONS(1116), - [anon_sym_thread_local] = ACTIONS(1116), - [anon_sym___thread] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1116), - [anon_sym___leave] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym___alignof__] = ACTIONS(1116), - [anon_sym___alignof] = ACTIONS(1116), - [anon_sym__alignof] = ACTIONS(1116), - [anon_sym_alignof] = ACTIONS(1116), - [anon_sym__Alignof] = ACTIONS(1116), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1116), - [anon_sym_nullptr] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [300] = { - [sym_identifier] = ACTIONS(1172), - [aux_sym_preproc_include_token1] = ACTIONS(1172), - [aux_sym_preproc_def_token1] = ACTIONS(1172), - [aux_sym_preproc_if_token1] = ACTIONS(1172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1172), - [sym_preproc_directive] = ACTIONS(1172), - [anon_sym_LPAREN2] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_TILDE] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym___extension__] = ACTIONS(1172), - [anon_sym_typedef] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym___attribute__] = ACTIONS(1172), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1174), - [anon_sym___declspec] = ACTIONS(1172), - [anon_sym___cdecl] = ACTIONS(1172), - [anon_sym___clrcall] = ACTIONS(1172), - [anon_sym___stdcall] = ACTIONS(1172), - [anon_sym___fastcall] = ACTIONS(1172), - [anon_sym___thiscall] = ACTIONS(1172), - [anon_sym___vectorcall] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_RBRACE] = ACTIONS(1174), - [anon_sym_signed] = ACTIONS(1172), - [anon_sym_unsigned] = ACTIONS(1172), - [anon_sym_long] = ACTIONS(1172), - [anon_sym_short] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1172), - [anon_sym_auto] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_inline] = ACTIONS(1172), - [anon_sym___inline] = ACTIONS(1172), - [anon_sym___inline__] = ACTIONS(1172), - [anon_sym___forceinline] = ACTIONS(1172), - [anon_sym_thread_local] = ACTIONS(1172), - [anon_sym___thread] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_constexpr] = ACTIONS(1172), - [anon_sym_volatile] = ACTIONS(1172), - [anon_sym_restrict] = ACTIONS(1172), - [anon_sym___restrict__] = ACTIONS(1172), - [anon_sym__Atomic] = ACTIONS(1172), - [anon_sym__Noreturn] = ACTIONS(1172), - [anon_sym_noreturn] = ACTIONS(1172), - [sym_primitive_type] = ACTIONS(1172), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_struct] = ACTIONS(1172), - [anon_sym_union] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_else] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1172), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_goto] = ACTIONS(1172), - [anon_sym___try] = ACTIONS(1172), - [anon_sym___leave] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_sizeof] = ACTIONS(1172), - [anon_sym___alignof__] = ACTIONS(1172), - [anon_sym___alignof] = ACTIONS(1172), - [anon_sym__alignof] = ACTIONS(1172), - [anon_sym_alignof] = ACTIONS(1172), - [anon_sym__Alignof] = ACTIONS(1172), - [anon_sym_offsetof] = ACTIONS(1172), - [anon_sym__Generic] = ACTIONS(1172), - [anon_sym_asm] = ACTIONS(1172), - [anon_sym___asm__] = ACTIONS(1172), - [sym_number_literal] = ACTIONS(1174), - [anon_sym_L_SQUOTE] = ACTIONS(1174), - [anon_sym_u_SQUOTE] = ACTIONS(1174), - [anon_sym_U_SQUOTE] = ACTIONS(1174), - [anon_sym_u8_SQUOTE] = ACTIONS(1174), - [anon_sym_SQUOTE] = ACTIONS(1174), - [anon_sym_L_DQUOTE] = ACTIONS(1174), - [anon_sym_u_DQUOTE] = ACTIONS(1174), - [anon_sym_U_DQUOTE] = ACTIONS(1174), - [anon_sym_u8_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1174), - [sym_true] = ACTIONS(1172), - [sym_false] = ACTIONS(1172), - [anon_sym_NULL] = ACTIONS(1172), - [anon_sym_nullptr] = ACTIONS(1172), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [301] = { - [sym_identifier] = ACTIONS(1168), - [aux_sym_preproc_include_token1] = ACTIONS(1168), - [aux_sym_preproc_def_token1] = ACTIONS(1168), - [aux_sym_preproc_if_token1] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1168), - [sym_preproc_directive] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1170), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym___extension__] = ACTIONS(1168), - [anon_sym_typedef] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym___attribute__] = ACTIONS(1168), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1170), - [anon_sym___declspec] = ACTIONS(1168), - [anon_sym___cdecl] = ACTIONS(1168), - [anon_sym___clrcall] = ACTIONS(1168), - [anon_sym___stdcall] = ACTIONS(1168), - [anon_sym___fastcall] = ACTIONS(1168), - [anon_sym___thiscall] = ACTIONS(1168), - [anon_sym___vectorcall] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym_signed] = ACTIONS(1168), - [anon_sym_unsigned] = ACTIONS(1168), - [anon_sym_long] = ACTIONS(1168), - [anon_sym_short] = ACTIONS(1168), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_auto] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_inline] = ACTIONS(1168), - [anon_sym___inline] = ACTIONS(1168), - [anon_sym___inline__] = ACTIONS(1168), - [anon_sym___forceinline] = ACTIONS(1168), - [anon_sym_thread_local] = ACTIONS(1168), - [anon_sym___thread] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_constexpr] = ACTIONS(1168), - [anon_sym_volatile] = ACTIONS(1168), - [anon_sym_restrict] = ACTIONS(1168), - [anon_sym___restrict__] = ACTIONS(1168), - [anon_sym__Atomic] = ACTIONS(1168), - [anon_sym__Noreturn] = ACTIONS(1168), - [anon_sym_noreturn] = ACTIONS(1168), - [sym_primitive_type] = ACTIONS(1168), - [anon_sym_enum] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1168), - [anon_sym_union] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1168), - [anon_sym_case] = ACTIONS(1168), - [anon_sym_default] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_goto] = ACTIONS(1168), - [anon_sym___try] = ACTIONS(1168), - [anon_sym___leave] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_sizeof] = ACTIONS(1168), - [anon_sym___alignof__] = ACTIONS(1168), - [anon_sym___alignof] = ACTIONS(1168), - [anon_sym__alignof] = ACTIONS(1168), - [anon_sym_alignof] = ACTIONS(1168), - [anon_sym__Alignof] = ACTIONS(1168), - [anon_sym_offsetof] = ACTIONS(1168), - [anon_sym__Generic] = ACTIONS(1168), - [anon_sym_asm] = ACTIONS(1168), - [anon_sym___asm__] = ACTIONS(1168), - [sym_number_literal] = ACTIONS(1170), - [anon_sym_L_SQUOTE] = ACTIONS(1170), - [anon_sym_u_SQUOTE] = ACTIONS(1170), - [anon_sym_U_SQUOTE] = ACTIONS(1170), - [anon_sym_u8_SQUOTE] = ACTIONS(1170), - [anon_sym_SQUOTE] = ACTIONS(1170), - [anon_sym_L_DQUOTE] = ACTIONS(1170), - [anon_sym_u_DQUOTE] = ACTIONS(1170), - [anon_sym_U_DQUOTE] = ACTIONS(1170), - [anon_sym_u8_DQUOTE] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1170), - [sym_true] = ACTIONS(1168), - [sym_false] = ACTIONS(1168), - [anon_sym_NULL] = ACTIONS(1168), - [anon_sym_nullptr] = ACTIONS(1168), + [ts_builtin_sym_end] = ACTIONS(1189), + [sym_identifier] = ACTIONS(1187), + [aux_sym_preproc_include_token1] = ACTIONS(1187), + [aux_sym_preproc_def_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), + [sym_preproc_directive] = ACTIONS(1187), + [anon_sym_LPAREN2] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym___extension__] = ACTIONS(1187), + [anon_sym_typedef] = ACTIONS(1187), + [anon_sym_extern] = ACTIONS(1187), + [anon_sym___attribute__] = ACTIONS(1187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), + [anon_sym___declspec] = ACTIONS(1187), + [anon_sym___cdecl] = ACTIONS(1187), + [anon_sym___clrcall] = ACTIONS(1187), + [anon_sym___stdcall] = ACTIONS(1187), + [anon_sym___fastcall] = ACTIONS(1187), + [anon_sym___thiscall] = ACTIONS(1187), + [anon_sym___vectorcall] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_signed] = ACTIONS(1187), + [anon_sym_unsigned] = ACTIONS(1187), + [anon_sym_long] = ACTIONS(1187), + [anon_sym_short] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1187), + [anon_sym_auto] = ACTIONS(1187), + [anon_sym_register] = ACTIONS(1187), + [anon_sym_inline] = ACTIONS(1187), + [anon_sym___inline] = ACTIONS(1187), + [anon_sym___inline__] = ACTIONS(1187), + [anon_sym___forceinline] = ACTIONS(1187), + [anon_sym_thread_local] = ACTIONS(1187), + [anon_sym___thread] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_constexpr] = ACTIONS(1187), + [anon_sym_volatile] = ACTIONS(1187), + [anon_sym_restrict] = ACTIONS(1187), + [anon_sym___restrict__] = ACTIONS(1187), + [anon_sym__Atomic] = ACTIONS(1187), + [anon_sym__Noreturn] = ACTIONS(1187), + [anon_sym_noreturn] = ACTIONS(1187), + [anon_sym_alignas] = ACTIONS(1187), + [anon_sym__Alignas] = ACTIONS(1187), + [sym_primitive_type] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_union] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_switch] = ACTIONS(1187), + [anon_sym_case] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_goto] = ACTIONS(1187), + [anon_sym___try] = ACTIONS(1187), + [anon_sym___leave] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1187), + [anon_sym___alignof__] = ACTIONS(1187), + [anon_sym___alignof] = ACTIONS(1187), + [anon_sym__alignof] = ACTIONS(1187), + [anon_sym_alignof] = ACTIONS(1187), + [anon_sym__Alignof] = ACTIONS(1187), + [anon_sym_offsetof] = ACTIONS(1187), + [anon_sym__Generic] = ACTIONS(1187), + [anon_sym_asm] = ACTIONS(1187), + [anon_sym___asm__] = ACTIONS(1187), + [sym_number_literal] = ACTIONS(1189), + [anon_sym_L_SQUOTE] = ACTIONS(1189), + [anon_sym_u_SQUOTE] = ACTIONS(1189), + [anon_sym_U_SQUOTE] = ACTIONS(1189), + [anon_sym_u8_SQUOTE] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_L_DQUOTE] = ACTIONS(1189), + [anon_sym_u_DQUOTE] = ACTIONS(1189), + [anon_sym_U_DQUOTE] = ACTIONS(1189), + [anon_sym_u8_DQUOTE] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [sym_true] = ACTIONS(1187), + [sym_false] = ACTIONS(1187), + [anon_sym_NULL] = ACTIONS(1187), + [anon_sym_nullptr] = ACTIONS(1187), [sym_comment] = ACTIONS(3), }, [302] = { - [sym_identifier] = ACTIONS(1168), - [aux_sym_preproc_include_token1] = ACTIONS(1168), - [aux_sym_preproc_def_token1] = ACTIONS(1168), - [aux_sym_preproc_if_token1] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1168), - [sym_preproc_directive] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1170), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym___extension__] = ACTIONS(1168), - [anon_sym_typedef] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym___attribute__] = ACTIONS(1168), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1170), - [anon_sym___declspec] = ACTIONS(1168), - [anon_sym___cdecl] = ACTIONS(1168), - [anon_sym___clrcall] = ACTIONS(1168), - [anon_sym___stdcall] = ACTIONS(1168), - [anon_sym___fastcall] = ACTIONS(1168), - [anon_sym___thiscall] = ACTIONS(1168), - [anon_sym___vectorcall] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym_signed] = ACTIONS(1168), - [anon_sym_unsigned] = ACTIONS(1168), - [anon_sym_long] = ACTIONS(1168), - [anon_sym_short] = ACTIONS(1168), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_auto] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_inline] = ACTIONS(1168), - [anon_sym___inline] = ACTIONS(1168), - [anon_sym___inline__] = ACTIONS(1168), - [anon_sym___forceinline] = ACTIONS(1168), - [anon_sym_thread_local] = ACTIONS(1168), - [anon_sym___thread] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_constexpr] = ACTIONS(1168), - [anon_sym_volatile] = ACTIONS(1168), - [anon_sym_restrict] = ACTIONS(1168), - [anon_sym___restrict__] = ACTIONS(1168), - [anon_sym__Atomic] = ACTIONS(1168), - [anon_sym__Noreturn] = ACTIONS(1168), - [anon_sym_noreturn] = ACTIONS(1168), - [sym_primitive_type] = ACTIONS(1168), - [anon_sym_enum] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1168), - [anon_sym_union] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1168), - [anon_sym_case] = ACTIONS(1168), - [anon_sym_default] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_goto] = ACTIONS(1168), - [anon_sym___try] = ACTIONS(1168), - [anon_sym___leave] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_sizeof] = ACTIONS(1168), - [anon_sym___alignof__] = ACTIONS(1168), - [anon_sym___alignof] = ACTIONS(1168), - [anon_sym__alignof] = ACTIONS(1168), - [anon_sym_alignof] = ACTIONS(1168), - [anon_sym__Alignof] = ACTIONS(1168), - [anon_sym_offsetof] = ACTIONS(1168), - [anon_sym__Generic] = ACTIONS(1168), - [anon_sym_asm] = ACTIONS(1168), - [anon_sym___asm__] = ACTIONS(1168), - [sym_number_literal] = ACTIONS(1170), - [anon_sym_L_SQUOTE] = ACTIONS(1170), - [anon_sym_u_SQUOTE] = ACTIONS(1170), - [anon_sym_U_SQUOTE] = ACTIONS(1170), - [anon_sym_u8_SQUOTE] = ACTIONS(1170), - [anon_sym_SQUOTE] = ACTIONS(1170), - [anon_sym_L_DQUOTE] = ACTIONS(1170), - [anon_sym_u_DQUOTE] = ACTIONS(1170), - [anon_sym_U_DQUOTE] = ACTIONS(1170), - [anon_sym_u8_DQUOTE] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1170), - [sym_true] = ACTIONS(1168), - [sym_false] = ACTIONS(1168), - [anon_sym_NULL] = ACTIONS(1168), - [anon_sym_nullptr] = ACTIONS(1168), + [sym_identifier] = ACTIONS(1183), + [aux_sym_preproc_include_token1] = ACTIONS(1183), + [aux_sym_preproc_def_token1] = ACTIONS(1183), + [aux_sym_preproc_if_token1] = ACTIONS(1183), + [aux_sym_preproc_if_token2] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), + [sym_preproc_directive] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym___extension__] = ACTIONS(1183), + [anon_sym_typedef] = ACTIONS(1183), + [anon_sym_extern] = ACTIONS(1183), + [anon_sym___attribute__] = ACTIONS(1183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), + [anon_sym___declspec] = ACTIONS(1183), + [anon_sym___cdecl] = ACTIONS(1183), + [anon_sym___clrcall] = ACTIONS(1183), + [anon_sym___stdcall] = ACTIONS(1183), + [anon_sym___fastcall] = ACTIONS(1183), + [anon_sym___thiscall] = ACTIONS(1183), + [anon_sym___vectorcall] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_signed] = ACTIONS(1183), + [anon_sym_unsigned] = ACTIONS(1183), + [anon_sym_long] = ACTIONS(1183), + [anon_sym_short] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1183), + [anon_sym_auto] = ACTIONS(1183), + [anon_sym_register] = ACTIONS(1183), + [anon_sym_inline] = ACTIONS(1183), + [anon_sym___inline] = ACTIONS(1183), + [anon_sym___inline__] = ACTIONS(1183), + [anon_sym___forceinline] = ACTIONS(1183), + [anon_sym_thread_local] = ACTIONS(1183), + [anon_sym___thread] = ACTIONS(1183), + [anon_sym_const] = ACTIONS(1183), + [anon_sym_constexpr] = ACTIONS(1183), + [anon_sym_volatile] = ACTIONS(1183), + [anon_sym_restrict] = ACTIONS(1183), + [anon_sym___restrict__] = ACTIONS(1183), + [anon_sym__Atomic] = ACTIONS(1183), + [anon_sym__Noreturn] = ACTIONS(1183), + [anon_sym_noreturn] = ACTIONS(1183), + [anon_sym_alignas] = ACTIONS(1183), + [anon_sym__Alignas] = ACTIONS(1183), + [sym_primitive_type] = ACTIONS(1183), + [anon_sym_enum] = ACTIONS(1183), + [anon_sym_struct] = ACTIONS(1183), + [anon_sym_union] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_else] = ACTIONS(1183), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1183), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(1183), + [anon_sym_for] = ACTIONS(1183), + [anon_sym_return] = ACTIONS(1183), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym___try] = ACTIONS(1183), + [anon_sym___leave] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_sizeof] = ACTIONS(1183), + [anon_sym___alignof__] = ACTIONS(1183), + [anon_sym___alignof] = ACTIONS(1183), + [anon_sym__alignof] = ACTIONS(1183), + [anon_sym_alignof] = ACTIONS(1183), + [anon_sym__Alignof] = ACTIONS(1183), + [anon_sym_offsetof] = ACTIONS(1183), + [anon_sym__Generic] = ACTIONS(1183), + [anon_sym_asm] = ACTIONS(1183), + [anon_sym___asm__] = ACTIONS(1183), + [sym_number_literal] = ACTIONS(1185), + [anon_sym_L_SQUOTE] = ACTIONS(1185), + [anon_sym_u_SQUOTE] = ACTIONS(1185), + [anon_sym_U_SQUOTE] = ACTIONS(1185), + [anon_sym_u8_SQUOTE] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_L_DQUOTE] = ACTIONS(1185), + [anon_sym_u_DQUOTE] = ACTIONS(1185), + [anon_sym_U_DQUOTE] = ACTIONS(1185), + [anon_sym_u8_DQUOTE] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym_true] = ACTIONS(1183), + [sym_false] = ACTIONS(1183), + [anon_sym_NULL] = ACTIONS(1183), + [anon_sym_nullptr] = ACTIONS(1183), [sym_comment] = ACTIONS(3), }, [303] = { - [sym_identifier] = ACTIONS(1164), - [aux_sym_preproc_include_token1] = ACTIONS(1164), - [aux_sym_preproc_def_token1] = ACTIONS(1164), - [aux_sym_preproc_if_token1] = ACTIONS(1164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1164), - [sym_preproc_directive] = ACTIONS(1164), - [anon_sym_LPAREN2] = ACTIONS(1166), - [anon_sym_BANG] = ACTIONS(1166), - [anon_sym_TILDE] = ACTIONS(1166), - [anon_sym_DASH] = ACTIONS(1164), - [anon_sym_PLUS] = ACTIONS(1164), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1166), - [anon_sym_SEMI] = ACTIONS(1166), - [anon_sym___extension__] = ACTIONS(1164), - [anon_sym_typedef] = ACTIONS(1164), - [anon_sym_extern] = ACTIONS(1164), - [anon_sym___attribute__] = ACTIONS(1164), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1166), - [anon_sym___declspec] = ACTIONS(1164), - [anon_sym___cdecl] = ACTIONS(1164), - [anon_sym___clrcall] = ACTIONS(1164), - [anon_sym___stdcall] = ACTIONS(1164), - [anon_sym___fastcall] = ACTIONS(1164), - [anon_sym___thiscall] = ACTIONS(1164), - [anon_sym___vectorcall] = ACTIONS(1164), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_RBRACE] = ACTIONS(1166), - [anon_sym_signed] = ACTIONS(1164), - [anon_sym_unsigned] = ACTIONS(1164), - [anon_sym_long] = ACTIONS(1164), - [anon_sym_short] = ACTIONS(1164), - [anon_sym_static] = ACTIONS(1164), - [anon_sym_auto] = ACTIONS(1164), - [anon_sym_register] = ACTIONS(1164), - [anon_sym_inline] = ACTIONS(1164), - [anon_sym___inline] = ACTIONS(1164), - [anon_sym___inline__] = ACTIONS(1164), - [anon_sym___forceinline] = ACTIONS(1164), - [anon_sym_thread_local] = ACTIONS(1164), - [anon_sym___thread] = ACTIONS(1164), - [anon_sym_const] = ACTIONS(1164), - [anon_sym_constexpr] = ACTIONS(1164), - [anon_sym_volatile] = ACTIONS(1164), - [anon_sym_restrict] = ACTIONS(1164), - [anon_sym___restrict__] = ACTIONS(1164), - [anon_sym__Atomic] = ACTIONS(1164), - [anon_sym__Noreturn] = ACTIONS(1164), - [anon_sym_noreturn] = ACTIONS(1164), - [sym_primitive_type] = ACTIONS(1164), - [anon_sym_enum] = ACTIONS(1164), - [anon_sym_struct] = ACTIONS(1164), - [anon_sym_union] = ACTIONS(1164), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_else] = ACTIONS(1164), - [anon_sym_switch] = ACTIONS(1164), - [anon_sym_case] = ACTIONS(1164), - [anon_sym_default] = ACTIONS(1164), - [anon_sym_while] = ACTIONS(1164), - [anon_sym_do] = ACTIONS(1164), - [anon_sym_for] = ACTIONS(1164), - [anon_sym_return] = ACTIONS(1164), - [anon_sym_break] = ACTIONS(1164), - [anon_sym_continue] = ACTIONS(1164), - [anon_sym_goto] = ACTIONS(1164), - [anon_sym___try] = ACTIONS(1164), - [anon_sym___leave] = ACTIONS(1164), - [anon_sym_DASH_DASH] = ACTIONS(1166), - [anon_sym_PLUS_PLUS] = ACTIONS(1166), - [anon_sym_sizeof] = ACTIONS(1164), - [anon_sym___alignof__] = ACTIONS(1164), - [anon_sym___alignof] = ACTIONS(1164), - [anon_sym__alignof] = ACTIONS(1164), - [anon_sym_alignof] = ACTIONS(1164), - [anon_sym__Alignof] = ACTIONS(1164), - [anon_sym_offsetof] = ACTIONS(1164), - [anon_sym__Generic] = ACTIONS(1164), - [anon_sym_asm] = ACTIONS(1164), - [anon_sym___asm__] = ACTIONS(1164), - [sym_number_literal] = ACTIONS(1166), - [anon_sym_L_SQUOTE] = ACTIONS(1166), - [anon_sym_u_SQUOTE] = ACTIONS(1166), - [anon_sym_U_SQUOTE] = ACTIONS(1166), - [anon_sym_u8_SQUOTE] = ACTIONS(1166), - [anon_sym_SQUOTE] = ACTIONS(1166), - [anon_sym_L_DQUOTE] = ACTIONS(1166), - [anon_sym_u_DQUOTE] = ACTIONS(1166), - [anon_sym_U_DQUOTE] = ACTIONS(1166), - [anon_sym_u8_DQUOTE] = ACTIONS(1166), - [anon_sym_DQUOTE] = ACTIONS(1166), - [sym_true] = ACTIONS(1164), - [sym_false] = ACTIONS(1164), - [anon_sym_NULL] = ACTIONS(1164), - [anon_sym_nullptr] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [304] = { - [ts_builtin_sym_end] = ACTIONS(1162), - [sym_identifier] = ACTIONS(1160), - [aux_sym_preproc_include_token1] = ACTIONS(1160), - [aux_sym_preproc_def_token1] = ACTIONS(1160), - [aux_sym_preproc_if_token1] = ACTIONS(1160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1160), - [sym_preproc_directive] = ACTIONS(1160), - [anon_sym_LPAREN2] = ACTIONS(1162), - [anon_sym_BANG] = ACTIONS(1162), - [anon_sym_TILDE] = ACTIONS(1162), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_STAR] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1162), - [anon_sym_SEMI] = ACTIONS(1162), - [anon_sym___extension__] = ACTIONS(1160), - [anon_sym_typedef] = ACTIONS(1160), - [anon_sym_extern] = ACTIONS(1160), - [anon_sym___attribute__] = ACTIONS(1160), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1162), - [anon_sym___declspec] = ACTIONS(1160), - [anon_sym___cdecl] = ACTIONS(1160), - [anon_sym___clrcall] = ACTIONS(1160), - [anon_sym___stdcall] = ACTIONS(1160), - [anon_sym___fastcall] = ACTIONS(1160), - [anon_sym___thiscall] = ACTIONS(1160), - [anon_sym___vectorcall] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_signed] = ACTIONS(1160), - [anon_sym_unsigned] = ACTIONS(1160), - [anon_sym_long] = ACTIONS(1160), - [anon_sym_short] = ACTIONS(1160), - [anon_sym_static] = ACTIONS(1160), - [anon_sym_auto] = ACTIONS(1160), - [anon_sym_register] = ACTIONS(1160), - [anon_sym_inline] = ACTIONS(1160), - [anon_sym___inline] = ACTIONS(1160), - [anon_sym___inline__] = ACTIONS(1160), - [anon_sym___forceinline] = ACTIONS(1160), - [anon_sym_thread_local] = ACTIONS(1160), - [anon_sym___thread] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1160), - [anon_sym_constexpr] = ACTIONS(1160), - [anon_sym_volatile] = ACTIONS(1160), - [anon_sym_restrict] = ACTIONS(1160), - [anon_sym___restrict__] = ACTIONS(1160), - [anon_sym__Atomic] = ACTIONS(1160), - [anon_sym__Noreturn] = ACTIONS(1160), - [anon_sym_noreturn] = ACTIONS(1160), - [sym_primitive_type] = ACTIONS(1160), - [anon_sym_enum] = ACTIONS(1160), - [anon_sym_struct] = ACTIONS(1160), - [anon_sym_union] = ACTIONS(1160), - [anon_sym_if] = ACTIONS(1160), - [anon_sym_else] = ACTIONS(1160), - [anon_sym_switch] = ACTIONS(1160), - [anon_sym_case] = ACTIONS(1160), - [anon_sym_default] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1160), - [anon_sym_do] = ACTIONS(1160), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_return] = ACTIONS(1160), - [anon_sym_break] = ACTIONS(1160), - [anon_sym_continue] = ACTIONS(1160), - [anon_sym_goto] = ACTIONS(1160), - [anon_sym___try] = ACTIONS(1160), - [anon_sym___leave] = ACTIONS(1160), - [anon_sym_DASH_DASH] = ACTIONS(1162), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [anon_sym_sizeof] = ACTIONS(1160), - [anon_sym___alignof__] = ACTIONS(1160), - [anon_sym___alignof] = ACTIONS(1160), - [anon_sym__alignof] = ACTIONS(1160), - [anon_sym_alignof] = ACTIONS(1160), - [anon_sym__Alignof] = ACTIONS(1160), - [anon_sym_offsetof] = ACTIONS(1160), - [anon_sym__Generic] = ACTIONS(1160), - [anon_sym_asm] = ACTIONS(1160), - [anon_sym___asm__] = ACTIONS(1160), - [sym_number_literal] = ACTIONS(1162), - [anon_sym_L_SQUOTE] = ACTIONS(1162), - [anon_sym_u_SQUOTE] = ACTIONS(1162), - [anon_sym_U_SQUOTE] = ACTIONS(1162), - [anon_sym_u8_SQUOTE] = ACTIONS(1162), - [anon_sym_SQUOTE] = ACTIONS(1162), - [anon_sym_L_DQUOTE] = ACTIONS(1162), - [anon_sym_u_DQUOTE] = ACTIONS(1162), - [anon_sym_U_DQUOTE] = ACTIONS(1162), - [anon_sym_u8_DQUOTE] = ACTIONS(1162), - [anon_sym_DQUOTE] = ACTIONS(1162), - [sym_true] = ACTIONS(1160), - [sym_false] = ACTIONS(1160), - [anon_sym_NULL] = ACTIONS(1160), - [anon_sym_nullptr] = ACTIONS(1160), + [sym_identifier] = ACTIONS(1175), + [aux_sym_preproc_include_token1] = ACTIONS(1175), + [aux_sym_preproc_def_token1] = ACTIONS(1175), + [aux_sym_preproc_if_token1] = ACTIONS(1175), + [aux_sym_preproc_if_token2] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), + [sym_preproc_directive] = ACTIONS(1175), + [anon_sym_LPAREN2] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1177), + [anon_sym_TILDE] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym___extension__] = ACTIONS(1175), + [anon_sym_typedef] = ACTIONS(1175), + [anon_sym_extern] = ACTIONS(1175), + [anon_sym___attribute__] = ACTIONS(1175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1177), + [anon_sym___declspec] = ACTIONS(1175), + [anon_sym___cdecl] = ACTIONS(1175), + [anon_sym___clrcall] = ACTIONS(1175), + [anon_sym___stdcall] = ACTIONS(1175), + [anon_sym___fastcall] = ACTIONS(1175), + [anon_sym___thiscall] = ACTIONS(1175), + [anon_sym___vectorcall] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_signed] = ACTIONS(1175), + [anon_sym_unsigned] = ACTIONS(1175), + [anon_sym_long] = ACTIONS(1175), + [anon_sym_short] = ACTIONS(1175), + [anon_sym_static] = ACTIONS(1175), + [anon_sym_auto] = ACTIONS(1175), + [anon_sym_register] = ACTIONS(1175), + [anon_sym_inline] = ACTIONS(1175), + [anon_sym___inline] = ACTIONS(1175), + [anon_sym___inline__] = ACTIONS(1175), + [anon_sym___forceinline] = ACTIONS(1175), + [anon_sym_thread_local] = ACTIONS(1175), + [anon_sym___thread] = ACTIONS(1175), + [anon_sym_const] = ACTIONS(1175), + [anon_sym_constexpr] = ACTIONS(1175), + [anon_sym_volatile] = ACTIONS(1175), + [anon_sym_restrict] = ACTIONS(1175), + [anon_sym___restrict__] = ACTIONS(1175), + [anon_sym__Atomic] = ACTIONS(1175), + [anon_sym__Noreturn] = ACTIONS(1175), + [anon_sym_noreturn] = ACTIONS(1175), + [anon_sym_alignas] = ACTIONS(1175), + [anon_sym__Alignas] = ACTIONS(1175), + [sym_primitive_type] = ACTIONS(1175), + [anon_sym_enum] = ACTIONS(1175), + [anon_sym_struct] = ACTIONS(1175), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_else] = ACTIONS(1175), + [anon_sym_switch] = ACTIONS(1175), + [anon_sym_case] = ACTIONS(1175), + [anon_sym_default] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_do] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1175), + [anon_sym_continue] = ACTIONS(1175), + [anon_sym_goto] = ACTIONS(1175), + [anon_sym___try] = ACTIONS(1175), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_sizeof] = ACTIONS(1175), + [anon_sym___alignof__] = ACTIONS(1175), + [anon_sym___alignof] = ACTIONS(1175), + [anon_sym__alignof] = ACTIONS(1175), + [anon_sym_alignof] = ACTIONS(1175), + [anon_sym__Alignof] = ACTIONS(1175), + [anon_sym_offsetof] = ACTIONS(1175), + [anon_sym__Generic] = ACTIONS(1175), + [anon_sym_asm] = ACTIONS(1175), + [anon_sym___asm__] = ACTIONS(1175), + [sym_number_literal] = ACTIONS(1177), + [anon_sym_L_SQUOTE] = ACTIONS(1177), + [anon_sym_u_SQUOTE] = ACTIONS(1177), + [anon_sym_U_SQUOTE] = ACTIONS(1177), + [anon_sym_u8_SQUOTE] = ACTIONS(1177), + [anon_sym_SQUOTE] = ACTIONS(1177), + [anon_sym_L_DQUOTE] = ACTIONS(1177), + [anon_sym_u_DQUOTE] = ACTIONS(1177), + [anon_sym_U_DQUOTE] = ACTIONS(1177), + [anon_sym_u8_DQUOTE] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym_true] = ACTIONS(1175), + [sym_false] = ACTIONS(1175), + [anon_sym_NULL] = ACTIONS(1175), + [anon_sym_nullptr] = ACTIONS(1175), [sym_comment] = ACTIONS(3), }, [305] = { - [sym_identifier] = ACTIONS(1148), - [aux_sym_preproc_include_token1] = ACTIONS(1148), - [aux_sym_preproc_def_token1] = ACTIONS(1148), - [aux_sym_preproc_if_token1] = ACTIONS(1148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1148), - [sym_preproc_directive] = ACTIONS(1148), - [anon_sym_LPAREN2] = ACTIONS(1150), - [anon_sym_BANG] = ACTIONS(1150), - [anon_sym_TILDE] = ACTIONS(1150), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym___extension__] = ACTIONS(1148), - [anon_sym_typedef] = ACTIONS(1148), - [anon_sym_extern] = ACTIONS(1148), - [anon_sym___attribute__] = ACTIONS(1148), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1150), - [anon_sym___declspec] = ACTIONS(1148), - [anon_sym___cdecl] = ACTIONS(1148), - [anon_sym___clrcall] = ACTIONS(1148), - [anon_sym___stdcall] = ACTIONS(1148), - [anon_sym___fastcall] = ACTIONS(1148), - [anon_sym___thiscall] = ACTIONS(1148), - [anon_sym___vectorcall] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_RBRACE] = ACTIONS(1150), - [anon_sym_signed] = ACTIONS(1148), - [anon_sym_unsigned] = ACTIONS(1148), - [anon_sym_long] = ACTIONS(1148), - [anon_sym_short] = ACTIONS(1148), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_auto] = ACTIONS(1148), - [anon_sym_register] = ACTIONS(1148), - [anon_sym_inline] = ACTIONS(1148), - [anon_sym___inline] = ACTIONS(1148), - [anon_sym___inline__] = ACTIONS(1148), - [anon_sym___forceinline] = ACTIONS(1148), - [anon_sym_thread_local] = ACTIONS(1148), - [anon_sym___thread] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1148), - [anon_sym_constexpr] = ACTIONS(1148), - [anon_sym_volatile] = ACTIONS(1148), - [anon_sym_restrict] = ACTIONS(1148), - [anon_sym___restrict__] = ACTIONS(1148), - [anon_sym__Atomic] = ACTIONS(1148), - [anon_sym__Noreturn] = ACTIONS(1148), - [anon_sym_noreturn] = ACTIONS(1148), - [sym_primitive_type] = ACTIONS(1148), - [anon_sym_enum] = ACTIONS(1148), - [anon_sym_struct] = ACTIONS(1148), - [anon_sym_union] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_else] = ACTIONS(1148), - [anon_sym_switch] = ACTIONS(1148), - [anon_sym_case] = ACTIONS(1148), - [anon_sym_default] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_goto] = ACTIONS(1148), - [anon_sym___try] = ACTIONS(1148), - [anon_sym___leave] = ACTIONS(1148), - [anon_sym_DASH_DASH] = ACTIONS(1150), - [anon_sym_PLUS_PLUS] = ACTIONS(1150), - [anon_sym_sizeof] = ACTIONS(1148), - [anon_sym___alignof__] = ACTIONS(1148), - [anon_sym___alignof] = ACTIONS(1148), - [anon_sym__alignof] = ACTIONS(1148), - [anon_sym_alignof] = ACTIONS(1148), - [anon_sym__Alignof] = ACTIONS(1148), - [anon_sym_offsetof] = ACTIONS(1148), - [anon_sym__Generic] = ACTIONS(1148), - [anon_sym_asm] = ACTIONS(1148), - [anon_sym___asm__] = ACTIONS(1148), - [sym_number_literal] = ACTIONS(1150), - [anon_sym_L_SQUOTE] = ACTIONS(1150), - [anon_sym_u_SQUOTE] = ACTIONS(1150), - [anon_sym_U_SQUOTE] = ACTIONS(1150), - [anon_sym_u8_SQUOTE] = ACTIONS(1150), - [anon_sym_SQUOTE] = ACTIONS(1150), - [anon_sym_L_DQUOTE] = ACTIONS(1150), - [anon_sym_u_DQUOTE] = ACTIONS(1150), - [anon_sym_U_DQUOTE] = ACTIONS(1150), - [anon_sym_u8_DQUOTE] = ACTIONS(1150), - [anon_sym_DQUOTE] = ACTIONS(1150), - [sym_true] = ACTIONS(1148), - [sym_false] = ACTIONS(1148), - [anon_sym_NULL] = ACTIONS(1148), - [anon_sym_nullptr] = ACTIONS(1148), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [306] = { - [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___extension__] = ACTIONS(1120), - [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_signed] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1120), - [anon_sym_long] = ACTIONS(1120), - [anon_sym_short] = ACTIONS(1120), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_auto] = ACTIONS(1120), - [anon_sym_register] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym___inline] = ACTIONS(1120), - [anon_sym___inline__] = ACTIONS(1120), - [anon_sym___forceinline] = ACTIONS(1120), - [anon_sym_thread_local] = ACTIONS(1120), - [anon_sym___thread] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1120), - [anon_sym___leave] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_sizeof] = ACTIONS(1120), - [anon_sym___alignof__] = ACTIONS(1120), - [anon_sym___alignof] = ACTIONS(1120), - [anon_sym__alignof] = ACTIONS(1120), - [anon_sym_alignof] = ACTIONS(1120), - [anon_sym__Alignof] = ACTIONS(1120), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1120), - [anon_sym_nullptr] = ACTIONS(1120), + [ts_builtin_sym_end] = ACTIONS(1225), + [sym_identifier] = ACTIONS(1223), + [aux_sym_preproc_include_token1] = ACTIONS(1223), + [aux_sym_preproc_def_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_LPAREN2] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym___extension__] = ACTIONS(1223), + [anon_sym_typedef] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(1223), + [anon_sym___attribute__] = ACTIONS(1223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), + [anon_sym___declspec] = ACTIONS(1223), + [anon_sym___cdecl] = ACTIONS(1223), + [anon_sym___clrcall] = ACTIONS(1223), + [anon_sym___stdcall] = ACTIONS(1223), + [anon_sym___fastcall] = ACTIONS(1223), + [anon_sym___thiscall] = ACTIONS(1223), + [anon_sym___vectorcall] = ACTIONS(1223), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(1223), + [anon_sym_unsigned] = ACTIONS(1223), + [anon_sym_long] = ACTIONS(1223), + [anon_sym_short] = ACTIONS(1223), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_auto] = ACTIONS(1223), + [anon_sym_register] = ACTIONS(1223), + [anon_sym_inline] = ACTIONS(1223), + [anon_sym___inline] = ACTIONS(1223), + [anon_sym___inline__] = ACTIONS(1223), + [anon_sym___forceinline] = ACTIONS(1223), + [anon_sym_thread_local] = ACTIONS(1223), + [anon_sym___thread] = ACTIONS(1223), + [anon_sym_const] = ACTIONS(1223), + [anon_sym_constexpr] = ACTIONS(1223), + [anon_sym_volatile] = ACTIONS(1223), + [anon_sym_restrict] = ACTIONS(1223), + [anon_sym___restrict__] = ACTIONS(1223), + [anon_sym__Atomic] = ACTIONS(1223), + [anon_sym__Noreturn] = ACTIONS(1223), + [anon_sym_noreturn] = ACTIONS(1223), + [anon_sym_alignas] = ACTIONS(1223), + [anon_sym__Alignas] = ACTIONS(1223), + [sym_primitive_type] = ACTIONS(1223), + [anon_sym_enum] = ACTIONS(1223), + [anon_sym_struct] = ACTIONS(1223), + [anon_sym_union] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1223), + [anon_sym_else] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1223), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_do] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1223), + [anon_sym_break] = ACTIONS(1223), + [anon_sym_continue] = ACTIONS(1223), + [anon_sym_goto] = ACTIONS(1223), + [anon_sym___try] = ACTIONS(1223), + [anon_sym___leave] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_sizeof] = ACTIONS(1223), + [anon_sym___alignof__] = ACTIONS(1223), + [anon_sym___alignof] = ACTIONS(1223), + [anon_sym__alignof] = ACTIONS(1223), + [anon_sym_alignof] = ACTIONS(1223), + [anon_sym__Alignof] = ACTIONS(1223), + [anon_sym_offsetof] = ACTIONS(1223), + [anon_sym__Generic] = ACTIONS(1223), + [anon_sym_asm] = ACTIONS(1223), + [anon_sym___asm__] = ACTIONS(1223), + [sym_number_literal] = ACTIONS(1225), + [anon_sym_L_SQUOTE] = ACTIONS(1225), + [anon_sym_u_SQUOTE] = ACTIONS(1225), + [anon_sym_U_SQUOTE] = ACTIONS(1225), + [anon_sym_u8_SQUOTE] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_L_DQUOTE] = ACTIONS(1225), + [anon_sym_u_DQUOTE] = ACTIONS(1225), + [anon_sym_U_DQUOTE] = ACTIONS(1225), + [anon_sym_u8_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [anon_sym_NULL] = ACTIONS(1223), + [anon_sym_nullptr] = ACTIONS(1223), [sym_comment] = ACTIONS(3), }, [307] = { - [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___extension__] = ACTIONS(1120), - [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_signed] = ACTIONS(1120), - [anon_sym_unsigned] = ACTIONS(1120), - [anon_sym_long] = ACTIONS(1120), - [anon_sym_short] = ACTIONS(1120), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_auto] = ACTIONS(1120), - [anon_sym_register] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym___inline] = ACTIONS(1120), - [anon_sym___inline__] = ACTIONS(1120), - [anon_sym___forceinline] = ACTIONS(1120), - [anon_sym_thread_local] = ACTIONS(1120), - [anon_sym___thread] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_constexpr] = 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_noreturn] = 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_else] = 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___try] = ACTIONS(1120), - [anon_sym___leave] = ACTIONS(1120), - [anon_sym_DASH_DASH] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1122), - [anon_sym_sizeof] = ACTIONS(1120), - [anon_sym___alignof__] = ACTIONS(1120), - [anon_sym___alignof] = ACTIONS(1120), - [anon_sym__alignof] = ACTIONS(1120), - [anon_sym_alignof] = ACTIONS(1120), - [anon_sym__Alignof] = ACTIONS(1120), - [anon_sym_offsetof] = 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), - [anon_sym_NULL] = ACTIONS(1120), - [anon_sym_nullptr] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1339), + [aux_sym_preproc_include_token1] = ACTIONS(1339), + [aux_sym_preproc_def_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token2] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), + [sym_preproc_directive] = ACTIONS(1339), + [anon_sym_LPAREN2] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym___extension__] = ACTIONS(1339), + [anon_sym_typedef] = ACTIONS(1339), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym___attribute__] = ACTIONS(1339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), + [anon_sym___declspec] = ACTIONS(1339), + [anon_sym___cdecl] = ACTIONS(1339), + [anon_sym___clrcall] = ACTIONS(1339), + [anon_sym___stdcall] = ACTIONS(1339), + [anon_sym___fastcall] = ACTIONS(1339), + [anon_sym___thiscall] = ACTIONS(1339), + [anon_sym___vectorcall] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_signed] = ACTIONS(1339), + [anon_sym_unsigned] = ACTIONS(1339), + [anon_sym_long] = ACTIONS(1339), + [anon_sym_short] = ACTIONS(1339), + [anon_sym_static] = ACTIONS(1339), + [anon_sym_auto] = ACTIONS(1339), + [anon_sym_register] = ACTIONS(1339), + [anon_sym_inline] = ACTIONS(1339), + [anon_sym___inline] = ACTIONS(1339), + [anon_sym___inline__] = ACTIONS(1339), + [anon_sym___forceinline] = ACTIONS(1339), + [anon_sym_thread_local] = ACTIONS(1339), + [anon_sym___thread] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_constexpr] = ACTIONS(1339), + [anon_sym_volatile] = ACTIONS(1339), + [anon_sym_restrict] = ACTIONS(1339), + [anon_sym___restrict__] = ACTIONS(1339), + [anon_sym__Atomic] = ACTIONS(1339), + [anon_sym__Noreturn] = ACTIONS(1339), + [anon_sym_noreturn] = ACTIONS(1339), + [anon_sym_alignas] = ACTIONS(1339), + [anon_sym__Alignas] = ACTIONS(1339), + [sym_primitive_type] = ACTIONS(1339), + [anon_sym_enum] = ACTIONS(1339), + [anon_sym_struct] = ACTIONS(1339), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1339), + [anon_sym_case] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_do] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_goto] = ACTIONS(1339), + [anon_sym___try] = ACTIONS(1339), + [anon_sym___leave] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_sizeof] = ACTIONS(1339), + [anon_sym___alignof__] = ACTIONS(1339), + [anon_sym___alignof] = ACTIONS(1339), + [anon_sym__alignof] = ACTIONS(1339), + [anon_sym_alignof] = ACTIONS(1339), + [anon_sym__Alignof] = ACTIONS(1339), + [anon_sym_offsetof] = ACTIONS(1339), + [anon_sym__Generic] = ACTIONS(1339), + [anon_sym_asm] = ACTIONS(1339), + [anon_sym___asm__] = ACTIONS(1339), + [sym_number_literal] = ACTIONS(1341), + [anon_sym_L_SQUOTE] = ACTIONS(1341), + [anon_sym_u_SQUOTE] = ACTIONS(1341), + [anon_sym_U_SQUOTE] = ACTIONS(1341), + [anon_sym_u8_SQUOTE] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(1341), + [anon_sym_L_DQUOTE] = ACTIONS(1341), + [anon_sym_u_DQUOTE] = ACTIONS(1341), + [anon_sym_U_DQUOTE] = ACTIONS(1341), + [anon_sym_u8_DQUOTE] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym_true] = ACTIONS(1339), + [sym_false] = ACTIONS(1339), + [anon_sym_NULL] = ACTIONS(1339), + [anon_sym_nullptr] = ACTIONS(1339), [sym_comment] = ACTIONS(3), }, [308] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1180), - [aux_sym_preproc_include_token1] = ACTIONS(1180), - [aux_sym_preproc_def_token1] = ACTIONS(1180), - [aux_sym_preproc_if_token1] = ACTIONS(1180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1180), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1180), - [sym_preproc_directive] = ACTIONS(1180), - [anon_sym_LPAREN2] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1182), - [anon_sym_TILDE] = ACTIONS(1182), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_STAR] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1182), - [anon_sym_SEMI] = ACTIONS(1182), - [anon_sym___extension__] = ACTIONS(1180), - [anon_sym_typedef] = ACTIONS(1180), - [anon_sym_extern] = ACTIONS(1180), - [anon_sym___attribute__] = ACTIONS(1180), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1182), - [anon_sym___declspec] = ACTIONS(1180), - [anon_sym___cdecl] = ACTIONS(1180), - [anon_sym___clrcall] = ACTIONS(1180), - [anon_sym___stdcall] = ACTIONS(1180), - [anon_sym___fastcall] = ACTIONS(1180), - [anon_sym___thiscall] = ACTIONS(1180), - [anon_sym___vectorcall] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_signed] = ACTIONS(1180), - [anon_sym_unsigned] = ACTIONS(1180), - [anon_sym_long] = ACTIONS(1180), - [anon_sym_short] = ACTIONS(1180), - [anon_sym_static] = ACTIONS(1180), - [anon_sym_auto] = ACTIONS(1180), - [anon_sym_register] = ACTIONS(1180), - [anon_sym_inline] = ACTIONS(1180), - [anon_sym___inline] = ACTIONS(1180), - [anon_sym___inline__] = ACTIONS(1180), - [anon_sym___forceinline] = ACTIONS(1180), - [anon_sym_thread_local] = ACTIONS(1180), - [anon_sym___thread] = ACTIONS(1180), - [anon_sym_const] = ACTIONS(1180), - [anon_sym_constexpr] = ACTIONS(1180), - [anon_sym_volatile] = ACTIONS(1180), - [anon_sym_restrict] = ACTIONS(1180), - [anon_sym___restrict__] = ACTIONS(1180), - [anon_sym__Atomic] = ACTIONS(1180), - [anon_sym__Noreturn] = ACTIONS(1180), - [anon_sym_noreturn] = ACTIONS(1180), - [sym_primitive_type] = ACTIONS(1180), - [anon_sym_enum] = ACTIONS(1180), - [anon_sym_struct] = ACTIONS(1180), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_else] = ACTIONS(1180), - [anon_sym_switch] = ACTIONS(1180), - [anon_sym_case] = ACTIONS(1180), - [anon_sym_default] = ACTIONS(1180), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1180), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_break] = ACTIONS(1180), - [anon_sym_continue] = ACTIONS(1180), - [anon_sym_goto] = ACTIONS(1180), - [anon_sym___try] = ACTIONS(1180), - [anon_sym___leave] = ACTIONS(1180), - [anon_sym_DASH_DASH] = ACTIONS(1182), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [anon_sym_sizeof] = ACTIONS(1180), - [anon_sym___alignof__] = ACTIONS(1180), - [anon_sym___alignof] = ACTIONS(1180), - [anon_sym__alignof] = ACTIONS(1180), - [anon_sym_alignof] = ACTIONS(1180), - [anon_sym__Alignof] = ACTIONS(1180), - [anon_sym_offsetof] = ACTIONS(1180), - [anon_sym__Generic] = ACTIONS(1180), - [anon_sym_asm] = ACTIONS(1180), - [anon_sym___asm__] = ACTIONS(1180), - [sym_number_literal] = ACTIONS(1182), - [anon_sym_L_SQUOTE] = ACTIONS(1182), - [anon_sym_u_SQUOTE] = ACTIONS(1182), - [anon_sym_U_SQUOTE] = ACTIONS(1182), - [anon_sym_u8_SQUOTE] = ACTIONS(1182), - [anon_sym_SQUOTE] = ACTIONS(1182), - [anon_sym_L_DQUOTE] = ACTIONS(1182), - [anon_sym_u_DQUOTE] = ACTIONS(1182), - [anon_sym_U_DQUOTE] = ACTIONS(1182), - [anon_sym_u8_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1182), - [sym_true] = ACTIONS(1180), - [sym_false] = ACTIONS(1180), - [anon_sym_NULL] = ACTIONS(1180), - [anon_sym_nullptr] = ACTIONS(1180), + [sym_identifier] = ACTIONS(1347), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token2] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), + [sym_preproc_directive] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym___extension__] = ACTIONS(1347), + [anon_sym_typedef] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym___attribute__] = ACTIONS(1347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), + [anon_sym___declspec] = ACTIONS(1347), + [anon_sym___cdecl] = ACTIONS(1347), + [anon_sym___clrcall] = ACTIONS(1347), + [anon_sym___stdcall] = ACTIONS(1347), + [anon_sym___fastcall] = ACTIONS(1347), + [anon_sym___thiscall] = ACTIONS(1347), + [anon_sym___vectorcall] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_signed] = ACTIONS(1347), + [anon_sym_unsigned] = ACTIONS(1347), + [anon_sym_long] = ACTIONS(1347), + [anon_sym_short] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1347), + [anon_sym_auto] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_inline] = ACTIONS(1347), + [anon_sym___inline] = ACTIONS(1347), + [anon_sym___inline__] = ACTIONS(1347), + [anon_sym___forceinline] = ACTIONS(1347), + [anon_sym_thread_local] = ACTIONS(1347), + [anon_sym___thread] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_constexpr] = ACTIONS(1347), + [anon_sym_volatile] = ACTIONS(1347), + [anon_sym_restrict] = ACTIONS(1347), + [anon_sym___restrict__] = ACTIONS(1347), + [anon_sym__Atomic] = ACTIONS(1347), + [anon_sym__Noreturn] = ACTIONS(1347), + [anon_sym_noreturn] = ACTIONS(1347), + [anon_sym_alignas] = ACTIONS(1347), + [anon_sym__Alignas] = ACTIONS(1347), + [sym_primitive_type] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [anon_sym_case] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_goto] = ACTIONS(1347), + [anon_sym___try] = ACTIONS(1347), + [anon_sym___leave] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_sizeof] = ACTIONS(1347), + [anon_sym___alignof__] = ACTIONS(1347), + [anon_sym___alignof] = ACTIONS(1347), + [anon_sym__alignof] = ACTIONS(1347), + [anon_sym_alignof] = ACTIONS(1347), + [anon_sym__Alignof] = ACTIONS(1347), + [anon_sym_offsetof] = ACTIONS(1347), + [anon_sym__Generic] = ACTIONS(1347), + [anon_sym_asm] = ACTIONS(1347), + [anon_sym___asm__] = ACTIONS(1347), + [sym_number_literal] = ACTIONS(1349), + [anon_sym_L_SQUOTE] = ACTIONS(1349), + [anon_sym_u_SQUOTE] = ACTIONS(1349), + [anon_sym_U_SQUOTE] = ACTIONS(1349), + [anon_sym_u8_SQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [anon_sym_L_DQUOTE] = ACTIONS(1349), + [anon_sym_u_DQUOTE] = ACTIONS(1349), + [anon_sym_U_DQUOTE] = ACTIONS(1349), + [anon_sym_u8_DQUOTE] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym_true] = ACTIONS(1347), + [sym_false] = ACTIONS(1347), + [anon_sym_NULL] = ACTIONS(1347), + [anon_sym_nullptr] = ACTIONS(1347), [sym_comment] = ACTIONS(3), }, [309] = { - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token2] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym___extension__] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym___inline] = ACTIONS(1304), - [anon_sym___inline__] = ACTIONS(1304), - [anon_sym___forceinline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym___thread] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym___try] = ACTIONS(1304), - [anon_sym___leave] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym___alignof__] = ACTIONS(1304), - [anon_sym___alignof] = ACTIONS(1304), - [anon_sym__alignof] = ACTIONS(1304), - [anon_sym_alignof] = ACTIONS(1304), - [anon_sym__Alignof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), + [sym_identifier] = ACTIONS(1255), + [aux_sym_preproc_include_token1] = ACTIONS(1255), + [aux_sym_preproc_def_token1] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1255), + [aux_sym_preproc_if_token2] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), + [sym_preproc_directive] = ACTIONS(1255), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym___extension__] = ACTIONS(1255), + [anon_sym_typedef] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym___attribute__] = ACTIONS(1255), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1257), + [anon_sym___declspec] = ACTIONS(1255), + [anon_sym___cdecl] = ACTIONS(1255), + [anon_sym___clrcall] = ACTIONS(1255), + [anon_sym___stdcall] = ACTIONS(1255), + [anon_sym___fastcall] = ACTIONS(1255), + [anon_sym___thiscall] = ACTIONS(1255), + [anon_sym___vectorcall] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_signed] = ACTIONS(1255), + [anon_sym_unsigned] = ACTIONS(1255), + [anon_sym_long] = ACTIONS(1255), + [anon_sym_short] = ACTIONS(1255), + [anon_sym_static] = ACTIONS(1255), + [anon_sym_auto] = ACTIONS(1255), + [anon_sym_register] = ACTIONS(1255), + [anon_sym_inline] = ACTIONS(1255), + [anon_sym___inline] = ACTIONS(1255), + [anon_sym___inline__] = ACTIONS(1255), + [anon_sym___forceinline] = ACTIONS(1255), + [anon_sym_thread_local] = ACTIONS(1255), + [anon_sym___thread] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_constexpr] = ACTIONS(1255), + [anon_sym_volatile] = ACTIONS(1255), + [anon_sym_restrict] = ACTIONS(1255), + [anon_sym___restrict__] = ACTIONS(1255), + [anon_sym__Atomic] = ACTIONS(1255), + [anon_sym__Noreturn] = ACTIONS(1255), + [anon_sym_noreturn] = ACTIONS(1255), + [anon_sym_alignas] = ACTIONS(1255), + [anon_sym__Alignas] = ACTIONS(1255), + [sym_primitive_type] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_union] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_switch] = ACTIONS(1255), + [anon_sym_case] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_goto] = ACTIONS(1255), + [anon_sym___try] = ACTIONS(1255), + [anon_sym___leave] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(1255), + [anon_sym___alignof__] = ACTIONS(1255), + [anon_sym___alignof] = ACTIONS(1255), + [anon_sym__alignof] = ACTIONS(1255), + [anon_sym_alignof] = ACTIONS(1255), + [anon_sym__Alignof] = ACTIONS(1255), + [anon_sym_offsetof] = ACTIONS(1255), + [anon_sym__Generic] = ACTIONS(1255), + [anon_sym_asm] = ACTIONS(1255), + [anon_sym___asm__] = ACTIONS(1255), + [sym_number_literal] = ACTIONS(1257), + [anon_sym_L_SQUOTE] = ACTIONS(1257), + [anon_sym_u_SQUOTE] = ACTIONS(1257), + [anon_sym_U_SQUOTE] = ACTIONS(1257), + [anon_sym_u8_SQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_L_DQUOTE] = ACTIONS(1257), + [anon_sym_u_DQUOTE] = ACTIONS(1257), + [anon_sym_U_DQUOTE] = ACTIONS(1257), + [anon_sym_u8_DQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym_true] = ACTIONS(1255), + [sym_false] = ACTIONS(1255), + [anon_sym_NULL] = ACTIONS(1255), + [anon_sym_nullptr] = ACTIONS(1255), [sym_comment] = ACTIONS(3), }, [310] = { - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token2] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym___extension__] = ACTIONS(1288), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym___inline] = ACTIONS(1288), - [anon_sym___inline__] = ACTIONS(1288), - [anon_sym___forceinline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym___thread] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym___try] = ACTIONS(1288), - [anon_sym___leave] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym___alignof__] = ACTIONS(1288), - [anon_sym___alignof] = ACTIONS(1288), - [anon_sym__alignof] = ACTIONS(1288), - [anon_sym_alignof] = ACTIONS(1288), - [anon_sym__Alignof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), + [sym_identifier] = ACTIONS(1263), + [aux_sym_preproc_include_token1] = ACTIONS(1263), + [aux_sym_preproc_def_token1] = ACTIONS(1263), + [aux_sym_preproc_if_token1] = ACTIONS(1263), + [aux_sym_preproc_if_token2] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), + [sym_preproc_directive] = ACTIONS(1263), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym___extension__] = ACTIONS(1263), + [anon_sym_typedef] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym___attribute__] = ACTIONS(1263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), + [anon_sym___declspec] = ACTIONS(1263), + [anon_sym___cdecl] = ACTIONS(1263), + [anon_sym___clrcall] = ACTIONS(1263), + [anon_sym___stdcall] = ACTIONS(1263), + [anon_sym___fastcall] = ACTIONS(1263), + [anon_sym___thiscall] = ACTIONS(1263), + [anon_sym___vectorcall] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_signed] = ACTIONS(1263), + [anon_sym_unsigned] = ACTIONS(1263), + [anon_sym_long] = ACTIONS(1263), + [anon_sym_short] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_auto] = ACTIONS(1263), + [anon_sym_register] = ACTIONS(1263), + [anon_sym_inline] = ACTIONS(1263), + [anon_sym___inline] = ACTIONS(1263), + [anon_sym___inline__] = ACTIONS(1263), + [anon_sym___forceinline] = ACTIONS(1263), + [anon_sym_thread_local] = ACTIONS(1263), + [anon_sym___thread] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_constexpr] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym___restrict__] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym__Noreturn] = ACTIONS(1263), + [anon_sym_noreturn] = ACTIONS(1263), + [anon_sym_alignas] = ACTIONS(1263), + [anon_sym__Alignas] = ACTIONS(1263), + [sym_primitive_type] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_goto] = ACTIONS(1263), + [anon_sym___try] = ACTIONS(1263), + [anon_sym___leave] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_sizeof] = ACTIONS(1263), + [anon_sym___alignof__] = ACTIONS(1263), + [anon_sym___alignof] = ACTIONS(1263), + [anon_sym__alignof] = ACTIONS(1263), + [anon_sym_alignof] = ACTIONS(1263), + [anon_sym__Alignof] = ACTIONS(1263), + [anon_sym_offsetof] = ACTIONS(1263), + [anon_sym__Generic] = ACTIONS(1263), + [anon_sym_asm] = ACTIONS(1263), + [anon_sym___asm__] = ACTIONS(1263), + [sym_number_literal] = ACTIONS(1265), + [anon_sym_L_SQUOTE] = ACTIONS(1265), + [anon_sym_u_SQUOTE] = ACTIONS(1265), + [anon_sym_U_SQUOTE] = ACTIONS(1265), + [anon_sym_u8_SQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_L_DQUOTE] = ACTIONS(1265), + [anon_sym_u_DQUOTE] = ACTIONS(1265), + [anon_sym_U_DQUOTE] = ACTIONS(1265), + [anon_sym_u8_DQUOTE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_true] = ACTIONS(1263), + [sym_false] = ACTIONS(1263), + [anon_sym_NULL] = ACTIONS(1263), + [anon_sym_nullptr] = ACTIONS(1263), [sym_comment] = ACTIONS(3), }, [311] = { - [sym_attribute_declaration] = STATE(339), - [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_seh_try_statement] = STATE(156), - [sym_seh_leave_statement] = STATE(156), - [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1374), - [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(415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_case] = ACTIONS(429), - [anon_sym_default] = ACTIONS(431), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_return] = ACTIONS(439), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_goto] = ACTIONS(445), - [anon_sym___try] = ACTIONS(447), - [anon_sym___leave] = ACTIONS(449), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1331), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token2] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym___extension__] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym___attribute__] = ACTIONS(1331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym___inline] = ACTIONS(1331), + [anon_sym___inline__] = ACTIONS(1331), + [anon_sym___forceinline] = ACTIONS(1331), + [anon_sym_thread_local] = ACTIONS(1331), + [anon_sym___thread] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [anon_sym_alignas] = ACTIONS(1331), + [anon_sym__Alignas] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym___try] = ACTIONS(1331), + [anon_sym___leave] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1331), + [anon_sym___alignof__] = ACTIONS(1331), + [anon_sym___alignof] = ACTIONS(1331), + [anon_sym__alignof] = ACTIONS(1331), + [anon_sym_alignof] = ACTIONS(1331), + [anon_sym__Alignof] = ACTIONS(1331), + [anon_sym_offsetof] = ACTIONS(1331), + [anon_sym__Generic] = ACTIONS(1331), + [anon_sym_asm] = ACTIONS(1331), + [anon_sym___asm__] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_L_SQUOTE] = ACTIONS(1333), + [anon_sym_u_SQUOTE] = ACTIONS(1333), + [anon_sym_U_SQUOTE] = ACTIONS(1333), + [anon_sym_u8_SQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_L_DQUOTE] = ACTIONS(1333), + [anon_sym_u_DQUOTE] = ACTIONS(1333), + [anon_sym_U_DQUOTE] = ACTIONS(1333), + [anon_sym_u8_DQUOTE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [anon_sym_NULL] = ACTIONS(1331), + [anon_sym_nullptr] = ACTIONS(1331), [sym_comment] = ACTIONS(3), }, [312] = { - [sym_attribute_declaration] = STATE(339), - [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_seh_try_statement] = STATE(203), - [sym_seh_leave_statement] = STATE(203), - [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1374), - [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(415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_case] = ACTIONS(429), - [anon_sym_default] = ACTIONS(431), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_return] = ACTIONS(439), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_goto] = ACTIONS(445), - [anon_sym___try] = ACTIONS(447), - [anon_sym___leave] = ACTIONS(449), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1291), + [aux_sym_preproc_include_token1] = ACTIONS(1291), + [aux_sym_preproc_def_token1] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1291), + [aux_sym_preproc_if_token2] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1291), + [sym_preproc_directive] = ACTIONS(1291), + [anon_sym_LPAREN2] = ACTIONS(1293), + [anon_sym_BANG] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym___extension__] = ACTIONS(1291), + [anon_sym_typedef] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym___attribute__] = ACTIONS(1291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1293), + [anon_sym___declspec] = ACTIONS(1291), + [anon_sym___cdecl] = ACTIONS(1291), + [anon_sym___clrcall] = ACTIONS(1291), + [anon_sym___stdcall] = ACTIONS(1291), + [anon_sym___fastcall] = ACTIONS(1291), + [anon_sym___thiscall] = ACTIONS(1291), + [anon_sym___vectorcall] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_signed] = ACTIONS(1291), + [anon_sym_unsigned] = ACTIONS(1291), + [anon_sym_long] = ACTIONS(1291), + [anon_sym_short] = ACTIONS(1291), + [anon_sym_static] = ACTIONS(1291), + [anon_sym_auto] = ACTIONS(1291), + [anon_sym_register] = ACTIONS(1291), + [anon_sym_inline] = ACTIONS(1291), + [anon_sym___inline] = ACTIONS(1291), + [anon_sym___inline__] = ACTIONS(1291), + [anon_sym___forceinline] = ACTIONS(1291), + [anon_sym_thread_local] = ACTIONS(1291), + [anon_sym___thread] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_constexpr] = ACTIONS(1291), + [anon_sym_volatile] = ACTIONS(1291), + [anon_sym_restrict] = ACTIONS(1291), + [anon_sym___restrict__] = ACTIONS(1291), + [anon_sym__Atomic] = ACTIONS(1291), + [anon_sym__Noreturn] = ACTIONS(1291), + [anon_sym_noreturn] = ACTIONS(1291), + [anon_sym_alignas] = ACTIONS(1291), + [anon_sym__Alignas] = ACTIONS(1291), + [sym_primitive_type] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_switch] = ACTIONS(1291), + [anon_sym_case] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_do] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_goto] = ACTIONS(1291), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(1291), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_sizeof] = ACTIONS(1291), + [anon_sym___alignof__] = ACTIONS(1291), + [anon_sym___alignof] = ACTIONS(1291), + [anon_sym__alignof] = ACTIONS(1291), + [anon_sym_alignof] = ACTIONS(1291), + [anon_sym__Alignof] = ACTIONS(1291), + [anon_sym_offsetof] = ACTIONS(1291), + [anon_sym__Generic] = ACTIONS(1291), + [anon_sym_asm] = ACTIONS(1291), + [anon_sym___asm__] = ACTIONS(1291), + [sym_number_literal] = ACTIONS(1293), + [anon_sym_L_SQUOTE] = ACTIONS(1293), + [anon_sym_u_SQUOTE] = ACTIONS(1293), + [anon_sym_U_SQUOTE] = ACTIONS(1293), + [anon_sym_u8_SQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1293), + [anon_sym_L_DQUOTE] = ACTIONS(1293), + [anon_sym_u_DQUOTE] = ACTIONS(1293), + [anon_sym_U_DQUOTE] = ACTIONS(1293), + [anon_sym_u8_DQUOTE] = ACTIONS(1293), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_true] = ACTIONS(1291), + [sym_false] = ACTIONS(1291), + [anon_sym_NULL] = ACTIONS(1291), + [anon_sym_nullptr] = ACTIONS(1291), [sym_comment] = ACTIONS(3), }, [313] = { - [sym_attribute_declaration] = STATE(339), - [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_seh_try_statement] = STATE(200), - [sym_seh_leave_statement] = STATE(200), - [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1374), - [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(415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_case] = ACTIONS(429), - [anon_sym_default] = ACTIONS(431), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_return] = ACTIONS(439), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_goto] = ACTIONS(445), - [anon_sym___try] = ACTIONS(447), - [anon_sym___leave] = ACTIONS(449), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1291), + [aux_sym_preproc_include_token1] = ACTIONS(1291), + [aux_sym_preproc_def_token1] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1291), + [sym_preproc_directive] = ACTIONS(1291), + [anon_sym_LPAREN2] = ACTIONS(1293), + [anon_sym_BANG] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym___extension__] = ACTIONS(1291), + [anon_sym_typedef] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym___attribute__] = ACTIONS(1291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1293), + [anon_sym___declspec] = ACTIONS(1291), + [anon_sym___cdecl] = ACTIONS(1291), + [anon_sym___clrcall] = ACTIONS(1291), + [anon_sym___stdcall] = ACTIONS(1291), + [anon_sym___fastcall] = ACTIONS(1291), + [anon_sym___thiscall] = ACTIONS(1291), + [anon_sym___vectorcall] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_signed] = ACTIONS(1291), + [anon_sym_unsigned] = ACTIONS(1291), + [anon_sym_long] = ACTIONS(1291), + [anon_sym_short] = ACTIONS(1291), + [anon_sym_static] = ACTIONS(1291), + [anon_sym_auto] = ACTIONS(1291), + [anon_sym_register] = ACTIONS(1291), + [anon_sym_inline] = ACTIONS(1291), + [anon_sym___inline] = ACTIONS(1291), + [anon_sym___inline__] = ACTIONS(1291), + [anon_sym___forceinline] = ACTIONS(1291), + [anon_sym_thread_local] = ACTIONS(1291), + [anon_sym___thread] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_constexpr] = ACTIONS(1291), + [anon_sym_volatile] = ACTIONS(1291), + [anon_sym_restrict] = ACTIONS(1291), + [anon_sym___restrict__] = ACTIONS(1291), + [anon_sym__Atomic] = ACTIONS(1291), + [anon_sym__Noreturn] = ACTIONS(1291), + [anon_sym_noreturn] = ACTIONS(1291), + [anon_sym_alignas] = ACTIONS(1291), + [anon_sym__Alignas] = ACTIONS(1291), + [sym_primitive_type] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_switch] = ACTIONS(1291), + [anon_sym_case] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_do] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_goto] = ACTIONS(1291), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(1291), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_sizeof] = ACTIONS(1291), + [anon_sym___alignof__] = ACTIONS(1291), + [anon_sym___alignof] = ACTIONS(1291), + [anon_sym__alignof] = ACTIONS(1291), + [anon_sym_alignof] = ACTIONS(1291), + [anon_sym__Alignof] = ACTIONS(1291), + [anon_sym_offsetof] = ACTIONS(1291), + [anon_sym__Generic] = ACTIONS(1291), + [anon_sym_asm] = ACTIONS(1291), + [anon_sym___asm__] = ACTIONS(1291), + [sym_number_literal] = ACTIONS(1293), + [anon_sym_L_SQUOTE] = ACTIONS(1293), + [anon_sym_u_SQUOTE] = ACTIONS(1293), + [anon_sym_U_SQUOTE] = ACTIONS(1293), + [anon_sym_u8_SQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1293), + [anon_sym_L_DQUOTE] = ACTIONS(1293), + [anon_sym_u_DQUOTE] = ACTIONS(1293), + [anon_sym_U_DQUOTE] = ACTIONS(1293), + [anon_sym_u8_DQUOTE] = ACTIONS(1293), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_true] = ACTIONS(1291), + [sym_false] = ACTIONS(1291), + [anon_sym_NULL] = ACTIONS(1291), + [anon_sym_nullptr] = ACTIONS(1291), [sym_comment] = ACTIONS(3), }, [314] = { - [sym_attribute_declaration] = STATE(323), - [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_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym__expression] = STATE(1084), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(323), - [sym_identifier] = ACTIONS(1378), - [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(913), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [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___try] = ACTIONS(915), - [anon_sym___leave] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1263), + [aux_sym_preproc_include_token1] = ACTIONS(1263), + [aux_sym_preproc_def_token1] = ACTIONS(1263), + [aux_sym_preproc_if_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), + [sym_preproc_directive] = ACTIONS(1263), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym___extension__] = ACTIONS(1263), + [anon_sym_typedef] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym___attribute__] = ACTIONS(1263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), + [anon_sym___declspec] = ACTIONS(1263), + [anon_sym___cdecl] = ACTIONS(1263), + [anon_sym___clrcall] = ACTIONS(1263), + [anon_sym___stdcall] = ACTIONS(1263), + [anon_sym___fastcall] = ACTIONS(1263), + [anon_sym___thiscall] = ACTIONS(1263), + [anon_sym___vectorcall] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_signed] = ACTIONS(1263), + [anon_sym_unsigned] = ACTIONS(1263), + [anon_sym_long] = ACTIONS(1263), + [anon_sym_short] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_auto] = ACTIONS(1263), + [anon_sym_register] = ACTIONS(1263), + [anon_sym_inline] = ACTIONS(1263), + [anon_sym___inline] = ACTIONS(1263), + [anon_sym___inline__] = ACTIONS(1263), + [anon_sym___forceinline] = ACTIONS(1263), + [anon_sym_thread_local] = ACTIONS(1263), + [anon_sym___thread] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_constexpr] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym___restrict__] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym__Noreturn] = ACTIONS(1263), + [anon_sym_noreturn] = ACTIONS(1263), + [anon_sym_alignas] = ACTIONS(1263), + [anon_sym__Alignas] = ACTIONS(1263), + [sym_primitive_type] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_goto] = ACTIONS(1263), + [anon_sym___try] = ACTIONS(1263), + [anon_sym___leave] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_sizeof] = ACTIONS(1263), + [anon_sym___alignof__] = ACTIONS(1263), + [anon_sym___alignof] = ACTIONS(1263), + [anon_sym__alignof] = ACTIONS(1263), + [anon_sym_alignof] = ACTIONS(1263), + [anon_sym__Alignof] = ACTIONS(1263), + [anon_sym_offsetof] = ACTIONS(1263), + [anon_sym__Generic] = ACTIONS(1263), + [anon_sym_asm] = ACTIONS(1263), + [anon_sym___asm__] = ACTIONS(1263), + [sym_number_literal] = ACTIONS(1265), + [anon_sym_L_SQUOTE] = ACTIONS(1265), + [anon_sym_u_SQUOTE] = ACTIONS(1265), + [anon_sym_U_SQUOTE] = ACTIONS(1265), + [anon_sym_u8_SQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_L_DQUOTE] = ACTIONS(1265), + [anon_sym_u_DQUOTE] = ACTIONS(1265), + [anon_sym_U_DQUOTE] = ACTIONS(1265), + [anon_sym_u8_DQUOTE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_true] = ACTIONS(1263), + [sym_false] = ACTIONS(1263), + [anon_sym_NULL] = ACTIONS(1263), + [anon_sym_nullptr] = ACTIONS(1263), [sym_comment] = ACTIONS(3), }, [315] = { - [sym_attribute_declaration] = STATE(358), - [sym_compound_statement] = STATE(2002), - [sym_attributed_statement] = STATE(2002), - [sym_labeled_statement] = STATE(2002), - [sym_expression_statement] = STATE(2002), - [sym_if_statement] = STATE(2002), - [sym_switch_statement] = STATE(2002), - [sym_case_statement] = STATE(2002), - [sym_while_statement] = STATE(2002), - [sym_do_statement] = STATE(2002), - [sym_for_statement] = STATE(2002), - [sym_return_statement] = STATE(2002), - [sym_break_statement] = STATE(2002), - [sym_continue_statement] = STATE(2002), - [sym_goto_statement] = STATE(2002), - [sym_seh_try_statement] = STATE(2002), - [sym_seh_leave_statement] = STATE(2002), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1380), - [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(363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1077), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1079), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1083), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1311), + [aux_sym_preproc_include_token1] = ACTIONS(1311), + [aux_sym_preproc_def_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token1] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), + [sym_preproc_directive] = ACTIONS(1311), + [anon_sym_LPAREN2] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1313), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym___extension__] = ACTIONS(1311), + [anon_sym_typedef] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym___attribute__] = ACTIONS(1311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), + [anon_sym___declspec] = ACTIONS(1311), + [anon_sym___cdecl] = ACTIONS(1311), + [anon_sym___clrcall] = ACTIONS(1311), + [anon_sym___stdcall] = ACTIONS(1311), + [anon_sym___fastcall] = ACTIONS(1311), + [anon_sym___thiscall] = ACTIONS(1311), + [anon_sym___vectorcall] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_signed] = ACTIONS(1311), + [anon_sym_unsigned] = ACTIONS(1311), + [anon_sym_long] = ACTIONS(1311), + [anon_sym_short] = ACTIONS(1311), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_auto] = ACTIONS(1311), + [anon_sym_register] = ACTIONS(1311), + [anon_sym_inline] = ACTIONS(1311), + [anon_sym___inline] = ACTIONS(1311), + [anon_sym___inline__] = ACTIONS(1311), + [anon_sym___forceinline] = ACTIONS(1311), + [anon_sym_thread_local] = ACTIONS(1311), + [anon_sym___thread] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_constexpr] = ACTIONS(1311), + [anon_sym_volatile] = ACTIONS(1311), + [anon_sym_restrict] = ACTIONS(1311), + [anon_sym___restrict__] = ACTIONS(1311), + [anon_sym__Atomic] = ACTIONS(1311), + [anon_sym__Noreturn] = ACTIONS(1311), + [anon_sym_noreturn] = ACTIONS(1311), + [anon_sym_alignas] = ACTIONS(1311), + [anon_sym__Alignas] = ACTIONS(1311), + [sym_primitive_type] = ACTIONS(1311), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_switch] = ACTIONS(1311), + [anon_sym_case] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_goto] = ACTIONS(1311), + [anon_sym___try] = ACTIONS(1311), + [anon_sym___leave] = ACTIONS(1311), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_sizeof] = ACTIONS(1311), + [anon_sym___alignof__] = ACTIONS(1311), + [anon_sym___alignof] = ACTIONS(1311), + [anon_sym__alignof] = ACTIONS(1311), + [anon_sym_alignof] = ACTIONS(1311), + [anon_sym__Alignof] = ACTIONS(1311), + [anon_sym_offsetof] = ACTIONS(1311), + [anon_sym__Generic] = ACTIONS(1311), + [anon_sym_asm] = ACTIONS(1311), + [anon_sym___asm__] = ACTIONS(1311), + [sym_number_literal] = ACTIONS(1313), + [anon_sym_L_SQUOTE] = ACTIONS(1313), + [anon_sym_u_SQUOTE] = ACTIONS(1313), + [anon_sym_U_SQUOTE] = ACTIONS(1313), + [anon_sym_u8_SQUOTE] = ACTIONS(1313), + [anon_sym_SQUOTE] = ACTIONS(1313), + [anon_sym_L_DQUOTE] = ACTIONS(1313), + [anon_sym_u_DQUOTE] = ACTIONS(1313), + [anon_sym_U_DQUOTE] = ACTIONS(1313), + [anon_sym_u8_DQUOTE] = ACTIONS(1313), + [anon_sym_DQUOTE] = ACTIONS(1313), + [sym_true] = ACTIONS(1311), + [sym_false] = ACTIONS(1311), + [anon_sym_NULL] = ACTIONS(1311), + [anon_sym_nullptr] = ACTIONS(1311), [sym_comment] = ACTIONS(3), }, [316] = { - [sym_attribute_declaration] = STATE(316), - [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_seh_try_statement] = STATE(221), - [sym_seh_leave_statement] = STATE(221), - [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(316), - [sym_identifier] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_case] = ACTIONS(1416), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1431), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_goto] = ACTIONS(1440), - [anon_sym___try] = ACTIONS(1443), - [anon_sym___leave] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1455), - [anon_sym___alignof] = ACTIONS(1455), - [anon_sym__alignof] = ACTIONS(1455), - [anon_sym_alignof] = ACTIONS(1455), - [anon_sym__Alignof] = ACTIONS(1455), - [anon_sym_offsetof] = ACTIONS(1458), - [anon_sym__Generic] = ACTIONS(1461), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1467), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1473), - [anon_sym_u_DQUOTE] = ACTIONS(1473), - [anon_sym_U_DQUOTE] = ACTIONS(1473), - [anon_sym_u8_DQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1479), - [anon_sym_nullptr] = ACTIONS(1479), + [sym_identifier] = ACTIONS(1299), + [aux_sym_preproc_include_token1] = ACTIONS(1299), + [aux_sym_preproc_def_token1] = ACTIONS(1299), + [aux_sym_preproc_if_token1] = ACTIONS(1299), + [aux_sym_preproc_if_token2] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), + [sym_preproc_directive] = ACTIONS(1299), + [anon_sym_LPAREN2] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym___extension__] = ACTIONS(1299), + [anon_sym_typedef] = ACTIONS(1299), + [anon_sym_extern] = ACTIONS(1299), + [anon_sym___attribute__] = ACTIONS(1299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), + [anon_sym___declspec] = ACTIONS(1299), + [anon_sym___cdecl] = ACTIONS(1299), + [anon_sym___clrcall] = ACTIONS(1299), + [anon_sym___stdcall] = ACTIONS(1299), + [anon_sym___fastcall] = ACTIONS(1299), + [anon_sym___thiscall] = ACTIONS(1299), + [anon_sym___vectorcall] = ACTIONS(1299), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_signed] = ACTIONS(1299), + [anon_sym_unsigned] = ACTIONS(1299), + [anon_sym_long] = ACTIONS(1299), + [anon_sym_short] = ACTIONS(1299), + [anon_sym_static] = ACTIONS(1299), + [anon_sym_auto] = ACTIONS(1299), + [anon_sym_register] = ACTIONS(1299), + [anon_sym_inline] = ACTIONS(1299), + [anon_sym___inline] = ACTIONS(1299), + [anon_sym___inline__] = ACTIONS(1299), + [anon_sym___forceinline] = ACTIONS(1299), + [anon_sym_thread_local] = ACTIONS(1299), + [anon_sym___thread] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_constexpr] = ACTIONS(1299), + [anon_sym_volatile] = ACTIONS(1299), + [anon_sym_restrict] = ACTIONS(1299), + [anon_sym___restrict__] = ACTIONS(1299), + [anon_sym__Atomic] = ACTIONS(1299), + [anon_sym__Noreturn] = ACTIONS(1299), + [anon_sym_noreturn] = ACTIONS(1299), + [anon_sym_alignas] = ACTIONS(1299), + [anon_sym__Alignas] = ACTIONS(1299), + [sym_primitive_type] = ACTIONS(1299), + [anon_sym_enum] = ACTIONS(1299), + [anon_sym_struct] = ACTIONS(1299), + [anon_sym_union] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_switch] = ACTIONS(1299), + [anon_sym_case] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1299), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_do] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1299), + [anon_sym_break] = ACTIONS(1299), + [anon_sym_continue] = ACTIONS(1299), + [anon_sym_goto] = ACTIONS(1299), + [anon_sym___try] = ACTIONS(1299), + [anon_sym___leave] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1299), + [anon_sym___alignof__] = ACTIONS(1299), + [anon_sym___alignof] = ACTIONS(1299), + [anon_sym__alignof] = ACTIONS(1299), + [anon_sym_alignof] = ACTIONS(1299), + [anon_sym__Alignof] = ACTIONS(1299), + [anon_sym_offsetof] = ACTIONS(1299), + [anon_sym__Generic] = ACTIONS(1299), + [anon_sym_asm] = ACTIONS(1299), + [anon_sym___asm__] = ACTIONS(1299), + [sym_number_literal] = ACTIONS(1301), + [anon_sym_L_SQUOTE] = ACTIONS(1301), + [anon_sym_u_SQUOTE] = ACTIONS(1301), + [anon_sym_U_SQUOTE] = ACTIONS(1301), + [anon_sym_u8_SQUOTE] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1301), + [anon_sym_L_DQUOTE] = ACTIONS(1301), + [anon_sym_u_DQUOTE] = ACTIONS(1301), + [anon_sym_U_DQUOTE] = ACTIONS(1301), + [anon_sym_u8_DQUOTE] = ACTIONS(1301), + [anon_sym_DQUOTE] = ACTIONS(1301), + [sym_true] = ACTIONS(1299), + [sym_false] = ACTIONS(1299), + [anon_sym_NULL] = ACTIONS(1299), + [anon_sym_nullptr] = ACTIONS(1299), [sym_comment] = ACTIONS(3), }, [317] = { - [sym_attribute_declaration] = STATE(358), - [sym_compound_statement] = STATE(1989), - [sym_attributed_statement] = STATE(1989), - [sym_labeled_statement] = STATE(1989), - [sym_expression_statement] = STATE(1989), - [sym_if_statement] = STATE(1989), - [sym_switch_statement] = STATE(1989), - [sym_case_statement] = STATE(1989), - [sym_while_statement] = STATE(1989), - [sym_do_statement] = STATE(1989), - [sym_for_statement] = STATE(1989), - [sym_return_statement] = STATE(1989), - [sym_break_statement] = STATE(1989), - [sym_continue_statement] = STATE(1989), - [sym_goto_statement] = STATE(1989), - [sym_seh_try_statement] = STATE(1989), - [sym_seh_leave_statement] = STATE(1989), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1380), - [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(363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1077), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1079), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1083), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1259), + [aux_sym_preproc_include_token1] = ACTIONS(1259), + [aux_sym_preproc_def_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token2] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), + [sym_preproc_directive] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym___extension__] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), + [anon_sym___declspec] = ACTIONS(1259), + [anon_sym___cdecl] = ACTIONS(1259), + [anon_sym___clrcall] = ACTIONS(1259), + [anon_sym___stdcall] = ACTIONS(1259), + [anon_sym___fastcall] = ACTIONS(1259), + [anon_sym___thiscall] = ACTIONS(1259), + [anon_sym___vectorcall] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_inline] = ACTIONS(1259), + [anon_sym___inline] = ACTIONS(1259), + [anon_sym___inline__] = ACTIONS(1259), + [anon_sym___forceinline] = ACTIONS(1259), + [anon_sym_thread_local] = ACTIONS(1259), + [anon_sym___thread] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_constexpr] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym___restrict__] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [anon_sym__Noreturn] = ACTIONS(1259), + [anon_sym_noreturn] = ACTIONS(1259), + [anon_sym_alignas] = ACTIONS(1259), + [anon_sym__Alignas] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [anon_sym_case] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_goto] = ACTIONS(1259), + [anon_sym___try] = ACTIONS(1259), + [anon_sym___leave] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_sizeof] = ACTIONS(1259), + [anon_sym___alignof__] = ACTIONS(1259), + [anon_sym___alignof] = ACTIONS(1259), + [anon_sym__alignof] = ACTIONS(1259), + [anon_sym_alignof] = ACTIONS(1259), + [anon_sym__Alignof] = ACTIONS(1259), + [anon_sym_offsetof] = ACTIONS(1259), + [anon_sym__Generic] = ACTIONS(1259), + [anon_sym_asm] = ACTIONS(1259), + [anon_sym___asm__] = ACTIONS(1259), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_L_SQUOTE] = ACTIONS(1261), + [anon_sym_u_SQUOTE] = ACTIONS(1261), + [anon_sym_U_SQUOTE] = ACTIONS(1261), + [anon_sym_u8_SQUOTE] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_L_DQUOTE] = ACTIONS(1261), + [anon_sym_u_DQUOTE] = ACTIONS(1261), + [anon_sym_U_DQUOTE] = ACTIONS(1261), + [anon_sym_u8_DQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_true] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [anon_sym_NULL] = ACTIONS(1259), + [anon_sym_nullptr] = ACTIONS(1259), [sym_comment] = ACTIONS(3), }, [318] = { - [sym_attribute_declaration] = STATE(339), - [sym_compound_statement] = STATE(169), - [sym_attributed_statement] = STATE(169), - [sym_labeled_statement] = STATE(169), - [sym_expression_statement] = STATE(169), - [sym_if_statement] = STATE(169), - [sym_switch_statement] = STATE(169), - [sym_case_statement] = STATE(169), - [sym_while_statement] = STATE(169), - [sym_do_statement] = STATE(169), - [sym_for_statement] = STATE(169), - [sym_return_statement] = STATE(169), - [sym_break_statement] = STATE(169), - [sym_continue_statement] = STATE(169), - [sym_goto_statement] = STATE(169), - [sym_seh_try_statement] = STATE(169), - [sym_seh_leave_statement] = STATE(169), - [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1374), - [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(415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_case] = ACTIONS(429), - [anon_sym_default] = ACTIONS(431), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_return] = ACTIONS(439), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_goto] = ACTIONS(445), - [anon_sym___try] = ACTIONS(447), - [anon_sym___leave] = ACTIONS(449), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1331), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym___extension__] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym___attribute__] = ACTIONS(1331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym___inline] = ACTIONS(1331), + [anon_sym___inline__] = ACTIONS(1331), + [anon_sym___forceinline] = ACTIONS(1331), + [anon_sym_thread_local] = ACTIONS(1331), + [anon_sym___thread] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [anon_sym_alignas] = ACTIONS(1331), + [anon_sym__Alignas] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym___try] = ACTIONS(1331), + [anon_sym___leave] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1331), + [anon_sym___alignof__] = ACTIONS(1331), + [anon_sym___alignof] = ACTIONS(1331), + [anon_sym__alignof] = ACTIONS(1331), + [anon_sym_alignof] = ACTIONS(1331), + [anon_sym__Alignof] = ACTIONS(1331), + [anon_sym_offsetof] = ACTIONS(1331), + [anon_sym__Generic] = ACTIONS(1331), + [anon_sym_asm] = ACTIONS(1331), + [anon_sym___asm__] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_L_SQUOTE] = ACTIONS(1333), + [anon_sym_u_SQUOTE] = ACTIONS(1333), + [anon_sym_U_SQUOTE] = ACTIONS(1333), + [anon_sym_u8_SQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_L_DQUOTE] = ACTIONS(1333), + [anon_sym_u_DQUOTE] = ACTIONS(1333), + [anon_sym_U_DQUOTE] = ACTIONS(1333), + [anon_sym_u8_DQUOTE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [anon_sym_NULL] = ACTIONS(1331), + [anon_sym_nullptr] = ACTIONS(1331), [sym_comment] = ACTIONS(3), }, [319] = { - [sym_identifier] = ACTIONS(1256), - [aux_sym_preproc_include_token1] = ACTIONS(1256), - [aux_sym_preproc_def_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token2] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), - [sym_preproc_directive] = ACTIONS(1256), - [anon_sym_LPAREN2] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym___extension__] = ACTIONS(1256), - [anon_sym_typedef] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym___attribute__] = ACTIONS(1256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), - [anon_sym___declspec] = ACTIONS(1256), - [anon_sym___cdecl] = ACTIONS(1256), - [anon_sym___clrcall] = ACTIONS(1256), - [anon_sym___stdcall] = ACTIONS(1256), - [anon_sym___fastcall] = ACTIONS(1256), - [anon_sym___thiscall] = ACTIONS(1256), - [anon_sym___vectorcall] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = ACTIONS(1256), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_auto] = ACTIONS(1256), - [anon_sym_register] = ACTIONS(1256), - [anon_sym_inline] = ACTIONS(1256), - [anon_sym___inline] = ACTIONS(1256), - [anon_sym___inline__] = ACTIONS(1256), - [anon_sym___forceinline] = ACTIONS(1256), - [anon_sym_thread_local] = ACTIONS(1256), - [anon_sym___thread] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_constexpr] = ACTIONS(1256), - [anon_sym_volatile] = ACTIONS(1256), - [anon_sym_restrict] = ACTIONS(1256), - [anon_sym___restrict__] = ACTIONS(1256), - [anon_sym__Atomic] = ACTIONS(1256), - [anon_sym__Noreturn] = ACTIONS(1256), - [anon_sym_noreturn] = ACTIONS(1256), - [sym_primitive_type] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_goto] = ACTIONS(1256), - [anon_sym___try] = ACTIONS(1256), - [anon_sym___leave] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_sizeof] = ACTIONS(1256), - [anon_sym___alignof__] = ACTIONS(1256), - [anon_sym___alignof] = ACTIONS(1256), - [anon_sym__alignof] = ACTIONS(1256), - [anon_sym_alignof] = ACTIONS(1256), - [anon_sym__Alignof] = ACTIONS(1256), - [anon_sym_offsetof] = ACTIONS(1256), - [anon_sym__Generic] = ACTIONS(1256), - [anon_sym_asm] = ACTIONS(1256), - [anon_sym___asm__] = ACTIONS(1256), - [sym_number_literal] = ACTIONS(1258), - [anon_sym_L_SQUOTE] = ACTIONS(1258), - [anon_sym_u_SQUOTE] = ACTIONS(1258), - [anon_sym_U_SQUOTE] = ACTIONS(1258), - [anon_sym_u8_SQUOTE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_L_DQUOTE] = ACTIONS(1258), - [anon_sym_u_DQUOTE] = ACTIONS(1258), - [anon_sym_U_DQUOTE] = ACTIONS(1258), - [anon_sym_u8_DQUOTE] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_NULL] = ACTIONS(1256), - [anon_sym_nullptr] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1271), + [aux_sym_preproc_include_token1] = ACTIONS(1271), + [aux_sym_preproc_def_token1] = ACTIONS(1271), + [aux_sym_preproc_if_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1271), + [sym_preproc_directive] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym___extension__] = ACTIONS(1271), + [anon_sym_typedef] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym___attribute__] = ACTIONS(1271), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1273), + [anon_sym___declspec] = ACTIONS(1271), + [anon_sym___cdecl] = ACTIONS(1271), + [anon_sym___clrcall] = ACTIONS(1271), + [anon_sym___stdcall] = ACTIONS(1271), + [anon_sym___fastcall] = ACTIONS(1271), + [anon_sym___thiscall] = ACTIONS(1271), + [anon_sym___vectorcall] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1271), + [anon_sym_unsigned] = ACTIONS(1271), + [anon_sym_long] = ACTIONS(1271), + [anon_sym_short] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_auto] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_inline] = ACTIONS(1271), + [anon_sym___inline] = ACTIONS(1271), + [anon_sym___inline__] = ACTIONS(1271), + [anon_sym___forceinline] = ACTIONS(1271), + [anon_sym_thread_local] = ACTIONS(1271), + [anon_sym___thread] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_constexpr] = ACTIONS(1271), + [anon_sym_volatile] = ACTIONS(1271), + [anon_sym_restrict] = ACTIONS(1271), + [anon_sym___restrict__] = ACTIONS(1271), + [anon_sym__Atomic] = ACTIONS(1271), + [anon_sym__Noreturn] = ACTIONS(1271), + [anon_sym_noreturn] = ACTIONS(1271), + [anon_sym_alignas] = ACTIONS(1271), + [anon_sym__Alignas] = ACTIONS(1271), + [sym_primitive_type] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_goto] = ACTIONS(1271), + [anon_sym___try] = ACTIONS(1271), + [anon_sym___leave] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1271), + [anon_sym___alignof__] = ACTIONS(1271), + [anon_sym___alignof] = ACTIONS(1271), + [anon_sym__alignof] = ACTIONS(1271), + [anon_sym_alignof] = ACTIONS(1271), + [anon_sym__Alignof] = ACTIONS(1271), + [anon_sym_offsetof] = ACTIONS(1271), + [anon_sym__Generic] = ACTIONS(1271), + [anon_sym_asm] = ACTIONS(1271), + [anon_sym___asm__] = ACTIONS(1271), + [sym_number_literal] = ACTIONS(1273), + [anon_sym_L_SQUOTE] = ACTIONS(1273), + [anon_sym_u_SQUOTE] = ACTIONS(1273), + [anon_sym_U_SQUOTE] = ACTIONS(1273), + [anon_sym_u8_SQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1273), + [anon_sym_L_DQUOTE] = ACTIONS(1273), + [anon_sym_u_DQUOTE] = ACTIONS(1273), + [anon_sym_U_DQUOTE] = ACTIONS(1273), + [anon_sym_u8_DQUOTE] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_true] = ACTIONS(1271), + [sym_false] = ACTIONS(1271), + [anon_sym_NULL] = ACTIONS(1271), + [anon_sym_nullptr] = ACTIONS(1271), [sym_comment] = ACTIONS(3), }, [320] = { - [sym_attribute_declaration] = STATE(339), - [sym_compound_statement] = STATE(167), - [sym_attributed_statement] = STATE(166), - [sym_labeled_statement] = STATE(165), - [sym_expression_statement] = STATE(164), - [sym_if_statement] = STATE(163), - [sym_switch_statement] = STATE(296), - [sym_case_statement] = STATE(188), - [sym_while_statement] = STATE(176), - [sym_do_statement] = STATE(204), - [sym_for_statement] = STATE(207), - [sym_return_statement] = STATE(209), - [sym_break_statement] = STATE(211), - [sym_continue_statement] = STATE(227), - [sym_goto_statement] = STATE(230), - [sym_seh_try_statement] = STATE(231), - [sym_seh_leave_statement] = STATE(232), - [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1374), - [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(415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_case] = ACTIONS(429), - [anon_sym_default] = ACTIONS(431), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_return] = ACTIONS(439), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_goto] = ACTIONS(445), - [anon_sym___try] = ACTIONS(447), - [anon_sym___leave] = ACTIONS(449), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1255), + [aux_sym_preproc_include_token1] = ACTIONS(1255), + [aux_sym_preproc_def_token1] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), + [sym_preproc_directive] = ACTIONS(1255), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym___extension__] = ACTIONS(1255), + [anon_sym_typedef] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym___attribute__] = ACTIONS(1255), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1257), + [anon_sym___declspec] = ACTIONS(1255), + [anon_sym___cdecl] = ACTIONS(1255), + [anon_sym___clrcall] = ACTIONS(1255), + [anon_sym___stdcall] = ACTIONS(1255), + [anon_sym___fastcall] = ACTIONS(1255), + [anon_sym___thiscall] = ACTIONS(1255), + [anon_sym___vectorcall] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_signed] = ACTIONS(1255), + [anon_sym_unsigned] = ACTIONS(1255), + [anon_sym_long] = ACTIONS(1255), + [anon_sym_short] = ACTIONS(1255), + [anon_sym_static] = ACTIONS(1255), + [anon_sym_auto] = ACTIONS(1255), + [anon_sym_register] = ACTIONS(1255), + [anon_sym_inline] = ACTIONS(1255), + [anon_sym___inline] = ACTIONS(1255), + [anon_sym___inline__] = ACTIONS(1255), + [anon_sym___forceinline] = ACTIONS(1255), + [anon_sym_thread_local] = ACTIONS(1255), + [anon_sym___thread] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_constexpr] = ACTIONS(1255), + [anon_sym_volatile] = ACTIONS(1255), + [anon_sym_restrict] = ACTIONS(1255), + [anon_sym___restrict__] = ACTIONS(1255), + [anon_sym__Atomic] = ACTIONS(1255), + [anon_sym__Noreturn] = ACTIONS(1255), + [anon_sym_noreturn] = ACTIONS(1255), + [anon_sym_alignas] = ACTIONS(1255), + [anon_sym__Alignas] = ACTIONS(1255), + [sym_primitive_type] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_union] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_switch] = ACTIONS(1255), + [anon_sym_case] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_goto] = ACTIONS(1255), + [anon_sym___try] = ACTIONS(1255), + [anon_sym___leave] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(1255), + [anon_sym___alignof__] = ACTIONS(1255), + [anon_sym___alignof] = ACTIONS(1255), + [anon_sym__alignof] = ACTIONS(1255), + [anon_sym_alignof] = ACTIONS(1255), + [anon_sym__Alignof] = ACTIONS(1255), + [anon_sym_offsetof] = ACTIONS(1255), + [anon_sym__Generic] = ACTIONS(1255), + [anon_sym_asm] = ACTIONS(1255), + [anon_sym___asm__] = ACTIONS(1255), + [sym_number_literal] = ACTIONS(1257), + [anon_sym_L_SQUOTE] = ACTIONS(1257), + [anon_sym_u_SQUOTE] = ACTIONS(1257), + [anon_sym_U_SQUOTE] = ACTIONS(1257), + [anon_sym_u8_SQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_L_DQUOTE] = ACTIONS(1257), + [anon_sym_u_DQUOTE] = ACTIONS(1257), + [anon_sym_U_DQUOTE] = ACTIONS(1257), + [anon_sym_u8_DQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym_true] = ACTIONS(1255), + [sym_false] = ACTIONS(1255), + [anon_sym_NULL] = ACTIONS(1255), + [anon_sym_nullptr] = ACTIONS(1255), [sym_comment] = ACTIONS(3), }, [321] = { - [sym_identifier] = ACTIONS(1260), - [aux_sym_preproc_include_token1] = ACTIONS(1260), - [aux_sym_preproc_def_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token2] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), - [sym_preproc_directive] = ACTIONS(1260), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym___extension__] = ACTIONS(1260), - [anon_sym_typedef] = ACTIONS(1260), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym___attribute__] = ACTIONS(1260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), - [anon_sym___declspec] = ACTIONS(1260), - [anon_sym___cdecl] = ACTIONS(1260), - [anon_sym___clrcall] = ACTIONS(1260), - [anon_sym___stdcall] = ACTIONS(1260), - [anon_sym___fastcall] = ACTIONS(1260), - [anon_sym___thiscall] = ACTIONS(1260), - [anon_sym___vectorcall] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_auto] = ACTIONS(1260), - [anon_sym_register] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), - [anon_sym___inline] = ACTIONS(1260), - [anon_sym___inline__] = ACTIONS(1260), - [anon_sym___forceinline] = ACTIONS(1260), - [anon_sym_thread_local] = ACTIONS(1260), - [anon_sym___thread] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_constexpr] = ACTIONS(1260), - [anon_sym_volatile] = ACTIONS(1260), - [anon_sym_restrict] = ACTIONS(1260), - [anon_sym___restrict__] = ACTIONS(1260), - [anon_sym__Atomic] = ACTIONS(1260), - [anon_sym__Noreturn] = ACTIONS(1260), - [anon_sym_noreturn] = ACTIONS(1260), - [sym_primitive_type] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [anon_sym_case] = ACTIONS(1260), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [anon_sym___try] = ACTIONS(1260), - [anon_sym___leave] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_sizeof] = ACTIONS(1260), - [anon_sym___alignof__] = ACTIONS(1260), - [anon_sym___alignof] = ACTIONS(1260), - [anon_sym__alignof] = ACTIONS(1260), - [anon_sym_alignof] = ACTIONS(1260), - [anon_sym__Alignof] = ACTIONS(1260), - [anon_sym_offsetof] = ACTIONS(1260), - [anon_sym__Generic] = ACTIONS(1260), - [anon_sym_asm] = ACTIONS(1260), - [anon_sym___asm__] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_L_SQUOTE] = ACTIONS(1262), - [anon_sym_u_SQUOTE] = ACTIONS(1262), - [anon_sym_U_SQUOTE] = ACTIONS(1262), - [anon_sym_u8_SQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_L_DQUOTE] = ACTIONS(1262), - [anon_sym_u_DQUOTE] = ACTIONS(1262), - [anon_sym_U_DQUOTE] = ACTIONS(1262), - [anon_sym_u8_DQUOTE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym_true] = ACTIONS(1260), - [sym_false] = ACTIONS(1260), - [anon_sym_NULL] = ACTIONS(1260), - [anon_sym_nullptr] = ACTIONS(1260), + [sym_identifier] = ACTIONS(1303), + [aux_sym_preproc_include_token1] = ACTIONS(1303), + [aux_sym_preproc_def_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), + [sym_preproc_directive] = ACTIONS(1303), + [anon_sym_LPAREN2] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_TILDE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym___extension__] = ACTIONS(1303), + [anon_sym_typedef] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym___attribute__] = ACTIONS(1303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1305), + [anon_sym___declspec] = ACTIONS(1303), + [anon_sym___cdecl] = ACTIONS(1303), + [anon_sym___clrcall] = ACTIONS(1303), + [anon_sym___stdcall] = ACTIONS(1303), + [anon_sym___fastcall] = ACTIONS(1303), + [anon_sym___thiscall] = ACTIONS(1303), + [anon_sym___vectorcall] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1305), + [anon_sym_signed] = ACTIONS(1303), + [anon_sym_unsigned] = ACTIONS(1303), + [anon_sym_long] = ACTIONS(1303), + [anon_sym_short] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_auto] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_inline] = ACTIONS(1303), + [anon_sym___inline] = ACTIONS(1303), + [anon_sym___inline__] = ACTIONS(1303), + [anon_sym___forceinline] = ACTIONS(1303), + [anon_sym_thread_local] = ACTIONS(1303), + [anon_sym___thread] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_constexpr] = ACTIONS(1303), + [anon_sym_volatile] = ACTIONS(1303), + [anon_sym_restrict] = ACTIONS(1303), + [anon_sym___restrict__] = ACTIONS(1303), + [anon_sym__Atomic] = ACTIONS(1303), + [anon_sym__Noreturn] = ACTIONS(1303), + [anon_sym_noreturn] = ACTIONS(1303), + [anon_sym_alignas] = ACTIONS(1303), + [anon_sym__Alignas] = ACTIONS(1303), + [sym_primitive_type] = ACTIONS(1303), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_switch] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_goto] = ACTIONS(1303), + [anon_sym___try] = ACTIONS(1303), + [anon_sym___leave] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1305), + [anon_sym_PLUS_PLUS] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1303), + [anon_sym___alignof__] = ACTIONS(1303), + [anon_sym___alignof] = ACTIONS(1303), + [anon_sym__alignof] = ACTIONS(1303), + [anon_sym_alignof] = ACTIONS(1303), + [anon_sym__Alignof] = ACTIONS(1303), + [anon_sym_offsetof] = ACTIONS(1303), + [anon_sym__Generic] = ACTIONS(1303), + [anon_sym_asm] = ACTIONS(1303), + [anon_sym___asm__] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(1305), + [anon_sym_L_SQUOTE] = ACTIONS(1305), + [anon_sym_u_SQUOTE] = ACTIONS(1305), + [anon_sym_U_SQUOTE] = ACTIONS(1305), + [anon_sym_u8_SQUOTE] = ACTIONS(1305), + [anon_sym_SQUOTE] = ACTIONS(1305), + [anon_sym_L_DQUOTE] = ACTIONS(1305), + [anon_sym_u_DQUOTE] = ACTIONS(1305), + [anon_sym_U_DQUOTE] = ACTIONS(1305), + [anon_sym_u8_DQUOTE] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [anon_sym_NULL] = ACTIONS(1303), + [anon_sym_nullptr] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, [322] = { - [sym_identifier] = ACTIONS(1264), - [aux_sym_preproc_include_token1] = ACTIONS(1264), - [aux_sym_preproc_def_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token2] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), - [sym_preproc_directive] = ACTIONS(1264), - [anon_sym_LPAREN2] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym___extension__] = ACTIONS(1264), - [anon_sym_typedef] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym___attribute__] = ACTIONS(1264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), - [anon_sym___declspec] = ACTIONS(1264), - [anon_sym___cdecl] = ACTIONS(1264), - [anon_sym___clrcall] = ACTIONS(1264), - [anon_sym___stdcall] = ACTIONS(1264), - [anon_sym___fastcall] = ACTIONS(1264), - [anon_sym___thiscall] = ACTIONS(1264), - [anon_sym___vectorcall] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_auto] = ACTIONS(1264), - [anon_sym_register] = ACTIONS(1264), - [anon_sym_inline] = ACTIONS(1264), - [anon_sym___inline] = ACTIONS(1264), - [anon_sym___inline__] = ACTIONS(1264), - [anon_sym___forceinline] = ACTIONS(1264), - [anon_sym_thread_local] = ACTIONS(1264), - [anon_sym___thread] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_constexpr] = ACTIONS(1264), - [anon_sym_volatile] = ACTIONS(1264), - [anon_sym_restrict] = ACTIONS(1264), - [anon_sym___restrict__] = ACTIONS(1264), - [anon_sym__Atomic] = ACTIONS(1264), - [anon_sym__Noreturn] = ACTIONS(1264), - [anon_sym_noreturn] = ACTIONS(1264), - [sym_primitive_type] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_switch] = ACTIONS(1264), - [anon_sym_case] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_do] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_goto] = ACTIONS(1264), - [anon_sym___try] = ACTIONS(1264), - [anon_sym___leave] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_sizeof] = ACTIONS(1264), - [anon_sym___alignof__] = ACTIONS(1264), - [anon_sym___alignof] = ACTIONS(1264), - [anon_sym__alignof] = ACTIONS(1264), - [anon_sym_alignof] = ACTIONS(1264), - [anon_sym__Alignof] = ACTIONS(1264), - [anon_sym_offsetof] = ACTIONS(1264), - [anon_sym__Generic] = ACTIONS(1264), - [anon_sym_asm] = ACTIONS(1264), - [anon_sym___asm__] = ACTIONS(1264), - [sym_number_literal] = ACTIONS(1266), - [anon_sym_L_SQUOTE] = ACTIONS(1266), - [anon_sym_u_SQUOTE] = ACTIONS(1266), - [anon_sym_U_SQUOTE] = ACTIONS(1266), - [anon_sym_u8_SQUOTE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_L_DQUOTE] = ACTIONS(1266), - [anon_sym_u_DQUOTE] = ACTIONS(1266), - [anon_sym_U_DQUOTE] = ACTIONS(1266), - [anon_sym_u8_DQUOTE] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_true] = ACTIONS(1264), - [sym_false] = ACTIONS(1264), - [anon_sym_NULL] = ACTIONS(1264), - [anon_sym_nullptr] = ACTIONS(1264), + [sym_identifier] = ACTIONS(1319), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token2] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), + [sym_preproc_directive] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym___extension__] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym___attribute__] = ACTIONS(1319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___cdecl] = ACTIONS(1319), + [anon_sym___clrcall] = ACTIONS(1319), + [anon_sym___stdcall] = ACTIONS(1319), + [anon_sym___fastcall] = ACTIONS(1319), + [anon_sym___thiscall] = ACTIONS(1319), + [anon_sym___vectorcall] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1319), + [anon_sym_unsigned] = ACTIONS(1319), + [anon_sym_long] = ACTIONS(1319), + [anon_sym_short] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_auto] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1319), + [anon_sym___inline] = ACTIONS(1319), + [anon_sym___inline__] = ACTIONS(1319), + [anon_sym___forceinline] = ACTIONS(1319), + [anon_sym_thread_local] = ACTIONS(1319), + [anon_sym___thread] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_constexpr] = ACTIONS(1319), + [anon_sym_volatile] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1319), + [anon_sym___restrict__] = ACTIONS(1319), + [anon_sym__Atomic] = ACTIONS(1319), + [anon_sym__Noreturn] = ACTIONS(1319), + [anon_sym_noreturn] = ACTIONS(1319), + [anon_sym_alignas] = ACTIONS(1319), + [anon_sym__Alignas] = ACTIONS(1319), + [sym_primitive_type] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_case] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_goto] = ACTIONS(1319), + [anon_sym___try] = ACTIONS(1319), + [anon_sym___leave] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_sizeof] = ACTIONS(1319), + [anon_sym___alignof__] = ACTIONS(1319), + [anon_sym___alignof] = ACTIONS(1319), + [anon_sym__alignof] = ACTIONS(1319), + [anon_sym_alignof] = ACTIONS(1319), + [anon_sym__Alignof] = ACTIONS(1319), + [anon_sym_offsetof] = ACTIONS(1319), + [anon_sym__Generic] = ACTIONS(1319), + [anon_sym_asm] = ACTIONS(1319), + [anon_sym___asm__] = ACTIONS(1319), + [sym_number_literal] = ACTIONS(1321), + [anon_sym_L_SQUOTE] = ACTIONS(1321), + [anon_sym_u_SQUOTE] = ACTIONS(1321), + [anon_sym_U_SQUOTE] = ACTIONS(1321), + [anon_sym_u8_SQUOTE] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_L_DQUOTE] = ACTIONS(1321), + [anon_sym_u_DQUOTE] = ACTIONS(1321), + [anon_sym_U_DQUOTE] = ACTIONS(1321), + [anon_sym_u8_DQUOTE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym_true] = ACTIONS(1319), + [sym_false] = ACTIONS(1319), + [anon_sym_NULL] = ACTIONS(1319), + [anon_sym_nullptr] = ACTIONS(1319), [sym_comment] = ACTIONS(3), }, [323] = { - [sym_attribute_declaration] = STATE(323), - [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_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym__expression] = STATE(1084), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(323), - [sym_identifier] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1494), - [anon_sym_case] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1506), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_goto] = ACTIONS(1521), - [anon_sym___try] = ACTIONS(1524), - [anon_sym___leave] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1455), - [anon_sym___alignof] = ACTIONS(1455), - [anon_sym__alignof] = ACTIONS(1455), - [anon_sym_alignof] = ACTIONS(1455), - [anon_sym__Alignof] = ACTIONS(1455), - [anon_sym_offsetof] = ACTIONS(1458), - [anon_sym__Generic] = ACTIONS(1461), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1467), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1473), - [anon_sym_u_DQUOTE] = ACTIONS(1473), - [anon_sym_U_DQUOTE] = ACTIONS(1473), - [anon_sym_u8_DQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1479), - [anon_sym_nullptr] = ACTIONS(1479), + [sym_identifier] = ACTIONS(1299), + [aux_sym_preproc_include_token1] = ACTIONS(1299), + [aux_sym_preproc_def_token1] = ACTIONS(1299), + [aux_sym_preproc_if_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), + [sym_preproc_directive] = ACTIONS(1299), + [anon_sym_LPAREN2] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym___extension__] = ACTIONS(1299), + [anon_sym_typedef] = ACTIONS(1299), + [anon_sym_extern] = ACTIONS(1299), + [anon_sym___attribute__] = ACTIONS(1299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), + [anon_sym___declspec] = ACTIONS(1299), + [anon_sym___cdecl] = ACTIONS(1299), + [anon_sym___clrcall] = ACTIONS(1299), + [anon_sym___stdcall] = ACTIONS(1299), + [anon_sym___fastcall] = ACTIONS(1299), + [anon_sym___thiscall] = ACTIONS(1299), + [anon_sym___vectorcall] = ACTIONS(1299), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_signed] = ACTIONS(1299), + [anon_sym_unsigned] = ACTIONS(1299), + [anon_sym_long] = ACTIONS(1299), + [anon_sym_short] = ACTIONS(1299), + [anon_sym_static] = ACTIONS(1299), + [anon_sym_auto] = ACTIONS(1299), + [anon_sym_register] = ACTIONS(1299), + [anon_sym_inline] = ACTIONS(1299), + [anon_sym___inline] = ACTIONS(1299), + [anon_sym___inline__] = ACTIONS(1299), + [anon_sym___forceinline] = ACTIONS(1299), + [anon_sym_thread_local] = ACTIONS(1299), + [anon_sym___thread] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_constexpr] = ACTIONS(1299), + [anon_sym_volatile] = ACTIONS(1299), + [anon_sym_restrict] = ACTIONS(1299), + [anon_sym___restrict__] = ACTIONS(1299), + [anon_sym__Atomic] = ACTIONS(1299), + [anon_sym__Noreturn] = ACTIONS(1299), + [anon_sym_noreturn] = ACTIONS(1299), + [anon_sym_alignas] = ACTIONS(1299), + [anon_sym__Alignas] = ACTIONS(1299), + [sym_primitive_type] = ACTIONS(1299), + [anon_sym_enum] = ACTIONS(1299), + [anon_sym_struct] = ACTIONS(1299), + [anon_sym_union] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_switch] = ACTIONS(1299), + [anon_sym_case] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1299), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_do] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1299), + [anon_sym_break] = ACTIONS(1299), + [anon_sym_continue] = ACTIONS(1299), + [anon_sym_goto] = ACTIONS(1299), + [anon_sym___try] = ACTIONS(1299), + [anon_sym___leave] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1299), + [anon_sym___alignof__] = ACTIONS(1299), + [anon_sym___alignof] = ACTIONS(1299), + [anon_sym__alignof] = ACTIONS(1299), + [anon_sym_alignof] = ACTIONS(1299), + [anon_sym__Alignof] = ACTIONS(1299), + [anon_sym_offsetof] = ACTIONS(1299), + [anon_sym__Generic] = ACTIONS(1299), + [anon_sym_asm] = ACTIONS(1299), + [anon_sym___asm__] = ACTIONS(1299), + [sym_number_literal] = ACTIONS(1301), + [anon_sym_L_SQUOTE] = ACTIONS(1301), + [anon_sym_u_SQUOTE] = ACTIONS(1301), + [anon_sym_U_SQUOTE] = ACTIONS(1301), + [anon_sym_u8_SQUOTE] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1301), + [anon_sym_L_DQUOTE] = ACTIONS(1301), + [anon_sym_u_DQUOTE] = ACTIONS(1301), + [anon_sym_U_DQUOTE] = ACTIONS(1301), + [anon_sym_u8_DQUOTE] = ACTIONS(1301), + [anon_sym_DQUOTE] = ACTIONS(1301), + [sym_true] = ACTIONS(1299), + [sym_false] = ACTIONS(1299), + [anon_sym_NULL] = ACTIONS(1299), + [anon_sym_nullptr] = ACTIONS(1299), [sym_comment] = ACTIONS(3), }, [324] = { - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token2] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym___extension__] = ACTIONS(1268), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym___inline] = ACTIONS(1268), - [anon_sym___inline__] = ACTIONS(1268), - [anon_sym___forceinline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym___thread] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym___try] = ACTIONS(1268), - [anon_sym___leave] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym___alignof__] = ACTIONS(1268), - [anon_sym___alignof] = ACTIONS(1268), - [anon_sym__alignof] = ACTIONS(1268), - [anon_sym_alignof] = ACTIONS(1268), - [anon_sym__Alignof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), + [sym_identifier] = ACTIONS(1259), + [aux_sym_preproc_include_token1] = ACTIONS(1259), + [aux_sym_preproc_def_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), + [sym_preproc_directive] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym___extension__] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), + [anon_sym___declspec] = ACTIONS(1259), + [anon_sym___cdecl] = ACTIONS(1259), + [anon_sym___clrcall] = ACTIONS(1259), + [anon_sym___stdcall] = ACTIONS(1259), + [anon_sym___fastcall] = ACTIONS(1259), + [anon_sym___thiscall] = ACTIONS(1259), + [anon_sym___vectorcall] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_inline] = ACTIONS(1259), + [anon_sym___inline] = ACTIONS(1259), + [anon_sym___inline__] = ACTIONS(1259), + [anon_sym___forceinline] = ACTIONS(1259), + [anon_sym_thread_local] = ACTIONS(1259), + [anon_sym___thread] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_constexpr] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym___restrict__] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [anon_sym__Noreturn] = ACTIONS(1259), + [anon_sym_noreturn] = ACTIONS(1259), + [anon_sym_alignas] = ACTIONS(1259), + [anon_sym__Alignas] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [anon_sym_case] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_goto] = ACTIONS(1259), + [anon_sym___try] = ACTIONS(1259), + [anon_sym___leave] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_sizeof] = ACTIONS(1259), + [anon_sym___alignof__] = ACTIONS(1259), + [anon_sym___alignof] = ACTIONS(1259), + [anon_sym__alignof] = ACTIONS(1259), + [anon_sym_alignof] = ACTIONS(1259), + [anon_sym__Alignof] = ACTIONS(1259), + [anon_sym_offsetof] = ACTIONS(1259), + [anon_sym__Generic] = ACTIONS(1259), + [anon_sym_asm] = ACTIONS(1259), + [anon_sym___asm__] = ACTIONS(1259), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_L_SQUOTE] = ACTIONS(1261), + [anon_sym_u_SQUOTE] = ACTIONS(1261), + [anon_sym_U_SQUOTE] = ACTIONS(1261), + [anon_sym_u8_SQUOTE] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_L_DQUOTE] = ACTIONS(1261), + [anon_sym_u_DQUOTE] = ACTIONS(1261), + [anon_sym_U_DQUOTE] = ACTIONS(1261), + [anon_sym_u8_DQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_true] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [anon_sym_NULL] = ACTIONS(1259), + [anon_sym_nullptr] = ACTIONS(1259), [sym_comment] = ACTIONS(3), }, [325] = { - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token2] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym___extension__] = ACTIONS(1276), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym___inline] = ACTIONS(1276), - [anon_sym___inline__] = ACTIONS(1276), - [anon_sym___forceinline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym___thread] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym___try] = ACTIONS(1276), - [anon_sym___leave] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym___alignof__] = ACTIONS(1276), - [anon_sym___alignof] = ACTIONS(1276), - [anon_sym__alignof] = ACTIONS(1276), - [anon_sym_alignof] = ACTIONS(1276), - [anon_sym__Alignof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), + [sym__expression] = STATE(747), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(725), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(725), + [sym_call_expression] = STATE(725), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(725), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(725), + [sym_initializer_list] = STATE(723), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_identifier] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1367), + [anon_sym_RPAREN] = ACTIONS(1367), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_SLASH] = ACTIONS(1373), + [anon_sym_PERCENT] = ACTIONS(1373), + [anon_sym_PIPE_PIPE] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1367), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_CARET] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_EQ_EQ] = ACTIONS(1367), + [anon_sym_BANG_EQ] = ACTIONS(1367), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1367), + [anon_sym_LT_EQ] = ACTIONS(1367), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym___attribute__] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_EQ] = ACTIONS(1373), + [anon_sym_COLON] = ACTIONS(1367), + [anon_sym_QMARK] = ACTIONS(1367), + [anon_sym_STAR_EQ] = ACTIONS(1367), + [anon_sym_SLASH_EQ] = ACTIONS(1367), + [anon_sym_PERCENT_EQ] = ACTIONS(1367), + [anon_sym_PLUS_EQ] = ACTIONS(1367), + [anon_sym_DASH_EQ] = ACTIONS(1367), + [anon_sym_LT_LT_EQ] = ACTIONS(1367), + [anon_sym_GT_GT_EQ] = ACTIONS(1367), + [anon_sym_AMP_EQ] = ACTIONS(1367), + [anon_sym_CARET_EQ] = ACTIONS(1367), + [anon_sym_PIPE_EQ] = ACTIONS(1367), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(1377), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1373), + [anon_sym_DASH_GT] = ACTIONS(1367), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [326] = { - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token2] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym___extension__] = ACTIONS(1280), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym___inline] = ACTIONS(1280), - [anon_sym___inline__] = ACTIONS(1280), - [anon_sym___forceinline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym___thread] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym___alignof__] = ACTIONS(1280), - [anon_sym___alignof] = ACTIONS(1280), - [anon_sym__alignof] = ACTIONS(1280), - [anon_sym_alignof] = ACTIONS(1280), - [anon_sym__Alignof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), + [sym_identifier] = ACTIONS(1247), + [aux_sym_preproc_include_token1] = ACTIONS(1247), + [aux_sym_preproc_def_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), + [sym_preproc_directive] = ACTIONS(1247), + [anon_sym_LPAREN2] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1249), + [anon_sym_TILDE] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1247), + [anon_sym_typedef] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1247), + [anon_sym___attribute__] = ACTIONS(1247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1249), + [anon_sym___declspec] = ACTIONS(1247), + [anon_sym___cdecl] = ACTIONS(1247), + [anon_sym___clrcall] = ACTIONS(1247), + [anon_sym___stdcall] = ACTIONS(1247), + [anon_sym___fastcall] = ACTIONS(1247), + [anon_sym___thiscall] = ACTIONS(1247), + [anon_sym___vectorcall] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_signed] = ACTIONS(1247), + [anon_sym_unsigned] = ACTIONS(1247), + [anon_sym_long] = ACTIONS(1247), + [anon_sym_short] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1247), + [anon_sym_auto] = ACTIONS(1247), + [anon_sym_register] = ACTIONS(1247), + [anon_sym_inline] = ACTIONS(1247), + [anon_sym___inline] = ACTIONS(1247), + [anon_sym___inline__] = ACTIONS(1247), + [anon_sym___forceinline] = ACTIONS(1247), + [anon_sym_thread_local] = ACTIONS(1247), + [anon_sym___thread] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_constexpr] = ACTIONS(1247), + [anon_sym_volatile] = ACTIONS(1247), + [anon_sym_restrict] = ACTIONS(1247), + [anon_sym___restrict__] = ACTIONS(1247), + [anon_sym__Atomic] = ACTIONS(1247), + [anon_sym__Noreturn] = ACTIONS(1247), + [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym_alignas] = ACTIONS(1247), + [anon_sym__Alignas] = ACTIONS(1247), + [sym_primitive_type] = ACTIONS(1247), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_struct] = ACTIONS(1247), + [anon_sym_union] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_case] = ACTIONS(1247), + [anon_sym_default] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_goto] = ACTIONS(1247), + [anon_sym___try] = ACTIONS(1247), + [anon_sym___leave] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_sizeof] = ACTIONS(1247), + [anon_sym___alignof__] = ACTIONS(1247), + [anon_sym___alignof] = ACTIONS(1247), + [anon_sym__alignof] = ACTIONS(1247), + [anon_sym_alignof] = ACTIONS(1247), + [anon_sym__Alignof] = ACTIONS(1247), + [anon_sym_offsetof] = ACTIONS(1247), + [anon_sym__Generic] = ACTIONS(1247), + [anon_sym_asm] = ACTIONS(1247), + [anon_sym___asm__] = ACTIONS(1247), + [sym_number_literal] = ACTIONS(1249), + [anon_sym_L_SQUOTE] = ACTIONS(1249), + [anon_sym_u_SQUOTE] = ACTIONS(1249), + [anon_sym_U_SQUOTE] = ACTIONS(1249), + [anon_sym_u8_SQUOTE] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1249), + [anon_sym_L_DQUOTE] = ACTIONS(1249), + [anon_sym_u_DQUOTE] = ACTIONS(1249), + [anon_sym_U_DQUOTE] = ACTIONS(1249), + [anon_sym_u8_DQUOTE] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym_true] = ACTIONS(1247), + [sym_false] = ACTIONS(1247), + [anon_sym_NULL] = ACTIONS(1247), + [anon_sym_nullptr] = ACTIONS(1247), [sym_comment] = ACTIONS(3), }, [327] = { - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [sym_identifier] = ACTIONS(1355), + [aux_sym_preproc_include_token1] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1355), + [aux_sym_preproc_if_token1] = ACTIONS(1355), + [aux_sym_preproc_if_token2] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1355), + [sym_preproc_directive] = ACTIONS(1355), + [anon_sym_LPAREN2] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1357), + [anon_sym_TILDE] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym___extension__] = ACTIONS(1355), + [anon_sym_typedef] = ACTIONS(1355), + [anon_sym_extern] = ACTIONS(1355), + [anon_sym___attribute__] = ACTIONS(1355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1357), + [anon_sym___declspec] = ACTIONS(1355), + [anon_sym___cdecl] = ACTIONS(1355), + [anon_sym___clrcall] = ACTIONS(1355), + [anon_sym___stdcall] = ACTIONS(1355), + [anon_sym___fastcall] = ACTIONS(1355), + [anon_sym___thiscall] = ACTIONS(1355), + [anon_sym___vectorcall] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_signed] = ACTIONS(1355), + [anon_sym_unsigned] = ACTIONS(1355), + [anon_sym_long] = ACTIONS(1355), + [anon_sym_short] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_auto] = ACTIONS(1355), + [anon_sym_register] = ACTIONS(1355), + [anon_sym_inline] = ACTIONS(1355), + [anon_sym___inline] = ACTIONS(1355), + [anon_sym___inline__] = ACTIONS(1355), + [anon_sym___forceinline] = ACTIONS(1355), + [anon_sym_thread_local] = ACTIONS(1355), + [anon_sym___thread] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_constexpr] = ACTIONS(1355), + [anon_sym_volatile] = ACTIONS(1355), + [anon_sym_restrict] = ACTIONS(1355), + [anon_sym___restrict__] = ACTIONS(1355), + [anon_sym__Atomic] = ACTIONS(1355), + [anon_sym__Noreturn] = ACTIONS(1355), + [anon_sym_noreturn] = ACTIONS(1355), + [anon_sym_alignas] = ACTIONS(1355), + [anon_sym__Alignas] = ACTIONS(1355), + [sym_primitive_type] = ACTIONS(1355), + [anon_sym_enum] = ACTIONS(1355), + [anon_sym_struct] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_switch] = ACTIONS(1355), + [anon_sym_case] = ACTIONS(1355), + [anon_sym_default] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_do] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_goto] = ACTIONS(1355), + [anon_sym___try] = ACTIONS(1355), + [anon_sym___leave] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1355), + [anon_sym___alignof__] = ACTIONS(1355), + [anon_sym___alignof] = ACTIONS(1355), + [anon_sym__alignof] = ACTIONS(1355), + [anon_sym_alignof] = ACTIONS(1355), + [anon_sym__Alignof] = ACTIONS(1355), + [anon_sym_offsetof] = ACTIONS(1355), + [anon_sym__Generic] = ACTIONS(1355), + [anon_sym_asm] = ACTIONS(1355), + [anon_sym___asm__] = ACTIONS(1355), + [sym_number_literal] = ACTIONS(1357), + [anon_sym_L_SQUOTE] = ACTIONS(1357), + [anon_sym_u_SQUOTE] = ACTIONS(1357), + [anon_sym_U_SQUOTE] = ACTIONS(1357), + [anon_sym_u8_SQUOTE] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1357), + [anon_sym_L_DQUOTE] = ACTIONS(1357), + [anon_sym_u_DQUOTE] = ACTIONS(1357), + [anon_sym_U_DQUOTE] = ACTIONS(1357), + [anon_sym_u8_DQUOTE] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [sym_true] = ACTIONS(1355), + [sym_false] = ACTIONS(1355), + [anon_sym_NULL] = ACTIONS(1355), + [anon_sym_nullptr] = ACTIONS(1355), [sym_comment] = ACTIONS(3), }, [328] = { - [sym_identifier] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token2] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym___extension__] = ACTIONS(1236), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), - [anon_sym___declspec] = ACTIONS(1236), - [anon_sym___cdecl] = ACTIONS(1236), - [anon_sym___clrcall] = ACTIONS(1236), - [anon_sym___stdcall] = ACTIONS(1236), - [anon_sym___fastcall] = ACTIONS(1236), - [anon_sym___thiscall] = ACTIONS(1236), - [anon_sym___vectorcall] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym___inline] = ACTIONS(1236), - [anon_sym___inline__] = ACTIONS(1236), - [anon_sym___forceinline] = ACTIONS(1236), - [anon_sym_thread_local] = ACTIONS(1236), - [anon_sym___thread] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_constexpr] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym___restrict__] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym__Noreturn] = ACTIONS(1236), - [anon_sym_noreturn] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_case] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym___try] = ACTIONS(1236), - [anon_sym___leave] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1236), - [anon_sym___alignof__] = ACTIONS(1236), - [anon_sym___alignof] = ACTIONS(1236), - [anon_sym__alignof] = ACTIONS(1236), - [anon_sym_alignof] = ACTIONS(1236), - [anon_sym__Alignof] = ACTIONS(1236), - [anon_sym_offsetof] = ACTIONS(1236), - [anon_sym__Generic] = ACTIONS(1236), - [anon_sym_asm] = ACTIONS(1236), - [anon_sym___asm__] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1238), - [anon_sym_u_SQUOTE] = ACTIONS(1238), - [anon_sym_U_SQUOTE] = ACTIONS(1238), - [anon_sym_u8_SQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_L_DQUOTE] = ACTIONS(1238), - [anon_sym_u_DQUOTE] = ACTIONS(1238), - [anon_sym_U_DQUOTE] = ACTIONS(1238), - [anon_sym_u8_DQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [anon_sym_NULL] = ACTIONS(1236), - [anon_sym_nullptr] = ACTIONS(1236), + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_include_token1] = ACTIONS(1267), + [aux_sym_preproc_def_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token2] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), + [sym_preproc_directive] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_TILDE] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym___extension__] = ACTIONS(1267), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1269), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [anon_sym___inline] = ACTIONS(1267), + [anon_sym___inline__] = ACTIONS(1267), + [anon_sym___forceinline] = ACTIONS(1267), + [anon_sym_thread_local] = ACTIONS(1267), + [anon_sym___thread] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_constexpr] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym___restrict__] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym__Noreturn] = ACTIONS(1267), + [anon_sym_noreturn] = ACTIONS(1267), + [anon_sym_alignas] = ACTIONS(1267), + [anon_sym__Alignas] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym___try] = ACTIONS(1267), + [anon_sym___leave] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(1267), + [anon_sym___alignof__] = ACTIONS(1267), + [anon_sym___alignof] = ACTIONS(1267), + [anon_sym__alignof] = ACTIONS(1267), + [anon_sym_alignof] = ACTIONS(1267), + [anon_sym__Alignof] = ACTIONS(1267), + [anon_sym_offsetof] = ACTIONS(1267), + [anon_sym__Generic] = ACTIONS(1267), + [anon_sym_asm] = ACTIONS(1267), + [anon_sym___asm__] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1269), + [anon_sym_L_SQUOTE] = ACTIONS(1269), + [anon_sym_u_SQUOTE] = ACTIONS(1269), + [anon_sym_U_SQUOTE] = ACTIONS(1269), + [anon_sym_u8_SQUOTE] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1269), + [anon_sym_L_DQUOTE] = ACTIONS(1269), + [anon_sym_u_DQUOTE] = ACTIONS(1269), + [anon_sym_U_DQUOTE] = ACTIONS(1269), + [anon_sym_u8_DQUOTE] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [anon_sym_NULL] = ACTIONS(1267), + [anon_sym_nullptr] = ACTIONS(1267), [sym_comment] = ACTIONS(3), }, [329] = { - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token2] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym___extension__] = ACTIONS(1328), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym___inline] = ACTIONS(1328), - [anon_sym___inline__] = ACTIONS(1328), - [anon_sym___forceinline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym___thread] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [sym_primitive_type] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym___try] = ACTIONS(1328), - [anon_sym___leave] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym___alignof__] = ACTIONS(1328), - [anon_sym___alignof] = ACTIONS(1328), - [anon_sym__alignof] = ACTIONS(1328), - [anon_sym_alignof] = ACTIONS(1328), - [anon_sym__Alignof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1279), + [aux_sym_preproc_include_token1] = ACTIONS(1279), + [aux_sym_preproc_def_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token2] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), + [sym_preproc_directive] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym___extension__] = ACTIONS(1279), + [anon_sym_typedef] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym___attribute__] = ACTIONS(1279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), + [anon_sym___declspec] = ACTIONS(1279), + [anon_sym___cdecl] = ACTIONS(1279), + [anon_sym___clrcall] = ACTIONS(1279), + [anon_sym___stdcall] = ACTIONS(1279), + [anon_sym___fastcall] = ACTIONS(1279), + [anon_sym___thiscall] = ACTIONS(1279), + [anon_sym___vectorcall] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_signed] = ACTIONS(1279), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_auto] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_inline] = ACTIONS(1279), + [anon_sym___inline] = ACTIONS(1279), + [anon_sym___inline__] = ACTIONS(1279), + [anon_sym___forceinline] = ACTIONS(1279), + [anon_sym_thread_local] = ACTIONS(1279), + [anon_sym___thread] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_constexpr] = ACTIONS(1279), + [anon_sym_volatile] = ACTIONS(1279), + [anon_sym_restrict] = ACTIONS(1279), + [anon_sym___restrict__] = ACTIONS(1279), + [anon_sym__Atomic] = ACTIONS(1279), + [anon_sym__Noreturn] = ACTIONS(1279), + [anon_sym_noreturn] = ACTIONS(1279), + [anon_sym_alignas] = ACTIONS(1279), + [anon_sym__Alignas] = ACTIONS(1279), + [sym_primitive_type] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_switch] = ACTIONS(1279), + [anon_sym_case] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_goto] = ACTIONS(1279), + [anon_sym___try] = ACTIONS(1279), + [anon_sym___leave] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1279), + [anon_sym___alignof__] = ACTIONS(1279), + [anon_sym___alignof] = ACTIONS(1279), + [anon_sym__alignof] = ACTIONS(1279), + [anon_sym_alignof] = ACTIONS(1279), + [anon_sym__Alignof] = ACTIONS(1279), + [anon_sym_offsetof] = ACTIONS(1279), + [anon_sym__Generic] = ACTIONS(1279), + [anon_sym_asm] = ACTIONS(1279), + [anon_sym___asm__] = ACTIONS(1279), + [sym_number_literal] = ACTIONS(1281), + [anon_sym_L_SQUOTE] = ACTIONS(1281), + [anon_sym_u_SQUOTE] = ACTIONS(1281), + [anon_sym_U_SQUOTE] = ACTIONS(1281), + [anon_sym_u8_SQUOTE] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_L_DQUOTE] = ACTIONS(1281), + [anon_sym_u_DQUOTE] = ACTIONS(1281), + [anon_sym_U_DQUOTE] = ACTIONS(1281), + [anon_sym_u8_DQUOTE] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [anon_sym_NULL] = ACTIONS(1279), + [anon_sym_nullptr] = ACTIONS(1279), [sym_comment] = ACTIONS(3), }, [330] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token2] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym___extension__] = ACTIONS(1332), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym___inline] = ACTIONS(1332), - [anon_sym___inline__] = ACTIONS(1332), - [anon_sym___forceinline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym___thread] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym___try] = ACTIONS(1332), - [anon_sym___leave] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym___alignof__] = ACTIONS(1332), - [anon_sym___alignof] = ACTIONS(1332), - [anon_sym__alignof] = ACTIONS(1332), - [anon_sym_alignof] = ACTIONS(1332), - [anon_sym__Alignof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1343), + [aux_sym_preproc_include_token1] = ACTIONS(1343), + [aux_sym_preproc_def_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token2] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), + [sym_preproc_directive] = ACTIONS(1343), + [anon_sym_LPAREN2] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym___extension__] = ACTIONS(1343), + [anon_sym_typedef] = ACTIONS(1343), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym___attribute__] = ACTIONS(1343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), + [anon_sym___declspec] = ACTIONS(1343), + [anon_sym___cdecl] = ACTIONS(1343), + [anon_sym___clrcall] = ACTIONS(1343), + [anon_sym___stdcall] = ACTIONS(1343), + [anon_sym___fastcall] = ACTIONS(1343), + [anon_sym___thiscall] = ACTIONS(1343), + [anon_sym___vectorcall] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_signed] = ACTIONS(1343), + [anon_sym_unsigned] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_auto] = ACTIONS(1343), + [anon_sym_register] = ACTIONS(1343), + [anon_sym_inline] = ACTIONS(1343), + [anon_sym___inline] = ACTIONS(1343), + [anon_sym___inline__] = ACTIONS(1343), + [anon_sym___forceinline] = ACTIONS(1343), + [anon_sym_thread_local] = ACTIONS(1343), + [anon_sym___thread] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_constexpr] = ACTIONS(1343), + [anon_sym_volatile] = ACTIONS(1343), + [anon_sym_restrict] = ACTIONS(1343), + [anon_sym___restrict__] = ACTIONS(1343), + [anon_sym__Atomic] = ACTIONS(1343), + [anon_sym__Noreturn] = ACTIONS(1343), + [anon_sym_noreturn] = ACTIONS(1343), + [anon_sym_alignas] = ACTIONS(1343), + [anon_sym__Alignas] = ACTIONS(1343), + [sym_primitive_type] = ACTIONS(1343), + [anon_sym_enum] = ACTIONS(1343), + [anon_sym_struct] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_case] = ACTIONS(1343), + [anon_sym_default] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_goto] = ACTIONS(1343), + [anon_sym___try] = ACTIONS(1343), + [anon_sym___leave] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_sizeof] = ACTIONS(1343), + [anon_sym___alignof__] = ACTIONS(1343), + [anon_sym___alignof] = ACTIONS(1343), + [anon_sym__alignof] = ACTIONS(1343), + [anon_sym_alignof] = ACTIONS(1343), + [anon_sym__Alignof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1343), + [anon_sym__Generic] = ACTIONS(1343), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym___asm__] = ACTIONS(1343), + [sym_number_literal] = ACTIONS(1345), + [anon_sym_L_SQUOTE] = ACTIONS(1345), + [anon_sym_u_SQUOTE] = ACTIONS(1345), + [anon_sym_U_SQUOTE] = ACTIONS(1345), + [anon_sym_u8_SQUOTE] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_L_DQUOTE] = ACTIONS(1345), + [anon_sym_u_DQUOTE] = ACTIONS(1345), + [anon_sym_U_DQUOTE] = ACTIONS(1345), + [anon_sym_u8_DQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym_true] = ACTIONS(1343), + [sym_false] = ACTIONS(1343), + [anon_sym_NULL] = ACTIONS(1343), + [anon_sym_nullptr] = ACTIONS(1343), [sym_comment] = ACTIONS(3), }, [331] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token2] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym___extension__] = ACTIONS(1336), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym___inline] = ACTIONS(1336), - [anon_sym___inline__] = ACTIONS(1336), - [anon_sym___forceinline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym___try] = ACTIONS(1336), - [anon_sym___leave] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym___alignof__] = ACTIONS(1336), - [anon_sym___alignof] = ACTIONS(1336), - [anon_sym__alignof] = ACTIONS(1336), - [anon_sym_alignof] = ACTIONS(1336), - [anon_sym__Alignof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), + [sym__expression] = STATE(747), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(725), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(725), + [sym_call_expression] = STATE(725), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(725), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(725), + [sym_initializer_list] = STATE(723), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(732), + [sym_null] = STATE(725), + [sym_identifier] = ACTIONS(1373), + [anon_sym_COMMA] = ACTIONS(1367), + [aux_sym_preproc_if_token2] = ACTIONS(1367), + [aux_sym_preproc_else_token1] = ACTIONS(1367), + [aux_sym_preproc_elif_token1] = ACTIONS(1373), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1367), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1367), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_SLASH] = ACTIONS(1373), + [anon_sym_PERCENT] = ACTIONS(1373), + [anon_sym_PIPE_PIPE] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1367), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_CARET] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_EQ_EQ] = ACTIONS(1367), + [anon_sym_BANG_EQ] = ACTIONS(1367), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1367), + [anon_sym_LT_EQ] = ACTIONS(1367), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_EQ] = ACTIONS(1373), + [anon_sym_QMARK] = ACTIONS(1367), + [anon_sym_STAR_EQ] = ACTIONS(1367), + [anon_sym_SLASH_EQ] = ACTIONS(1367), + [anon_sym_PERCENT_EQ] = ACTIONS(1367), + [anon_sym_PLUS_EQ] = ACTIONS(1367), + [anon_sym_DASH_EQ] = ACTIONS(1367), + [anon_sym_LT_LT_EQ] = ACTIONS(1367), + [anon_sym_GT_GT_EQ] = ACTIONS(1367), + [anon_sym_AMP_EQ] = ACTIONS(1367), + [anon_sym_CARET_EQ] = ACTIONS(1367), + [anon_sym_PIPE_EQ] = ACTIONS(1367), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(1383), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1373), + [anon_sym_DASH_GT] = ACTIONS(1367), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [332] = { - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token2] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym___extension__] = ACTIONS(1344), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym___inline] = ACTIONS(1344), - [anon_sym___inline__] = ACTIONS(1344), - [anon_sym___forceinline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym___thread] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym___try] = ACTIONS(1344), - [anon_sym___leave] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym___alignof__] = ACTIONS(1344), - [anon_sym___alignof] = ACTIONS(1344), - [anon_sym__alignof] = ACTIONS(1344), - [anon_sym_alignof] = ACTIONS(1344), - [anon_sym__Alignof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1287), + [aux_sym_preproc_include_token1] = ACTIONS(1287), + [aux_sym_preproc_def_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token2] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), + [sym_preproc_directive] = ACTIONS(1287), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym___extension__] = ACTIONS(1287), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym___attribute__] = ACTIONS(1287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), + [anon_sym___declspec] = ACTIONS(1287), + [anon_sym___cdecl] = ACTIONS(1287), + [anon_sym___clrcall] = ACTIONS(1287), + [anon_sym___stdcall] = ACTIONS(1287), + [anon_sym___fastcall] = ACTIONS(1287), + [anon_sym___thiscall] = ACTIONS(1287), + [anon_sym___vectorcall] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_signed] = ACTIONS(1287), + [anon_sym_unsigned] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_auto] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_inline] = ACTIONS(1287), + [anon_sym___inline] = ACTIONS(1287), + [anon_sym___inline__] = ACTIONS(1287), + [anon_sym___forceinline] = ACTIONS(1287), + [anon_sym_thread_local] = ACTIONS(1287), + [anon_sym___thread] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_constexpr] = ACTIONS(1287), + [anon_sym_volatile] = ACTIONS(1287), + [anon_sym_restrict] = ACTIONS(1287), + [anon_sym___restrict__] = ACTIONS(1287), + [anon_sym__Atomic] = ACTIONS(1287), + [anon_sym__Noreturn] = ACTIONS(1287), + [anon_sym_noreturn] = ACTIONS(1287), + [anon_sym_alignas] = ACTIONS(1287), + [anon_sym__Alignas] = ACTIONS(1287), + [sym_primitive_type] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_switch] = ACTIONS(1287), + [anon_sym_case] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_goto] = ACTIONS(1287), + [anon_sym___try] = ACTIONS(1287), + [anon_sym___leave] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_sizeof] = ACTIONS(1287), + [anon_sym___alignof__] = ACTIONS(1287), + [anon_sym___alignof] = ACTIONS(1287), + [anon_sym__alignof] = ACTIONS(1287), + [anon_sym_alignof] = ACTIONS(1287), + [anon_sym__Alignof] = ACTIONS(1287), + [anon_sym_offsetof] = ACTIONS(1287), + [anon_sym__Generic] = ACTIONS(1287), + [anon_sym_asm] = ACTIONS(1287), + [anon_sym___asm__] = ACTIONS(1287), + [sym_number_literal] = ACTIONS(1289), + [anon_sym_L_SQUOTE] = ACTIONS(1289), + [anon_sym_u_SQUOTE] = ACTIONS(1289), + [anon_sym_U_SQUOTE] = ACTIONS(1289), + [anon_sym_u8_SQUOTE] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_L_DQUOTE] = ACTIONS(1289), + [anon_sym_u_DQUOTE] = ACTIONS(1289), + [anon_sym_U_DQUOTE] = ACTIONS(1289), + [anon_sym_u8_DQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [anon_sym_NULL] = ACTIONS(1287), + [anon_sym_nullptr] = ACTIONS(1287), [sym_comment] = ACTIONS(3), }, [333] = { - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token2] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym___extension__] = ACTIONS(1284), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym___inline] = ACTIONS(1284), - [anon_sym___inline__] = ACTIONS(1284), - [anon_sym___forceinline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym___thread] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym___alignof__] = ACTIONS(1284), - [anon_sym___alignof] = ACTIONS(1284), - [anon_sym__alignof] = ACTIONS(1284), - [anon_sym_alignof] = ACTIONS(1284), - [anon_sym__Alignof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), + [sym_identifier] = ACTIONS(1351), + [aux_sym_preproc_include_token1] = ACTIONS(1351), + [aux_sym_preproc_def_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token2] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), + [sym_preproc_directive] = ACTIONS(1351), + [anon_sym_LPAREN2] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym___extension__] = ACTIONS(1351), + [anon_sym_typedef] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym___attribute__] = ACTIONS(1351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1353), + [anon_sym___declspec] = ACTIONS(1351), + [anon_sym___cdecl] = ACTIONS(1351), + [anon_sym___clrcall] = ACTIONS(1351), + [anon_sym___stdcall] = ACTIONS(1351), + [anon_sym___fastcall] = ACTIONS(1351), + [anon_sym___thiscall] = ACTIONS(1351), + [anon_sym___vectorcall] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_signed] = ACTIONS(1351), + [anon_sym_unsigned] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_auto] = ACTIONS(1351), + [anon_sym_register] = ACTIONS(1351), + [anon_sym_inline] = ACTIONS(1351), + [anon_sym___inline] = ACTIONS(1351), + [anon_sym___inline__] = ACTIONS(1351), + [anon_sym___forceinline] = ACTIONS(1351), + [anon_sym_thread_local] = ACTIONS(1351), + [anon_sym___thread] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_constexpr] = ACTIONS(1351), + [anon_sym_volatile] = ACTIONS(1351), + [anon_sym_restrict] = ACTIONS(1351), + [anon_sym___restrict__] = ACTIONS(1351), + [anon_sym__Atomic] = ACTIONS(1351), + [anon_sym__Noreturn] = ACTIONS(1351), + [anon_sym_noreturn] = ACTIONS(1351), + [anon_sym_alignas] = ACTIONS(1351), + [anon_sym__Alignas] = ACTIONS(1351), + [sym_primitive_type] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_goto] = ACTIONS(1351), + [anon_sym___try] = ACTIONS(1351), + [anon_sym___leave] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_sizeof] = ACTIONS(1351), + [anon_sym___alignof__] = ACTIONS(1351), + [anon_sym___alignof] = ACTIONS(1351), + [anon_sym__alignof] = ACTIONS(1351), + [anon_sym_alignof] = ACTIONS(1351), + [anon_sym__Alignof] = ACTIONS(1351), + [anon_sym_offsetof] = ACTIONS(1351), + [anon_sym__Generic] = ACTIONS(1351), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym___asm__] = ACTIONS(1351), + [sym_number_literal] = ACTIONS(1353), + [anon_sym_L_SQUOTE] = ACTIONS(1353), + [anon_sym_u_SQUOTE] = ACTIONS(1353), + [anon_sym_U_SQUOTE] = ACTIONS(1353), + [anon_sym_u8_SQUOTE] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_L_DQUOTE] = ACTIONS(1353), + [anon_sym_u_DQUOTE] = ACTIONS(1353), + [anon_sym_U_DQUOTE] = ACTIONS(1353), + [anon_sym_u8_DQUOTE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [anon_sym_NULL] = ACTIONS(1351), + [anon_sym_nullptr] = ACTIONS(1351), [sym_comment] = ACTIONS(3), }, [334] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym___extension__] = ACTIONS(1332), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym___inline] = ACTIONS(1332), - [anon_sym___inline__] = ACTIONS(1332), - [anon_sym___forceinline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym___thread] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym___try] = ACTIONS(1332), - [anon_sym___leave] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym___alignof__] = ACTIONS(1332), - [anon_sym___alignof] = ACTIONS(1332), - [anon_sym__alignof] = ACTIONS(1332), - [anon_sym_alignof] = ACTIONS(1332), - [anon_sym__Alignof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1275), + [aux_sym_preproc_include_token1] = ACTIONS(1275), + [aux_sym_preproc_def_token1] = ACTIONS(1275), + [aux_sym_preproc_if_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1275), + [sym_preproc_directive] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym___extension__] = ACTIONS(1275), + [anon_sym_typedef] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym___attribute__] = ACTIONS(1275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1277), + [anon_sym___declspec] = ACTIONS(1275), + [anon_sym___cdecl] = ACTIONS(1275), + [anon_sym___clrcall] = ACTIONS(1275), + [anon_sym___stdcall] = ACTIONS(1275), + [anon_sym___fastcall] = ACTIONS(1275), + [anon_sym___thiscall] = ACTIONS(1275), + [anon_sym___vectorcall] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym_signed] = ACTIONS(1275), + [anon_sym_unsigned] = ACTIONS(1275), + [anon_sym_long] = ACTIONS(1275), + [anon_sym_short] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_auto] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_inline] = ACTIONS(1275), + [anon_sym___inline] = ACTIONS(1275), + [anon_sym___inline__] = ACTIONS(1275), + [anon_sym___forceinline] = ACTIONS(1275), + [anon_sym_thread_local] = ACTIONS(1275), + [anon_sym___thread] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_constexpr] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1275), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym___restrict__] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1275), + [anon_sym__Noreturn] = ACTIONS(1275), + [anon_sym_noreturn] = ACTIONS(1275), + [anon_sym_alignas] = ACTIONS(1275), + [anon_sym__Alignas] = ACTIONS(1275), + [sym_primitive_type] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_case] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_goto] = ACTIONS(1275), + [anon_sym___try] = ACTIONS(1275), + [anon_sym___leave] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1275), + [anon_sym___alignof__] = ACTIONS(1275), + [anon_sym___alignof] = ACTIONS(1275), + [anon_sym__alignof] = ACTIONS(1275), + [anon_sym_alignof] = ACTIONS(1275), + [anon_sym__Alignof] = ACTIONS(1275), + [anon_sym_offsetof] = ACTIONS(1275), + [anon_sym__Generic] = ACTIONS(1275), + [anon_sym_asm] = ACTIONS(1275), + [anon_sym___asm__] = ACTIONS(1275), + [sym_number_literal] = ACTIONS(1277), + [anon_sym_L_SQUOTE] = ACTIONS(1277), + [anon_sym_u_SQUOTE] = ACTIONS(1277), + [anon_sym_U_SQUOTE] = ACTIONS(1277), + [anon_sym_u8_SQUOTE] = ACTIONS(1277), + [anon_sym_SQUOTE] = ACTIONS(1277), + [anon_sym_L_DQUOTE] = ACTIONS(1277), + [anon_sym_u_DQUOTE] = ACTIONS(1277), + [anon_sym_U_DQUOTE] = ACTIONS(1277), + [anon_sym_u8_DQUOTE] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym_true] = ACTIONS(1275), + [sym_false] = ACTIONS(1275), + [anon_sym_NULL] = ACTIONS(1275), + [anon_sym_nullptr] = ACTIONS(1275), [sym_comment] = ACTIONS(3), }, [335] = { - [sym_attribute_declaration] = STATE(373), - [sym_compound_statement] = STATE(112), - [sym_attributed_statement] = STATE(112), - [sym_labeled_statement] = STATE(112), - [sym_expression_statement] = STATE(112), - [sym_if_statement] = STATE(112), - [sym_switch_statement] = STATE(112), - [sym_case_statement] = STATE(112), - [sym_while_statement] = STATE(112), - [sym_do_statement] = STATE(112), - [sym_for_statement] = STATE(112), - [sym_return_statement] = STATE(112), - [sym_break_statement] = STATE(112), - [sym_continue_statement] = STATE(112), - [sym_goto_statement] = STATE(112), - [sym_seh_try_statement] = STATE(112), - [sym_seh_leave_statement] = STATE(112), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(1530), - [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(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1311), + [aux_sym_preproc_include_token1] = ACTIONS(1311), + [aux_sym_preproc_def_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token2] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), + [sym_preproc_directive] = ACTIONS(1311), + [anon_sym_LPAREN2] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1313), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym___extension__] = ACTIONS(1311), + [anon_sym_typedef] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym___attribute__] = ACTIONS(1311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), + [anon_sym___declspec] = ACTIONS(1311), + [anon_sym___cdecl] = ACTIONS(1311), + [anon_sym___clrcall] = ACTIONS(1311), + [anon_sym___stdcall] = ACTIONS(1311), + [anon_sym___fastcall] = ACTIONS(1311), + [anon_sym___thiscall] = ACTIONS(1311), + [anon_sym___vectorcall] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_signed] = ACTIONS(1311), + [anon_sym_unsigned] = ACTIONS(1311), + [anon_sym_long] = ACTIONS(1311), + [anon_sym_short] = ACTIONS(1311), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_auto] = ACTIONS(1311), + [anon_sym_register] = ACTIONS(1311), + [anon_sym_inline] = ACTIONS(1311), + [anon_sym___inline] = ACTIONS(1311), + [anon_sym___inline__] = ACTIONS(1311), + [anon_sym___forceinline] = ACTIONS(1311), + [anon_sym_thread_local] = ACTIONS(1311), + [anon_sym___thread] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_constexpr] = ACTIONS(1311), + [anon_sym_volatile] = ACTIONS(1311), + [anon_sym_restrict] = ACTIONS(1311), + [anon_sym___restrict__] = ACTIONS(1311), + [anon_sym__Atomic] = ACTIONS(1311), + [anon_sym__Noreturn] = ACTIONS(1311), + [anon_sym_noreturn] = ACTIONS(1311), + [anon_sym_alignas] = ACTIONS(1311), + [anon_sym__Alignas] = ACTIONS(1311), + [sym_primitive_type] = ACTIONS(1311), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_switch] = ACTIONS(1311), + [anon_sym_case] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_goto] = ACTIONS(1311), + [anon_sym___try] = ACTIONS(1311), + [anon_sym___leave] = ACTIONS(1311), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_sizeof] = ACTIONS(1311), + [anon_sym___alignof__] = ACTIONS(1311), + [anon_sym___alignof] = ACTIONS(1311), + [anon_sym__alignof] = ACTIONS(1311), + [anon_sym_alignof] = ACTIONS(1311), + [anon_sym__Alignof] = ACTIONS(1311), + [anon_sym_offsetof] = ACTIONS(1311), + [anon_sym__Generic] = ACTIONS(1311), + [anon_sym_asm] = ACTIONS(1311), + [anon_sym___asm__] = ACTIONS(1311), + [sym_number_literal] = ACTIONS(1313), + [anon_sym_L_SQUOTE] = ACTIONS(1313), + [anon_sym_u_SQUOTE] = ACTIONS(1313), + [anon_sym_U_SQUOTE] = ACTIONS(1313), + [anon_sym_u8_SQUOTE] = ACTIONS(1313), + [anon_sym_SQUOTE] = ACTIONS(1313), + [anon_sym_L_DQUOTE] = ACTIONS(1313), + [anon_sym_u_DQUOTE] = ACTIONS(1313), + [anon_sym_U_DQUOTE] = ACTIONS(1313), + [anon_sym_u8_DQUOTE] = ACTIONS(1313), + [anon_sym_DQUOTE] = ACTIONS(1313), + [sym_true] = ACTIONS(1311), + [sym_false] = ACTIONS(1311), + [anon_sym_NULL] = ACTIONS(1311), + [anon_sym_nullptr] = ACTIONS(1311), [sym_comment] = ACTIONS(3), }, [336] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token2] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym___extension__] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym___inline] = ACTIONS(1320), - [anon_sym___inline__] = ACTIONS(1320), - [anon_sym___forceinline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym___try] = ACTIONS(1320), - [anon_sym___leave] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym___alignof__] = ACTIONS(1320), - [anon_sym___alignof] = ACTIONS(1320), - [anon_sym__alignof] = ACTIONS(1320), - [anon_sym_alignof] = ACTIONS(1320), - [anon_sym__Alignof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token2] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [anon_sym_alignas] = ACTIONS(1315), + [anon_sym__Alignas] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym___try] = ACTIONS(1315), + [anon_sym___leave] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, [337] = { - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token2] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym___extension__] = ACTIONS(1324), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym___inline] = ACTIONS(1324), - [anon_sym___inline__] = ACTIONS(1324), - [anon_sym___forceinline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym___thread] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym___alignof__] = ACTIONS(1324), - [anon_sym___alignof] = ACTIONS(1324), - [anon_sym__alignof] = ACTIONS(1324), - [anon_sym_alignof] = ACTIONS(1324), - [anon_sym__Alignof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1303), + [aux_sym_preproc_include_token1] = ACTIONS(1303), + [aux_sym_preproc_def_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token2] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), + [sym_preproc_directive] = ACTIONS(1303), + [anon_sym_LPAREN2] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_TILDE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym___extension__] = ACTIONS(1303), + [anon_sym_typedef] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym___attribute__] = ACTIONS(1303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1305), + [anon_sym___declspec] = ACTIONS(1303), + [anon_sym___cdecl] = ACTIONS(1303), + [anon_sym___clrcall] = ACTIONS(1303), + [anon_sym___stdcall] = ACTIONS(1303), + [anon_sym___fastcall] = ACTIONS(1303), + [anon_sym___thiscall] = ACTIONS(1303), + [anon_sym___vectorcall] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_signed] = ACTIONS(1303), + [anon_sym_unsigned] = ACTIONS(1303), + [anon_sym_long] = ACTIONS(1303), + [anon_sym_short] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_auto] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_inline] = ACTIONS(1303), + [anon_sym___inline] = ACTIONS(1303), + [anon_sym___inline__] = ACTIONS(1303), + [anon_sym___forceinline] = ACTIONS(1303), + [anon_sym_thread_local] = ACTIONS(1303), + [anon_sym___thread] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_constexpr] = ACTIONS(1303), + [anon_sym_volatile] = ACTIONS(1303), + [anon_sym_restrict] = ACTIONS(1303), + [anon_sym___restrict__] = ACTIONS(1303), + [anon_sym__Atomic] = ACTIONS(1303), + [anon_sym__Noreturn] = ACTIONS(1303), + [anon_sym_noreturn] = ACTIONS(1303), + [anon_sym_alignas] = ACTIONS(1303), + [anon_sym__Alignas] = ACTIONS(1303), + [sym_primitive_type] = ACTIONS(1303), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_switch] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_goto] = ACTIONS(1303), + [anon_sym___try] = ACTIONS(1303), + [anon_sym___leave] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1305), + [anon_sym_PLUS_PLUS] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1303), + [anon_sym___alignof__] = ACTIONS(1303), + [anon_sym___alignof] = ACTIONS(1303), + [anon_sym__alignof] = ACTIONS(1303), + [anon_sym_alignof] = ACTIONS(1303), + [anon_sym__Alignof] = ACTIONS(1303), + [anon_sym_offsetof] = ACTIONS(1303), + [anon_sym__Generic] = ACTIONS(1303), + [anon_sym_asm] = ACTIONS(1303), + [anon_sym___asm__] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(1305), + [anon_sym_L_SQUOTE] = ACTIONS(1305), + [anon_sym_u_SQUOTE] = ACTIONS(1305), + [anon_sym_U_SQUOTE] = ACTIONS(1305), + [anon_sym_u8_SQUOTE] = ACTIONS(1305), + [anon_sym_SQUOTE] = ACTIONS(1305), + [anon_sym_L_DQUOTE] = ACTIONS(1305), + [anon_sym_u_DQUOTE] = ACTIONS(1305), + [anon_sym_U_DQUOTE] = ACTIONS(1305), + [anon_sym_u8_DQUOTE] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [anon_sym_NULL] = ACTIONS(1303), + [anon_sym_nullptr] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, [338] = { - [sym_attribute_declaration] = STATE(358), - [sym_compound_statement] = STATE(1894), - [sym_attributed_statement] = STATE(1894), - [sym_labeled_statement] = STATE(1894), - [sym_expression_statement] = STATE(1894), - [sym_if_statement] = STATE(1894), - [sym_switch_statement] = STATE(1894), - [sym_case_statement] = STATE(1894), - [sym_while_statement] = STATE(1894), - [sym_do_statement] = STATE(1894), - [sym_for_statement] = STATE(1894), - [sym_return_statement] = STATE(1894), - [sym_break_statement] = STATE(1894), - [sym_continue_statement] = STATE(1894), - [sym_goto_statement] = STATE(1894), - [sym_seh_try_statement] = STATE(1894), - [sym_seh_leave_statement] = STATE(1894), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1380), - [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(363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1077), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1079), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1083), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token2] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym___extension__] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym___attribute__] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1327), + [anon_sym___cdecl] = ACTIONS(1327), + [anon_sym___clrcall] = ACTIONS(1327), + [anon_sym___stdcall] = ACTIONS(1327), + [anon_sym___fastcall] = ACTIONS(1327), + [anon_sym___thiscall] = ACTIONS(1327), + [anon_sym___vectorcall] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_auto] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym___inline] = ACTIONS(1327), + [anon_sym___inline__] = ACTIONS(1327), + [anon_sym___forceinline] = ACTIONS(1327), + [anon_sym_thread_local] = ACTIONS(1327), + [anon_sym___thread] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym___restrict__] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [anon_sym__Noreturn] = ACTIONS(1327), + [anon_sym_noreturn] = ACTIONS(1327), + [anon_sym_alignas] = ACTIONS(1327), + [anon_sym__Alignas] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [anon_sym___try] = ACTIONS(1327), + [anon_sym___leave] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym___alignof__] = ACTIONS(1327), + [anon_sym___alignof] = ACTIONS(1327), + [anon_sym__alignof] = ACTIONS(1327), + [anon_sym_alignof] = ACTIONS(1327), + [anon_sym__Alignof] = ACTIONS(1327), + [anon_sym_offsetof] = ACTIONS(1327), + [anon_sym__Generic] = ACTIONS(1327), + [anon_sym_asm] = ACTIONS(1327), + [anon_sym___asm__] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_L_SQUOTE] = ACTIONS(1329), + [anon_sym_u_SQUOTE] = ACTIONS(1329), + [anon_sym_U_SQUOTE] = ACTIONS(1329), + [anon_sym_u8_SQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_L_DQUOTE] = ACTIONS(1329), + [anon_sym_u_DQUOTE] = ACTIONS(1329), + [anon_sym_U_DQUOTE] = ACTIONS(1329), + [anon_sym_u8_DQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [anon_sym_NULL] = ACTIONS(1327), + [anon_sym_nullptr] = ACTIONS(1327), [sym_comment] = ACTIONS(3), }, [339] = { - [sym_attribute_declaration] = STATE(316), - [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_seh_try_statement] = STATE(221), - [sym_seh_leave_statement] = STATE(221), - [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(316), - [sym_identifier] = ACTIONS(1374), - [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(415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_if] = ACTIONS(425), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_case] = ACTIONS(429), - [anon_sym_default] = ACTIONS(431), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_return] = ACTIONS(439), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_goto] = ACTIONS(445), - [anon_sym___try] = ACTIONS(447), - [anon_sym___leave] = ACTIONS(449), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1247), + [aux_sym_preproc_include_token1] = ACTIONS(1247), + [aux_sym_preproc_def_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token2] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), + [sym_preproc_directive] = ACTIONS(1247), + [anon_sym_LPAREN2] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1249), + [anon_sym_TILDE] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1247), + [anon_sym_typedef] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1247), + [anon_sym___attribute__] = ACTIONS(1247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1249), + [anon_sym___declspec] = ACTIONS(1247), + [anon_sym___cdecl] = ACTIONS(1247), + [anon_sym___clrcall] = ACTIONS(1247), + [anon_sym___stdcall] = ACTIONS(1247), + [anon_sym___fastcall] = ACTIONS(1247), + [anon_sym___thiscall] = ACTIONS(1247), + [anon_sym___vectorcall] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_signed] = ACTIONS(1247), + [anon_sym_unsigned] = ACTIONS(1247), + [anon_sym_long] = ACTIONS(1247), + [anon_sym_short] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1247), + [anon_sym_auto] = ACTIONS(1247), + [anon_sym_register] = ACTIONS(1247), + [anon_sym_inline] = ACTIONS(1247), + [anon_sym___inline] = ACTIONS(1247), + [anon_sym___inline__] = ACTIONS(1247), + [anon_sym___forceinline] = ACTIONS(1247), + [anon_sym_thread_local] = ACTIONS(1247), + [anon_sym___thread] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_constexpr] = ACTIONS(1247), + [anon_sym_volatile] = ACTIONS(1247), + [anon_sym_restrict] = ACTIONS(1247), + [anon_sym___restrict__] = ACTIONS(1247), + [anon_sym__Atomic] = ACTIONS(1247), + [anon_sym__Noreturn] = ACTIONS(1247), + [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym_alignas] = ACTIONS(1247), + [anon_sym__Alignas] = ACTIONS(1247), + [sym_primitive_type] = ACTIONS(1247), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_struct] = ACTIONS(1247), + [anon_sym_union] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_case] = ACTIONS(1247), + [anon_sym_default] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_goto] = ACTIONS(1247), + [anon_sym___try] = ACTIONS(1247), + [anon_sym___leave] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_sizeof] = ACTIONS(1247), + [anon_sym___alignof__] = ACTIONS(1247), + [anon_sym___alignof] = ACTIONS(1247), + [anon_sym__alignof] = ACTIONS(1247), + [anon_sym_alignof] = ACTIONS(1247), + [anon_sym__Alignof] = ACTIONS(1247), + [anon_sym_offsetof] = ACTIONS(1247), + [anon_sym__Generic] = ACTIONS(1247), + [anon_sym_asm] = ACTIONS(1247), + [anon_sym___asm__] = ACTIONS(1247), + [sym_number_literal] = ACTIONS(1249), + [anon_sym_L_SQUOTE] = ACTIONS(1249), + [anon_sym_u_SQUOTE] = ACTIONS(1249), + [anon_sym_U_SQUOTE] = ACTIONS(1249), + [anon_sym_u8_SQUOTE] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1249), + [anon_sym_L_DQUOTE] = ACTIONS(1249), + [anon_sym_u_DQUOTE] = ACTIONS(1249), + [anon_sym_U_DQUOTE] = ACTIONS(1249), + [anon_sym_u8_DQUOTE] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym_true] = ACTIONS(1247), + [sym_false] = ACTIONS(1247), + [anon_sym_NULL] = ACTIONS(1247), + [anon_sym_nullptr] = ACTIONS(1247), [sym_comment] = ACTIONS(3), }, [340] = { - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token2] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym___extension__] = ACTIONS(1272), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym___inline] = ACTIONS(1272), - [anon_sym___inline__] = ACTIONS(1272), - [anon_sym___forceinline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym___thread] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym___try] = ACTIONS(1272), - [anon_sym___leave] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym___alignof__] = ACTIONS(1272), - [anon_sym___alignof] = ACTIONS(1272), - [anon_sym__alignof] = ACTIONS(1272), - [anon_sym_alignof] = ACTIONS(1272), - [anon_sym__Alignof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), + [sym_identifier] = ACTIONS(1251), + [aux_sym_preproc_include_token1] = ACTIONS(1251), + [aux_sym_preproc_def_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token2] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), + [sym_preproc_directive] = ACTIONS(1251), + [anon_sym_LPAREN2] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_TILDE] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym___extension__] = ACTIONS(1251), + [anon_sym_typedef] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym___attribute__] = ACTIONS(1251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1253), + [anon_sym___declspec] = ACTIONS(1251), + [anon_sym___cdecl] = ACTIONS(1251), + [anon_sym___clrcall] = ACTIONS(1251), + [anon_sym___stdcall] = ACTIONS(1251), + [anon_sym___fastcall] = ACTIONS(1251), + [anon_sym___thiscall] = ACTIONS(1251), + [anon_sym___vectorcall] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_signed] = ACTIONS(1251), + [anon_sym_unsigned] = ACTIONS(1251), + [anon_sym_long] = ACTIONS(1251), + [anon_sym_short] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_auto] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_inline] = ACTIONS(1251), + [anon_sym___inline] = ACTIONS(1251), + [anon_sym___inline__] = ACTIONS(1251), + [anon_sym___forceinline] = ACTIONS(1251), + [anon_sym_thread_local] = ACTIONS(1251), + [anon_sym___thread] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_constexpr] = ACTIONS(1251), + [anon_sym_volatile] = ACTIONS(1251), + [anon_sym_restrict] = ACTIONS(1251), + [anon_sym___restrict__] = ACTIONS(1251), + [anon_sym__Atomic] = ACTIONS(1251), + [anon_sym__Noreturn] = ACTIONS(1251), + [anon_sym_noreturn] = ACTIONS(1251), + [anon_sym_alignas] = ACTIONS(1251), + [anon_sym__Alignas] = ACTIONS(1251), + [sym_primitive_type] = ACTIONS(1251), + [anon_sym_enum] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_switch] = ACTIONS(1251), + [anon_sym_case] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym___try] = ACTIONS(1251), + [anon_sym___leave] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_sizeof] = ACTIONS(1251), + [anon_sym___alignof__] = ACTIONS(1251), + [anon_sym___alignof] = ACTIONS(1251), + [anon_sym__alignof] = ACTIONS(1251), + [anon_sym_alignof] = ACTIONS(1251), + [anon_sym__Alignof] = ACTIONS(1251), + [anon_sym_offsetof] = ACTIONS(1251), + [anon_sym__Generic] = ACTIONS(1251), + [anon_sym_asm] = ACTIONS(1251), + [anon_sym___asm__] = ACTIONS(1251), + [sym_number_literal] = ACTIONS(1253), + [anon_sym_L_SQUOTE] = ACTIONS(1253), + [anon_sym_u_SQUOTE] = ACTIONS(1253), + [anon_sym_U_SQUOTE] = ACTIONS(1253), + [anon_sym_u8_SQUOTE] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1253), + [anon_sym_L_DQUOTE] = ACTIONS(1253), + [anon_sym_u_DQUOTE] = ACTIONS(1253), + [anon_sym_U_DQUOTE] = ACTIONS(1253), + [anon_sym_u8_DQUOTE] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym_true] = ACTIONS(1251), + [sym_false] = ACTIONS(1251), + [anon_sym_NULL] = ACTIONS(1251), + [anon_sym_nullptr] = ACTIONS(1251), [sym_comment] = ACTIONS(3), }, [341] = { - [sym_identifier] = ACTIONS(1252), - [aux_sym_preproc_include_token1] = ACTIONS(1252), - [aux_sym_preproc_def_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token2] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), - [sym_preproc_directive] = ACTIONS(1252), - [anon_sym_LPAREN2] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1252), - [anon_sym_typedef] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym___attribute__] = ACTIONS(1252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), - [anon_sym___declspec] = ACTIONS(1252), - [anon_sym___cdecl] = ACTIONS(1252), - [anon_sym___clrcall] = ACTIONS(1252), - [anon_sym___stdcall] = ACTIONS(1252), - [anon_sym___fastcall] = ACTIONS(1252), - [anon_sym___thiscall] = ACTIONS(1252), - [anon_sym___vectorcall] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = ACTIONS(1252), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_auto] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_inline] = ACTIONS(1252), - [anon_sym___inline] = ACTIONS(1252), - [anon_sym___inline__] = ACTIONS(1252), - [anon_sym___forceinline] = ACTIONS(1252), - [anon_sym_thread_local] = ACTIONS(1252), - [anon_sym___thread] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_constexpr] = ACTIONS(1252), - [anon_sym_volatile] = ACTIONS(1252), - [anon_sym_restrict] = ACTIONS(1252), - [anon_sym___restrict__] = ACTIONS(1252), - [anon_sym__Atomic] = ACTIONS(1252), - [anon_sym__Noreturn] = ACTIONS(1252), - [anon_sym_noreturn] = ACTIONS(1252), - [sym_primitive_type] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_switch] = ACTIONS(1252), - [anon_sym_case] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym___try] = ACTIONS(1252), - [anon_sym___leave] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(1252), - [anon_sym___alignof__] = ACTIONS(1252), - [anon_sym___alignof] = ACTIONS(1252), - [anon_sym__alignof] = ACTIONS(1252), - [anon_sym_alignof] = ACTIONS(1252), - [anon_sym__Alignof] = ACTIONS(1252), - [anon_sym_offsetof] = ACTIONS(1252), - [anon_sym__Generic] = ACTIONS(1252), - [anon_sym_asm] = ACTIONS(1252), - [anon_sym___asm__] = ACTIONS(1252), - [sym_number_literal] = ACTIONS(1254), - [anon_sym_L_SQUOTE] = ACTIONS(1254), - [anon_sym_u_SQUOTE] = ACTIONS(1254), - [anon_sym_U_SQUOTE] = ACTIONS(1254), - [anon_sym_u8_SQUOTE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_L_DQUOTE] = ACTIONS(1254), - [anon_sym_u_DQUOTE] = ACTIONS(1254), - [anon_sym_U_DQUOTE] = ACTIONS(1254), - [anon_sym_u8_DQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_true] = ACTIONS(1252), - [sym_false] = ACTIONS(1252), - [anon_sym_NULL] = ACTIONS(1252), - [anon_sym_nullptr] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1271), + [aux_sym_preproc_include_token1] = ACTIONS(1271), + [aux_sym_preproc_def_token1] = ACTIONS(1271), + [aux_sym_preproc_if_token1] = ACTIONS(1271), + [aux_sym_preproc_if_token2] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1271), + [sym_preproc_directive] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym___extension__] = ACTIONS(1271), + [anon_sym_typedef] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym___attribute__] = ACTIONS(1271), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1273), + [anon_sym___declspec] = ACTIONS(1271), + [anon_sym___cdecl] = ACTIONS(1271), + [anon_sym___clrcall] = ACTIONS(1271), + [anon_sym___stdcall] = ACTIONS(1271), + [anon_sym___fastcall] = ACTIONS(1271), + [anon_sym___thiscall] = ACTIONS(1271), + [anon_sym___vectorcall] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1271), + [anon_sym_unsigned] = ACTIONS(1271), + [anon_sym_long] = ACTIONS(1271), + [anon_sym_short] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_auto] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_inline] = ACTIONS(1271), + [anon_sym___inline] = ACTIONS(1271), + [anon_sym___inline__] = ACTIONS(1271), + [anon_sym___forceinline] = ACTIONS(1271), + [anon_sym_thread_local] = ACTIONS(1271), + [anon_sym___thread] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_constexpr] = ACTIONS(1271), + [anon_sym_volatile] = ACTIONS(1271), + [anon_sym_restrict] = ACTIONS(1271), + [anon_sym___restrict__] = ACTIONS(1271), + [anon_sym__Atomic] = ACTIONS(1271), + [anon_sym__Noreturn] = ACTIONS(1271), + [anon_sym_noreturn] = ACTIONS(1271), + [anon_sym_alignas] = ACTIONS(1271), + [anon_sym__Alignas] = ACTIONS(1271), + [sym_primitive_type] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_goto] = ACTIONS(1271), + [anon_sym___try] = ACTIONS(1271), + [anon_sym___leave] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1271), + [anon_sym___alignof__] = ACTIONS(1271), + [anon_sym___alignof] = ACTIONS(1271), + [anon_sym__alignof] = ACTIONS(1271), + [anon_sym_alignof] = ACTIONS(1271), + [anon_sym__Alignof] = ACTIONS(1271), + [anon_sym_offsetof] = ACTIONS(1271), + [anon_sym__Generic] = ACTIONS(1271), + [anon_sym_asm] = ACTIONS(1271), + [anon_sym___asm__] = ACTIONS(1271), + [sym_number_literal] = ACTIONS(1273), + [anon_sym_L_SQUOTE] = ACTIONS(1273), + [anon_sym_u_SQUOTE] = ACTIONS(1273), + [anon_sym_U_SQUOTE] = ACTIONS(1273), + [anon_sym_u8_SQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1273), + [anon_sym_L_DQUOTE] = ACTIONS(1273), + [anon_sym_u_DQUOTE] = ACTIONS(1273), + [anon_sym_U_DQUOTE] = ACTIONS(1273), + [anon_sym_u8_DQUOTE] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_true] = ACTIONS(1271), + [sym_false] = ACTIONS(1271), + [anon_sym_NULL] = ACTIONS(1271), + [anon_sym_nullptr] = ACTIONS(1271), [sym_comment] = ACTIONS(3), }, [342] = { - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym___extension__] = ACTIONS(1328), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym___inline] = ACTIONS(1328), - [anon_sym___inline__] = ACTIONS(1328), - [anon_sym___forceinline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym___thread] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [sym_primitive_type] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym___try] = ACTIONS(1328), - [anon_sym___leave] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym___alignof__] = ACTIONS(1328), - [anon_sym___alignof] = ACTIONS(1328), - [anon_sym__alignof] = ACTIONS(1328), - [anon_sym_alignof] = ACTIONS(1328), - [anon_sym__Alignof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1335), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), + [sym_preproc_directive] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym___extension__] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym___attribute__] = ACTIONS(1335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), + [anon_sym___declspec] = ACTIONS(1335), + [anon_sym___cdecl] = ACTIONS(1335), + [anon_sym___clrcall] = ACTIONS(1335), + [anon_sym___stdcall] = ACTIONS(1335), + [anon_sym___fastcall] = ACTIONS(1335), + [anon_sym___thiscall] = ACTIONS(1335), + [anon_sym___vectorcall] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_signed] = ACTIONS(1335), + [anon_sym_unsigned] = ACTIONS(1335), + [anon_sym_long] = ACTIONS(1335), + [anon_sym_short] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_auto] = ACTIONS(1335), + [anon_sym_register] = ACTIONS(1335), + [anon_sym_inline] = ACTIONS(1335), + [anon_sym___inline] = ACTIONS(1335), + [anon_sym___inline__] = ACTIONS(1335), + [anon_sym___forceinline] = ACTIONS(1335), + [anon_sym_thread_local] = ACTIONS(1335), + [anon_sym___thread] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_constexpr] = ACTIONS(1335), + [anon_sym_volatile] = ACTIONS(1335), + [anon_sym_restrict] = ACTIONS(1335), + [anon_sym___restrict__] = ACTIONS(1335), + [anon_sym__Atomic] = ACTIONS(1335), + [anon_sym__Noreturn] = ACTIONS(1335), + [anon_sym_noreturn] = ACTIONS(1335), + [anon_sym_alignas] = ACTIONS(1335), + [anon_sym__Alignas] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_switch] = ACTIONS(1335), + [anon_sym_case] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_goto] = ACTIONS(1335), + [anon_sym___try] = ACTIONS(1335), + [anon_sym___leave] = ACTIONS(1335), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(1335), + [anon_sym___alignof__] = ACTIONS(1335), + [anon_sym___alignof] = ACTIONS(1335), + [anon_sym__alignof] = ACTIONS(1335), + [anon_sym_alignof] = ACTIONS(1335), + [anon_sym__Alignof] = ACTIONS(1335), + [anon_sym_offsetof] = ACTIONS(1335), + [anon_sym__Generic] = ACTIONS(1335), + [anon_sym_asm] = ACTIONS(1335), + [anon_sym___asm__] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(1337), + [anon_sym_L_SQUOTE] = ACTIONS(1337), + [anon_sym_u_SQUOTE] = ACTIONS(1337), + [anon_sym_U_SQUOTE] = ACTIONS(1337), + [anon_sym_u8_SQUOTE] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_L_DQUOTE] = ACTIONS(1337), + [anon_sym_u_DQUOTE] = ACTIONS(1337), + [anon_sym_U_DQUOTE] = ACTIONS(1337), + [anon_sym_u8_DQUOTE] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym_true] = ACTIONS(1335), + [sym_false] = ACTIONS(1335), + [anon_sym_NULL] = ACTIONS(1335), + [anon_sym_nullptr] = ACTIONS(1335), [sym_comment] = ACTIONS(3), }, [343] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym___extension__] = ACTIONS(1336), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym___inline] = ACTIONS(1336), - [anon_sym___inline__] = ACTIONS(1336), - [anon_sym___forceinline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym___try] = ACTIONS(1336), - [anon_sym___leave] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym___alignof__] = ACTIONS(1336), - [anon_sym___alignof] = ACTIONS(1336), - [anon_sym__alignof] = ACTIONS(1336), - [anon_sym_alignof] = ACTIONS(1336), - [anon_sym__Alignof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), + [sym_identifier] = ACTIONS(1319), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), + [sym_preproc_directive] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym___extension__] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym___attribute__] = ACTIONS(1319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___cdecl] = ACTIONS(1319), + [anon_sym___clrcall] = ACTIONS(1319), + [anon_sym___stdcall] = ACTIONS(1319), + [anon_sym___fastcall] = ACTIONS(1319), + [anon_sym___thiscall] = ACTIONS(1319), + [anon_sym___vectorcall] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1319), + [anon_sym_unsigned] = ACTIONS(1319), + [anon_sym_long] = ACTIONS(1319), + [anon_sym_short] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_auto] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1319), + [anon_sym___inline] = ACTIONS(1319), + [anon_sym___inline__] = ACTIONS(1319), + [anon_sym___forceinline] = ACTIONS(1319), + [anon_sym_thread_local] = ACTIONS(1319), + [anon_sym___thread] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_constexpr] = ACTIONS(1319), + [anon_sym_volatile] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1319), + [anon_sym___restrict__] = ACTIONS(1319), + [anon_sym__Atomic] = ACTIONS(1319), + [anon_sym__Noreturn] = ACTIONS(1319), + [anon_sym_noreturn] = ACTIONS(1319), + [anon_sym_alignas] = ACTIONS(1319), + [anon_sym__Alignas] = ACTIONS(1319), + [sym_primitive_type] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_case] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_goto] = ACTIONS(1319), + [anon_sym___try] = ACTIONS(1319), + [anon_sym___leave] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_sizeof] = ACTIONS(1319), + [anon_sym___alignof__] = ACTIONS(1319), + [anon_sym___alignof] = ACTIONS(1319), + [anon_sym__alignof] = ACTIONS(1319), + [anon_sym_alignof] = ACTIONS(1319), + [anon_sym__Alignof] = ACTIONS(1319), + [anon_sym_offsetof] = ACTIONS(1319), + [anon_sym__Generic] = ACTIONS(1319), + [anon_sym_asm] = ACTIONS(1319), + [anon_sym___asm__] = ACTIONS(1319), + [sym_number_literal] = ACTIONS(1321), + [anon_sym_L_SQUOTE] = ACTIONS(1321), + [anon_sym_u_SQUOTE] = ACTIONS(1321), + [anon_sym_U_SQUOTE] = ACTIONS(1321), + [anon_sym_u8_SQUOTE] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_L_DQUOTE] = ACTIONS(1321), + [anon_sym_u_DQUOTE] = ACTIONS(1321), + [anon_sym_U_DQUOTE] = ACTIONS(1321), + [anon_sym_u8_DQUOTE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym_true] = ACTIONS(1319), + [sym_false] = ACTIONS(1319), + [anon_sym_NULL] = ACTIONS(1319), + [anon_sym_nullptr] = ACTIONS(1319), [sym_comment] = ACTIONS(3), }, [344] = { - [sym_attribute_declaration] = STATE(358), - [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_seh_try_statement] = STATE(181), - [sym_seh_leave_statement] = STATE(181), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1380), - [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(363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1077), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1079), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1083), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1323), + [aux_sym_preproc_include_token1] = ACTIONS(1323), + [aux_sym_preproc_def_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token2] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), + [sym_preproc_directive] = ACTIONS(1323), + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym___extension__] = ACTIONS(1323), + [anon_sym_typedef] = ACTIONS(1323), + [anon_sym_extern] = ACTIONS(1323), + [anon_sym___attribute__] = ACTIONS(1323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(1323), + [anon_sym___cdecl] = ACTIONS(1323), + [anon_sym___clrcall] = ACTIONS(1323), + [anon_sym___stdcall] = ACTIONS(1323), + [anon_sym___fastcall] = ACTIONS(1323), + [anon_sym___thiscall] = ACTIONS(1323), + [anon_sym___vectorcall] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_signed] = ACTIONS(1323), + [anon_sym_unsigned] = ACTIONS(1323), + [anon_sym_long] = ACTIONS(1323), + [anon_sym_short] = ACTIONS(1323), + [anon_sym_static] = ACTIONS(1323), + [anon_sym_auto] = ACTIONS(1323), + [anon_sym_register] = ACTIONS(1323), + [anon_sym_inline] = ACTIONS(1323), + [anon_sym___inline] = ACTIONS(1323), + [anon_sym___inline__] = ACTIONS(1323), + [anon_sym___forceinline] = ACTIONS(1323), + [anon_sym_thread_local] = ACTIONS(1323), + [anon_sym___thread] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_constexpr] = ACTIONS(1323), + [anon_sym_volatile] = ACTIONS(1323), + [anon_sym_restrict] = ACTIONS(1323), + [anon_sym___restrict__] = ACTIONS(1323), + [anon_sym__Atomic] = ACTIONS(1323), + [anon_sym__Noreturn] = ACTIONS(1323), + [anon_sym_noreturn] = ACTIONS(1323), + [anon_sym_alignas] = ACTIONS(1323), + [anon_sym__Alignas] = ACTIONS(1323), + [sym_primitive_type] = ACTIONS(1323), + [anon_sym_enum] = ACTIONS(1323), + [anon_sym_struct] = ACTIONS(1323), + [anon_sym_union] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_switch] = ACTIONS(1323), + [anon_sym_case] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_do] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_goto] = ACTIONS(1323), + [anon_sym___try] = ACTIONS(1323), + [anon_sym___leave] = ACTIONS(1323), + [anon_sym_DASH_DASH] = ACTIONS(1325), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_sizeof] = ACTIONS(1323), + [anon_sym___alignof__] = ACTIONS(1323), + [anon_sym___alignof] = ACTIONS(1323), + [anon_sym__alignof] = ACTIONS(1323), + [anon_sym_alignof] = ACTIONS(1323), + [anon_sym__Alignof] = ACTIONS(1323), + [anon_sym_offsetof] = ACTIONS(1323), + [anon_sym__Generic] = ACTIONS(1323), + [anon_sym_asm] = ACTIONS(1323), + [anon_sym___asm__] = ACTIONS(1323), + [sym_number_literal] = ACTIONS(1325), + [anon_sym_L_SQUOTE] = ACTIONS(1325), + [anon_sym_u_SQUOTE] = ACTIONS(1325), + [anon_sym_U_SQUOTE] = ACTIONS(1325), + [anon_sym_u8_SQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1325), + [anon_sym_L_DQUOTE] = ACTIONS(1325), + [anon_sym_u_DQUOTE] = ACTIONS(1325), + [anon_sym_U_DQUOTE] = ACTIONS(1325), + [anon_sym_u8_DQUOTE] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [anon_sym_NULL] = ACTIONS(1323), + [anon_sym_nullptr] = ACTIONS(1323), [sym_comment] = ACTIONS(3), }, [345] = { - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym___extension__] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1316), - [anon_sym___cdecl] = ACTIONS(1316), - [anon_sym___clrcall] = ACTIONS(1316), - [anon_sym___stdcall] = ACTIONS(1316), - [anon_sym___fastcall] = ACTIONS(1316), - [anon_sym___thiscall] = ACTIONS(1316), - [anon_sym___vectorcall] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym___inline] = ACTIONS(1316), - [anon_sym___inline__] = ACTIONS(1316), - [anon_sym___forceinline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_constexpr] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym___restrict__] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [anon_sym__Noreturn] = ACTIONS(1316), - [anon_sym_noreturn] = ACTIONS(1316), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym___try] = ACTIONS(1316), - [anon_sym___leave] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym___alignof__] = ACTIONS(1316), - [anon_sym___alignof] = ACTIONS(1316), - [anon_sym__alignof] = ACTIONS(1316), - [anon_sym_alignof] = ACTIONS(1316), - [anon_sym__Alignof] = ACTIONS(1316), - [anon_sym_offsetof] = ACTIONS(1316), - [anon_sym__Generic] = ACTIONS(1316), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym___asm__] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1355), + [aux_sym_preproc_include_token1] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1355), + [aux_sym_preproc_if_token1] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1355), + [sym_preproc_directive] = ACTIONS(1355), + [anon_sym_LPAREN2] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1357), + [anon_sym_TILDE] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym___extension__] = ACTIONS(1355), + [anon_sym_typedef] = ACTIONS(1355), + [anon_sym_extern] = ACTIONS(1355), + [anon_sym___attribute__] = ACTIONS(1355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1357), + [anon_sym___declspec] = ACTIONS(1355), + [anon_sym___cdecl] = ACTIONS(1355), + [anon_sym___clrcall] = ACTIONS(1355), + [anon_sym___stdcall] = ACTIONS(1355), + [anon_sym___fastcall] = ACTIONS(1355), + [anon_sym___thiscall] = ACTIONS(1355), + [anon_sym___vectorcall] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1357), + [anon_sym_signed] = ACTIONS(1355), + [anon_sym_unsigned] = ACTIONS(1355), + [anon_sym_long] = ACTIONS(1355), + [anon_sym_short] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_auto] = ACTIONS(1355), + [anon_sym_register] = ACTIONS(1355), + [anon_sym_inline] = ACTIONS(1355), + [anon_sym___inline] = ACTIONS(1355), + [anon_sym___inline__] = ACTIONS(1355), + [anon_sym___forceinline] = ACTIONS(1355), + [anon_sym_thread_local] = ACTIONS(1355), + [anon_sym___thread] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_constexpr] = ACTIONS(1355), + [anon_sym_volatile] = ACTIONS(1355), + [anon_sym_restrict] = ACTIONS(1355), + [anon_sym___restrict__] = ACTIONS(1355), + [anon_sym__Atomic] = ACTIONS(1355), + [anon_sym__Noreturn] = ACTIONS(1355), + [anon_sym_noreturn] = ACTIONS(1355), + [anon_sym_alignas] = ACTIONS(1355), + [anon_sym__Alignas] = ACTIONS(1355), + [sym_primitive_type] = ACTIONS(1355), + [anon_sym_enum] = ACTIONS(1355), + [anon_sym_struct] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_switch] = ACTIONS(1355), + [anon_sym_case] = ACTIONS(1355), + [anon_sym_default] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_do] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_goto] = ACTIONS(1355), + [anon_sym___try] = ACTIONS(1355), + [anon_sym___leave] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1355), + [anon_sym___alignof__] = ACTIONS(1355), + [anon_sym___alignof] = ACTIONS(1355), + [anon_sym__alignof] = ACTIONS(1355), + [anon_sym_alignof] = ACTIONS(1355), + [anon_sym__Alignof] = ACTIONS(1355), + [anon_sym_offsetof] = ACTIONS(1355), + [anon_sym__Generic] = ACTIONS(1355), + [anon_sym_asm] = ACTIONS(1355), + [anon_sym___asm__] = ACTIONS(1355), + [sym_number_literal] = ACTIONS(1357), + [anon_sym_L_SQUOTE] = ACTIONS(1357), + [anon_sym_u_SQUOTE] = ACTIONS(1357), + [anon_sym_U_SQUOTE] = ACTIONS(1357), + [anon_sym_u8_SQUOTE] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1357), + [anon_sym_L_DQUOTE] = ACTIONS(1357), + [anon_sym_u_DQUOTE] = ACTIONS(1357), + [anon_sym_U_DQUOTE] = ACTIONS(1357), + [anon_sym_u8_DQUOTE] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [sym_true] = ACTIONS(1355), + [sym_false] = ACTIONS(1355), + [anon_sym_NULL] = ACTIONS(1355), + [anon_sym_nullptr] = ACTIONS(1355), [sym_comment] = ACTIONS(3), }, [346] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym___inline] = ACTIONS(1312), - [anon_sym___inline__] = ACTIONS(1312), - [anon_sym___forceinline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym___try] = ACTIONS(1312), - [anon_sym___leave] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym___alignof__] = ACTIONS(1312), - [anon_sym___alignof] = ACTIONS(1312), - [anon_sym__alignof] = ACTIONS(1312), - [anon_sym_alignof] = ACTIONS(1312), - [anon_sym__Alignof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1295), + [aux_sym_preproc_include_token1] = ACTIONS(1295), + [aux_sym_preproc_def_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token2] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), + [sym_preproc_directive] = ACTIONS(1295), + [anon_sym_LPAREN2] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym___extension__] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym___attribute__] = ACTIONS(1295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), + [anon_sym___declspec] = ACTIONS(1295), + [anon_sym___cdecl] = ACTIONS(1295), + [anon_sym___clrcall] = ACTIONS(1295), + [anon_sym___stdcall] = ACTIONS(1295), + [anon_sym___fastcall] = ACTIONS(1295), + [anon_sym___thiscall] = ACTIONS(1295), + [anon_sym___vectorcall] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_signed] = ACTIONS(1295), + [anon_sym_unsigned] = ACTIONS(1295), + [anon_sym_long] = ACTIONS(1295), + [anon_sym_short] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_auto] = ACTIONS(1295), + [anon_sym_register] = ACTIONS(1295), + [anon_sym_inline] = ACTIONS(1295), + [anon_sym___inline] = ACTIONS(1295), + [anon_sym___inline__] = ACTIONS(1295), + [anon_sym___forceinline] = ACTIONS(1295), + [anon_sym_thread_local] = ACTIONS(1295), + [anon_sym___thread] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_constexpr] = ACTIONS(1295), + [anon_sym_volatile] = ACTIONS(1295), + [anon_sym_restrict] = ACTIONS(1295), + [anon_sym___restrict__] = ACTIONS(1295), + [anon_sym__Atomic] = ACTIONS(1295), + [anon_sym__Noreturn] = ACTIONS(1295), + [anon_sym_noreturn] = ACTIONS(1295), + [anon_sym_alignas] = ACTIONS(1295), + [anon_sym__Alignas] = ACTIONS(1295), + [sym_primitive_type] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_switch] = ACTIONS(1295), + [anon_sym_case] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_do] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_goto] = ACTIONS(1295), + [anon_sym___try] = ACTIONS(1295), + [anon_sym___leave] = ACTIONS(1295), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_sizeof] = ACTIONS(1295), + [anon_sym___alignof__] = ACTIONS(1295), + [anon_sym___alignof] = ACTIONS(1295), + [anon_sym__alignof] = ACTIONS(1295), + [anon_sym_alignof] = ACTIONS(1295), + [anon_sym__Alignof] = ACTIONS(1295), + [anon_sym_offsetof] = ACTIONS(1295), + [anon_sym__Generic] = ACTIONS(1295), + [anon_sym_asm] = ACTIONS(1295), + [anon_sym___asm__] = ACTIONS(1295), + [sym_number_literal] = ACTIONS(1297), + [anon_sym_L_SQUOTE] = ACTIONS(1297), + [anon_sym_u_SQUOTE] = ACTIONS(1297), + [anon_sym_U_SQUOTE] = ACTIONS(1297), + [anon_sym_u8_SQUOTE] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_L_DQUOTE] = ACTIONS(1297), + [anon_sym_u_DQUOTE] = ACTIONS(1297), + [anon_sym_U_DQUOTE] = ACTIONS(1297), + [anon_sym_u8_DQUOTE] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym_true] = ACTIONS(1295), + [sym_false] = ACTIONS(1295), + [anon_sym_NULL] = ACTIONS(1295), + [anon_sym_nullptr] = ACTIONS(1295), [sym_comment] = ACTIONS(3), }, [347] = { - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym___extension__] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym___inline] = ACTIONS(1304), - [anon_sym___inline__] = ACTIONS(1304), - [anon_sym___forceinline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym___thread] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym___try] = ACTIONS(1304), - [anon_sym___leave] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym___alignof__] = ACTIONS(1304), - [anon_sym___alignof] = ACTIONS(1304), - [anon_sym__alignof] = ACTIONS(1304), - [anon_sym_alignof] = ACTIONS(1304), - [anon_sym__Alignof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_include_token1] = ACTIONS(1267), + [aux_sym_preproc_def_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), + [sym_preproc_directive] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_TILDE] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym___extension__] = ACTIONS(1267), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1269), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [anon_sym___inline] = ACTIONS(1267), + [anon_sym___inline__] = ACTIONS(1267), + [anon_sym___forceinline] = ACTIONS(1267), + [anon_sym_thread_local] = ACTIONS(1267), + [anon_sym___thread] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_constexpr] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym___restrict__] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym__Noreturn] = ACTIONS(1267), + [anon_sym_noreturn] = ACTIONS(1267), + [anon_sym_alignas] = ACTIONS(1267), + [anon_sym__Alignas] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym___try] = ACTIONS(1267), + [anon_sym___leave] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(1267), + [anon_sym___alignof__] = ACTIONS(1267), + [anon_sym___alignof] = ACTIONS(1267), + [anon_sym__alignof] = ACTIONS(1267), + [anon_sym_alignof] = ACTIONS(1267), + [anon_sym__Alignof] = ACTIONS(1267), + [anon_sym_offsetof] = ACTIONS(1267), + [anon_sym__Generic] = ACTIONS(1267), + [anon_sym_asm] = ACTIONS(1267), + [anon_sym___asm__] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1269), + [anon_sym_L_SQUOTE] = ACTIONS(1269), + [anon_sym_u_SQUOTE] = ACTIONS(1269), + [anon_sym_U_SQUOTE] = ACTIONS(1269), + [anon_sym_u8_SQUOTE] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1269), + [anon_sym_L_DQUOTE] = ACTIONS(1269), + [anon_sym_u_DQUOTE] = ACTIONS(1269), + [anon_sym_U_DQUOTE] = ACTIONS(1269), + [anon_sym_u8_DQUOTE] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [anon_sym_NULL] = ACTIONS(1267), + [anon_sym_nullptr] = ACTIONS(1267), [sym_comment] = ACTIONS(3), }, [348] = { - [sym_identifier] = ACTIONS(1244), - [aux_sym_preproc_include_token1] = ACTIONS(1244), - [aux_sym_preproc_def_token1] = ACTIONS(1244), - [aux_sym_preproc_if_token1] = ACTIONS(1244), - [aux_sym_preproc_if_token2] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), - [sym_preproc_directive] = ACTIONS(1244), - [anon_sym_LPAREN2] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_TILDE] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym___extension__] = ACTIONS(1244), - [anon_sym_typedef] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1244), - [anon_sym___attribute__] = ACTIONS(1244), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), - [anon_sym___declspec] = ACTIONS(1244), - [anon_sym___cdecl] = ACTIONS(1244), - [anon_sym___clrcall] = ACTIONS(1244), - [anon_sym___stdcall] = ACTIONS(1244), - [anon_sym___fastcall] = ACTIONS(1244), - [anon_sym___thiscall] = ACTIONS(1244), - [anon_sym___vectorcall] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = ACTIONS(1244), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_auto] = ACTIONS(1244), - [anon_sym_register] = ACTIONS(1244), - [anon_sym_inline] = ACTIONS(1244), - [anon_sym___inline] = ACTIONS(1244), - [anon_sym___inline__] = ACTIONS(1244), - [anon_sym___forceinline] = ACTIONS(1244), - [anon_sym_thread_local] = ACTIONS(1244), - [anon_sym___thread] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_constexpr] = ACTIONS(1244), - [anon_sym_volatile] = ACTIONS(1244), - [anon_sym_restrict] = ACTIONS(1244), - [anon_sym___restrict__] = ACTIONS(1244), - [anon_sym__Atomic] = ACTIONS(1244), - [anon_sym__Noreturn] = ACTIONS(1244), - [anon_sym_noreturn] = ACTIONS(1244), - [sym_primitive_type] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [anon_sym_union] = ACTIONS(1244), - [anon_sym_if] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1244), - [anon_sym_case] = ACTIONS(1244), - [anon_sym_default] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(1244), - [anon_sym_for] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1244), - [anon_sym_break] = ACTIONS(1244), - [anon_sym_continue] = ACTIONS(1244), - [anon_sym_goto] = ACTIONS(1244), - [anon_sym___try] = ACTIONS(1244), - [anon_sym___leave] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_sizeof] = ACTIONS(1244), - [anon_sym___alignof__] = ACTIONS(1244), - [anon_sym___alignof] = ACTIONS(1244), - [anon_sym__alignof] = ACTIONS(1244), - [anon_sym_alignof] = ACTIONS(1244), - [anon_sym__Alignof] = ACTIONS(1244), - [anon_sym_offsetof] = ACTIONS(1244), - [anon_sym__Generic] = ACTIONS(1244), - [anon_sym_asm] = ACTIONS(1244), - [anon_sym___asm__] = ACTIONS(1244), - [sym_number_literal] = ACTIONS(1246), - [anon_sym_L_SQUOTE] = ACTIONS(1246), - [anon_sym_u_SQUOTE] = ACTIONS(1246), - [anon_sym_U_SQUOTE] = ACTIONS(1246), - [anon_sym_u8_SQUOTE] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_L_DQUOTE] = ACTIONS(1246), - [anon_sym_u_DQUOTE] = ACTIONS(1246), - [anon_sym_U_DQUOTE] = ACTIONS(1246), - [anon_sym_u8_DQUOTE] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_true] = ACTIONS(1244), - [sym_false] = ACTIONS(1244), - [anon_sym_NULL] = ACTIONS(1244), - [anon_sym_nullptr] = ACTIONS(1244), + [sym_identifier] = ACTIONS(1307), + [aux_sym_preproc_include_token1] = ACTIONS(1307), + [aux_sym_preproc_def_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token2] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), + [sym_preproc_directive] = ACTIONS(1307), + [anon_sym_LPAREN2] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym___extension__] = ACTIONS(1307), + [anon_sym_typedef] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym___attribute__] = ACTIONS(1307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), + [anon_sym___declspec] = ACTIONS(1307), + [anon_sym___cdecl] = ACTIONS(1307), + [anon_sym___clrcall] = ACTIONS(1307), + [anon_sym___stdcall] = ACTIONS(1307), + [anon_sym___fastcall] = ACTIONS(1307), + [anon_sym___thiscall] = ACTIONS(1307), + [anon_sym___vectorcall] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(1307), + [anon_sym_unsigned] = ACTIONS(1307), + [anon_sym_long] = ACTIONS(1307), + [anon_sym_short] = ACTIONS(1307), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_auto] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_inline] = ACTIONS(1307), + [anon_sym___inline] = ACTIONS(1307), + [anon_sym___inline__] = ACTIONS(1307), + [anon_sym___forceinline] = ACTIONS(1307), + [anon_sym_thread_local] = ACTIONS(1307), + [anon_sym___thread] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_constexpr] = ACTIONS(1307), + [anon_sym_volatile] = ACTIONS(1307), + [anon_sym_restrict] = ACTIONS(1307), + [anon_sym___restrict__] = ACTIONS(1307), + [anon_sym__Atomic] = ACTIONS(1307), + [anon_sym__Noreturn] = ACTIONS(1307), + [anon_sym_noreturn] = ACTIONS(1307), + [anon_sym_alignas] = ACTIONS(1307), + [anon_sym__Alignas] = ACTIONS(1307), + [sym_primitive_type] = ACTIONS(1307), + [anon_sym_enum] = ACTIONS(1307), + [anon_sym_struct] = ACTIONS(1307), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_switch] = ACTIONS(1307), + [anon_sym_case] = ACTIONS(1307), + [anon_sym_default] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_goto] = ACTIONS(1307), + [anon_sym___try] = ACTIONS(1307), + [anon_sym___leave] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym___alignof__] = ACTIONS(1307), + [anon_sym___alignof] = ACTIONS(1307), + [anon_sym__alignof] = ACTIONS(1307), + [anon_sym_alignof] = ACTIONS(1307), + [anon_sym__Alignof] = ACTIONS(1307), + [anon_sym_offsetof] = ACTIONS(1307), + [anon_sym__Generic] = ACTIONS(1307), + [anon_sym_asm] = ACTIONS(1307), + [anon_sym___asm__] = ACTIONS(1307), + [sym_number_literal] = ACTIONS(1309), + [anon_sym_L_SQUOTE] = ACTIONS(1309), + [anon_sym_u_SQUOTE] = ACTIONS(1309), + [anon_sym_U_SQUOTE] = ACTIONS(1309), + [anon_sym_u8_SQUOTE] = ACTIONS(1309), + [anon_sym_SQUOTE] = ACTIONS(1309), + [anon_sym_L_DQUOTE] = ACTIONS(1309), + [anon_sym_u_DQUOTE] = ACTIONS(1309), + [anon_sym_U_DQUOTE] = ACTIONS(1309), + [anon_sym_u8_DQUOTE] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1309), + [sym_true] = ACTIONS(1307), + [sym_false] = ACTIONS(1307), + [anon_sym_NULL] = ACTIONS(1307), + [anon_sym_nullptr] = ACTIONS(1307), [sym_comment] = ACTIONS(3), }, [349] = { - [sym_attribute_declaration] = STATE(349), - [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_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [sym_identifier] = ACTIONS(1532), - [anon_sym_LPAREN2] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1538), - [anon_sym_switch] = ACTIONS(1494), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1547), - [anon_sym_do] = ACTIONS(1506), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_goto] = ACTIONS(1521), - [anon_sym___try] = ACTIONS(1553), - [anon_sym___leave] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1455), - [anon_sym___alignof] = ACTIONS(1455), - [anon_sym__alignof] = ACTIONS(1455), - [anon_sym_alignof] = ACTIONS(1455), - [anon_sym__Alignof] = ACTIONS(1455), - [anon_sym_offsetof] = ACTIONS(1458), - [anon_sym__Generic] = ACTIONS(1461), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1467), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1473), - [anon_sym_u_DQUOTE] = ACTIONS(1473), - [anon_sym_U_DQUOTE] = ACTIONS(1473), - [anon_sym_u8_DQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1479), - [anon_sym_nullptr] = ACTIONS(1479), + [sym_identifier] = ACTIONS(1279), + [aux_sym_preproc_include_token1] = ACTIONS(1279), + [aux_sym_preproc_def_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), + [sym_preproc_directive] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym___extension__] = ACTIONS(1279), + [anon_sym_typedef] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym___attribute__] = ACTIONS(1279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), + [anon_sym___declspec] = ACTIONS(1279), + [anon_sym___cdecl] = ACTIONS(1279), + [anon_sym___clrcall] = ACTIONS(1279), + [anon_sym___stdcall] = ACTIONS(1279), + [anon_sym___fastcall] = ACTIONS(1279), + [anon_sym___thiscall] = ACTIONS(1279), + [anon_sym___vectorcall] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_signed] = ACTIONS(1279), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_auto] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_inline] = ACTIONS(1279), + [anon_sym___inline] = ACTIONS(1279), + [anon_sym___inline__] = ACTIONS(1279), + [anon_sym___forceinline] = ACTIONS(1279), + [anon_sym_thread_local] = ACTIONS(1279), + [anon_sym___thread] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_constexpr] = ACTIONS(1279), + [anon_sym_volatile] = ACTIONS(1279), + [anon_sym_restrict] = ACTIONS(1279), + [anon_sym___restrict__] = ACTIONS(1279), + [anon_sym__Atomic] = ACTIONS(1279), + [anon_sym__Noreturn] = ACTIONS(1279), + [anon_sym_noreturn] = ACTIONS(1279), + [anon_sym_alignas] = ACTIONS(1279), + [anon_sym__Alignas] = ACTIONS(1279), + [sym_primitive_type] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_switch] = ACTIONS(1279), + [anon_sym_case] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_goto] = ACTIONS(1279), + [anon_sym___try] = ACTIONS(1279), + [anon_sym___leave] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1279), + [anon_sym___alignof__] = ACTIONS(1279), + [anon_sym___alignof] = ACTIONS(1279), + [anon_sym__alignof] = ACTIONS(1279), + [anon_sym_alignof] = ACTIONS(1279), + [anon_sym__Alignof] = ACTIONS(1279), + [anon_sym_offsetof] = ACTIONS(1279), + [anon_sym__Generic] = ACTIONS(1279), + [anon_sym_asm] = ACTIONS(1279), + [anon_sym___asm__] = ACTIONS(1279), + [sym_number_literal] = ACTIONS(1281), + [anon_sym_L_SQUOTE] = ACTIONS(1281), + [anon_sym_u_SQUOTE] = ACTIONS(1281), + [anon_sym_U_SQUOTE] = ACTIONS(1281), + [anon_sym_u8_SQUOTE] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_L_DQUOTE] = ACTIONS(1281), + [anon_sym_u_DQUOTE] = ACTIONS(1281), + [anon_sym_U_DQUOTE] = ACTIONS(1281), + [anon_sym_u8_DQUOTE] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [anon_sym_NULL] = ACTIONS(1279), + [anon_sym_nullptr] = ACTIONS(1279), [sym_comment] = ACTIONS(3), }, [350] = { - [sym_attribute_declaration] = STATE(358), - [sym_compound_statement] = STATE(308), - [sym_attributed_statement] = STATE(308), - [sym_labeled_statement] = STATE(308), - [sym_expression_statement] = STATE(308), - [sym_if_statement] = STATE(308), - [sym_switch_statement] = STATE(308), - [sym_case_statement] = STATE(308), - [sym_while_statement] = STATE(308), - [sym_do_statement] = STATE(308), - [sym_for_statement] = STATE(308), - [sym_return_statement] = STATE(308), - [sym_break_statement] = STATE(308), - [sym_continue_statement] = STATE(308), - [sym_goto_statement] = STATE(308), - [sym_seh_try_statement] = STATE(308), - [sym_seh_leave_statement] = STATE(308), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1287), + [aux_sym_preproc_include_token1] = ACTIONS(1287), + [aux_sym_preproc_def_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), + [sym_preproc_directive] = ACTIONS(1287), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym___extension__] = ACTIONS(1287), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym___attribute__] = ACTIONS(1287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), + [anon_sym___declspec] = ACTIONS(1287), + [anon_sym___cdecl] = ACTIONS(1287), + [anon_sym___clrcall] = ACTIONS(1287), + [anon_sym___stdcall] = ACTIONS(1287), + [anon_sym___fastcall] = ACTIONS(1287), + [anon_sym___thiscall] = ACTIONS(1287), + [anon_sym___vectorcall] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym_signed] = ACTIONS(1287), + [anon_sym_unsigned] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_auto] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_inline] = ACTIONS(1287), + [anon_sym___inline] = ACTIONS(1287), + [anon_sym___inline__] = ACTIONS(1287), + [anon_sym___forceinline] = ACTIONS(1287), + [anon_sym_thread_local] = ACTIONS(1287), + [anon_sym___thread] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_constexpr] = ACTIONS(1287), + [anon_sym_volatile] = ACTIONS(1287), + [anon_sym_restrict] = ACTIONS(1287), + [anon_sym___restrict__] = ACTIONS(1287), + [anon_sym__Atomic] = ACTIONS(1287), + [anon_sym__Noreturn] = ACTIONS(1287), + [anon_sym_noreturn] = ACTIONS(1287), + [anon_sym_alignas] = ACTIONS(1287), + [anon_sym__Alignas] = ACTIONS(1287), + [sym_primitive_type] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_switch] = ACTIONS(1287), + [anon_sym_case] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_goto] = ACTIONS(1287), + [anon_sym___try] = ACTIONS(1287), + [anon_sym___leave] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_sizeof] = ACTIONS(1287), + [anon_sym___alignof__] = ACTIONS(1287), + [anon_sym___alignof] = ACTIONS(1287), + [anon_sym__alignof] = ACTIONS(1287), + [anon_sym_alignof] = ACTIONS(1287), + [anon_sym__Alignof] = ACTIONS(1287), + [anon_sym_offsetof] = ACTIONS(1287), + [anon_sym__Generic] = ACTIONS(1287), + [anon_sym_asm] = ACTIONS(1287), + [anon_sym___asm__] = ACTIONS(1287), + [sym_number_literal] = ACTIONS(1289), + [anon_sym_L_SQUOTE] = ACTIONS(1289), + [anon_sym_u_SQUOTE] = ACTIONS(1289), + [anon_sym_U_SQUOTE] = ACTIONS(1289), + [anon_sym_u8_SQUOTE] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_L_DQUOTE] = ACTIONS(1289), + [anon_sym_u_DQUOTE] = ACTIONS(1289), + [anon_sym_U_DQUOTE] = ACTIONS(1289), + [anon_sym_u8_DQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [anon_sym_NULL] = ACTIONS(1287), + [anon_sym_nullptr] = ACTIONS(1287), + [sym_comment] = ACTIONS(3), + }, + [351] = { + [sym_identifier] = ACTIONS(1251), + [aux_sym_preproc_include_token1] = ACTIONS(1251), + [aux_sym_preproc_def_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token1] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), + [sym_preproc_directive] = ACTIONS(1251), + [anon_sym_LPAREN2] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_TILDE] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym___extension__] = ACTIONS(1251), + [anon_sym_typedef] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym___attribute__] = ACTIONS(1251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1253), + [anon_sym___declspec] = ACTIONS(1251), + [anon_sym___cdecl] = ACTIONS(1251), + [anon_sym___clrcall] = ACTIONS(1251), + [anon_sym___stdcall] = ACTIONS(1251), + [anon_sym___fastcall] = ACTIONS(1251), + [anon_sym___thiscall] = ACTIONS(1251), + [anon_sym___vectorcall] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_signed] = ACTIONS(1251), + [anon_sym_unsigned] = ACTIONS(1251), + [anon_sym_long] = ACTIONS(1251), + [anon_sym_short] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_auto] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_inline] = ACTIONS(1251), + [anon_sym___inline] = ACTIONS(1251), + [anon_sym___inline__] = ACTIONS(1251), + [anon_sym___forceinline] = ACTIONS(1251), + [anon_sym_thread_local] = ACTIONS(1251), + [anon_sym___thread] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_constexpr] = ACTIONS(1251), + [anon_sym_volatile] = ACTIONS(1251), + [anon_sym_restrict] = ACTIONS(1251), + [anon_sym___restrict__] = ACTIONS(1251), + [anon_sym__Atomic] = ACTIONS(1251), + [anon_sym__Noreturn] = ACTIONS(1251), + [anon_sym_noreturn] = ACTIONS(1251), + [anon_sym_alignas] = ACTIONS(1251), + [anon_sym__Alignas] = ACTIONS(1251), + [sym_primitive_type] = ACTIONS(1251), + [anon_sym_enum] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_switch] = ACTIONS(1251), + [anon_sym_case] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym___try] = ACTIONS(1251), + [anon_sym___leave] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_sizeof] = ACTIONS(1251), + [anon_sym___alignof__] = ACTIONS(1251), + [anon_sym___alignof] = ACTIONS(1251), + [anon_sym__alignof] = ACTIONS(1251), + [anon_sym_alignof] = ACTIONS(1251), + [anon_sym__Alignof] = ACTIONS(1251), + [anon_sym_offsetof] = ACTIONS(1251), + [anon_sym__Generic] = ACTIONS(1251), + [anon_sym_asm] = ACTIONS(1251), + [anon_sym___asm__] = ACTIONS(1251), + [sym_number_literal] = ACTIONS(1253), + [anon_sym_L_SQUOTE] = ACTIONS(1253), + [anon_sym_u_SQUOTE] = ACTIONS(1253), + [anon_sym_U_SQUOTE] = ACTIONS(1253), + [anon_sym_u8_SQUOTE] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1253), + [anon_sym_L_DQUOTE] = ACTIONS(1253), + [anon_sym_u_DQUOTE] = ACTIONS(1253), + [anon_sym_U_DQUOTE] = ACTIONS(1253), + [anon_sym_u8_DQUOTE] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym_true] = ACTIONS(1251), + [sym_false] = ACTIONS(1251), + [anon_sym_NULL] = ACTIONS(1251), + [anon_sym_nullptr] = ACTIONS(1251), + [sym_comment] = ACTIONS(3), + }, + [352] = { + [sym_identifier] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym___extension__] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym___attribute__] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1327), + [anon_sym___cdecl] = ACTIONS(1327), + [anon_sym___clrcall] = ACTIONS(1327), + [anon_sym___stdcall] = ACTIONS(1327), + [anon_sym___fastcall] = ACTIONS(1327), + [anon_sym___thiscall] = ACTIONS(1327), + [anon_sym___vectorcall] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_auto] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym___inline] = ACTIONS(1327), + [anon_sym___inline__] = ACTIONS(1327), + [anon_sym___forceinline] = ACTIONS(1327), + [anon_sym_thread_local] = ACTIONS(1327), + [anon_sym___thread] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym___restrict__] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [anon_sym__Noreturn] = ACTIONS(1327), + [anon_sym_noreturn] = ACTIONS(1327), + [anon_sym_alignas] = ACTIONS(1327), + [anon_sym__Alignas] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [anon_sym___try] = ACTIONS(1327), + [anon_sym___leave] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym___alignof__] = ACTIONS(1327), + [anon_sym___alignof] = ACTIONS(1327), + [anon_sym__alignof] = ACTIONS(1327), + [anon_sym_alignof] = ACTIONS(1327), + [anon_sym__Alignof] = ACTIONS(1327), + [anon_sym_offsetof] = ACTIONS(1327), + [anon_sym__Generic] = ACTIONS(1327), + [anon_sym_asm] = ACTIONS(1327), + [anon_sym___asm__] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_L_SQUOTE] = ACTIONS(1329), + [anon_sym_u_SQUOTE] = ACTIONS(1329), + [anon_sym_U_SQUOTE] = ACTIONS(1329), + [anon_sym_u8_SQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_L_DQUOTE] = ACTIONS(1329), + [anon_sym_u_DQUOTE] = ACTIONS(1329), + [anon_sym_U_DQUOTE] = ACTIONS(1329), + [anon_sym_u8_DQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [anon_sym_NULL] = ACTIONS(1327), + [anon_sym_nullptr] = ACTIONS(1327), + [sym_comment] = ACTIONS(3), + }, + [353] = { + [sym_identifier] = ACTIONS(1275), + [aux_sym_preproc_include_token1] = ACTIONS(1275), + [aux_sym_preproc_def_token1] = ACTIONS(1275), + [aux_sym_preproc_if_token1] = ACTIONS(1275), + [aux_sym_preproc_if_token2] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1275), + [sym_preproc_directive] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym___extension__] = ACTIONS(1275), + [anon_sym_typedef] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym___attribute__] = ACTIONS(1275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1277), + [anon_sym___declspec] = ACTIONS(1275), + [anon_sym___cdecl] = ACTIONS(1275), + [anon_sym___clrcall] = ACTIONS(1275), + [anon_sym___stdcall] = ACTIONS(1275), + [anon_sym___fastcall] = ACTIONS(1275), + [anon_sym___thiscall] = ACTIONS(1275), + [anon_sym___vectorcall] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_signed] = ACTIONS(1275), + [anon_sym_unsigned] = ACTIONS(1275), + [anon_sym_long] = ACTIONS(1275), + [anon_sym_short] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_auto] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_inline] = ACTIONS(1275), + [anon_sym___inline] = ACTIONS(1275), + [anon_sym___inline__] = ACTIONS(1275), + [anon_sym___forceinline] = ACTIONS(1275), + [anon_sym_thread_local] = ACTIONS(1275), + [anon_sym___thread] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_constexpr] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1275), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym___restrict__] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1275), + [anon_sym__Noreturn] = ACTIONS(1275), + [anon_sym_noreturn] = ACTIONS(1275), + [anon_sym_alignas] = ACTIONS(1275), + [anon_sym__Alignas] = ACTIONS(1275), + [sym_primitive_type] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_case] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_goto] = ACTIONS(1275), + [anon_sym___try] = ACTIONS(1275), + [anon_sym___leave] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1275), + [anon_sym___alignof__] = ACTIONS(1275), + [anon_sym___alignof] = ACTIONS(1275), + [anon_sym__alignof] = ACTIONS(1275), + [anon_sym_alignof] = ACTIONS(1275), + [anon_sym__Alignof] = ACTIONS(1275), + [anon_sym_offsetof] = ACTIONS(1275), + [anon_sym__Generic] = ACTIONS(1275), + [anon_sym_asm] = ACTIONS(1275), + [anon_sym___asm__] = ACTIONS(1275), + [sym_number_literal] = ACTIONS(1277), + [anon_sym_L_SQUOTE] = ACTIONS(1277), + [anon_sym_u_SQUOTE] = ACTIONS(1277), + [anon_sym_U_SQUOTE] = ACTIONS(1277), + [anon_sym_u8_SQUOTE] = ACTIONS(1277), + [anon_sym_SQUOTE] = ACTIONS(1277), + [anon_sym_L_DQUOTE] = ACTIONS(1277), + [anon_sym_u_DQUOTE] = ACTIONS(1277), + [anon_sym_U_DQUOTE] = ACTIONS(1277), + [anon_sym_u8_DQUOTE] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym_true] = ACTIONS(1275), + [sym_false] = ACTIONS(1275), + [anon_sym_NULL] = ACTIONS(1275), + [anon_sym_nullptr] = ACTIONS(1275), + [sym_comment] = ACTIONS(3), + }, + [354] = { + [sym_identifier] = ACTIONS(1295), + [aux_sym_preproc_include_token1] = ACTIONS(1295), + [aux_sym_preproc_def_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), + [sym_preproc_directive] = ACTIONS(1295), + [anon_sym_LPAREN2] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym___extension__] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym___attribute__] = ACTIONS(1295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), + [anon_sym___declspec] = ACTIONS(1295), + [anon_sym___cdecl] = ACTIONS(1295), + [anon_sym___clrcall] = ACTIONS(1295), + [anon_sym___stdcall] = ACTIONS(1295), + [anon_sym___fastcall] = ACTIONS(1295), + [anon_sym___thiscall] = ACTIONS(1295), + [anon_sym___vectorcall] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_signed] = ACTIONS(1295), + [anon_sym_unsigned] = ACTIONS(1295), + [anon_sym_long] = ACTIONS(1295), + [anon_sym_short] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_auto] = ACTIONS(1295), + [anon_sym_register] = ACTIONS(1295), + [anon_sym_inline] = ACTIONS(1295), + [anon_sym___inline] = ACTIONS(1295), + [anon_sym___inline__] = ACTIONS(1295), + [anon_sym___forceinline] = ACTIONS(1295), + [anon_sym_thread_local] = ACTIONS(1295), + [anon_sym___thread] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_constexpr] = ACTIONS(1295), + [anon_sym_volatile] = ACTIONS(1295), + [anon_sym_restrict] = ACTIONS(1295), + [anon_sym___restrict__] = ACTIONS(1295), + [anon_sym__Atomic] = ACTIONS(1295), + [anon_sym__Noreturn] = ACTIONS(1295), + [anon_sym_noreturn] = ACTIONS(1295), + [anon_sym_alignas] = ACTIONS(1295), + [anon_sym__Alignas] = ACTIONS(1295), + [sym_primitive_type] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_switch] = ACTIONS(1295), + [anon_sym_case] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_do] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_goto] = ACTIONS(1295), + [anon_sym___try] = ACTIONS(1295), + [anon_sym___leave] = ACTIONS(1295), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_sizeof] = ACTIONS(1295), + [anon_sym___alignof__] = ACTIONS(1295), + [anon_sym___alignof] = ACTIONS(1295), + [anon_sym__alignof] = ACTIONS(1295), + [anon_sym_alignof] = ACTIONS(1295), + [anon_sym__Alignof] = ACTIONS(1295), + [anon_sym_offsetof] = ACTIONS(1295), + [anon_sym__Generic] = ACTIONS(1295), + [anon_sym_asm] = ACTIONS(1295), + [anon_sym___asm__] = ACTIONS(1295), + [sym_number_literal] = ACTIONS(1297), + [anon_sym_L_SQUOTE] = ACTIONS(1297), + [anon_sym_u_SQUOTE] = ACTIONS(1297), + [anon_sym_U_SQUOTE] = ACTIONS(1297), + [anon_sym_u8_SQUOTE] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_L_DQUOTE] = ACTIONS(1297), + [anon_sym_u_DQUOTE] = ACTIONS(1297), + [anon_sym_U_DQUOTE] = ACTIONS(1297), + [anon_sym_u8_DQUOTE] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym_true] = ACTIONS(1295), + [sym_false] = ACTIONS(1295), + [anon_sym_NULL] = ACTIONS(1295), + [anon_sym_nullptr] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + }, + [355] = { + [sym_identifier] = ACTIONS(1335), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token2] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), + [sym_preproc_directive] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym___extension__] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym___attribute__] = ACTIONS(1335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), + [anon_sym___declspec] = ACTIONS(1335), + [anon_sym___cdecl] = ACTIONS(1335), + [anon_sym___clrcall] = ACTIONS(1335), + [anon_sym___stdcall] = ACTIONS(1335), + [anon_sym___fastcall] = ACTIONS(1335), + [anon_sym___thiscall] = ACTIONS(1335), + [anon_sym___vectorcall] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_signed] = ACTIONS(1335), + [anon_sym_unsigned] = ACTIONS(1335), + [anon_sym_long] = ACTIONS(1335), + [anon_sym_short] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_auto] = ACTIONS(1335), + [anon_sym_register] = ACTIONS(1335), + [anon_sym_inline] = ACTIONS(1335), + [anon_sym___inline] = ACTIONS(1335), + [anon_sym___inline__] = ACTIONS(1335), + [anon_sym___forceinline] = ACTIONS(1335), + [anon_sym_thread_local] = ACTIONS(1335), + [anon_sym___thread] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_constexpr] = ACTIONS(1335), + [anon_sym_volatile] = ACTIONS(1335), + [anon_sym_restrict] = ACTIONS(1335), + [anon_sym___restrict__] = ACTIONS(1335), + [anon_sym__Atomic] = ACTIONS(1335), + [anon_sym__Noreturn] = ACTIONS(1335), + [anon_sym_noreturn] = ACTIONS(1335), + [anon_sym_alignas] = ACTIONS(1335), + [anon_sym__Alignas] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_switch] = ACTIONS(1335), + [anon_sym_case] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_goto] = ACTIONS(1335), + [anon_sym___try] = ACTIONS(1335), + [anon_sym___leave] = ACTIONS(1335), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(1335), + [anon_sym___alignof__] = ACTIONS(1335), + [anon_sym___alignof] = ACTIONS(1335), + [anon_sym__alignof] = ACTIONS(1335), + [anon_sym_alignof] = ACTIONS(1335), + [anon_sym__Alignof] = ACTIONS(1335), + [anon_sym_offsetof] = ACTIONS(1335), + [anon_sym__Generic] = ACTIONS(1335), + [anon_sym_asm] = ACTIONS(1335), + [anon_sym___asm__] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(1337), + [anon_sym_L_SQUOTE] = ACTIONS(1337), + [anon_sym_u_SQUOTE] = ACTIONS(1337), + [anon_sym_U_SQUOTE] = ACTIONS(1337), + [anon_sym_u8_SQUOTE] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_L_DQUOTE] = ACTIONS(1337), + [anon_sym_u_DQUOTE] = ACTIONS(1337), + [anon_sym_U_DQUOTE] = ACTIONS(1337), + [anon_sym_u8_DQUOTE] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym_true] = ACTIONS(1335), + [sym_false] = ACTIONS(1335), + [anon_sym_NULL] = ACTIONS(1335), + [anon_sym_nullptr] = ACTIONS(1335), + [sym_comment] = ACTIONS(3), + }, + [356] = { + [sym_identifier] = ACTIONS(1283), + [aux_sym_preproc_include_token1] = ACTIONS(1283), + [aux_sym_preproc_def_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token2] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), + [sym_preproc_directive] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1285), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym___extension__] = ACTIONS(1283), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1285), + [anon_sym___declspec] = ACTIONS(1283), + [anon_sym___cdecl] = ACTIONS(1283), + [anon_sym___clrcall] = ACTIONS(1283), + [anon_sym___stdcall] = ACTIONS(1283), + [anon_sym___fastcall] = ACTIONS(1283), + [anon_sym___thiscall] = ACTIONS(1283), + [anon_sym___vectorcall] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [anon_sym___inline] = ACTIONS(1283), + [anon_sym___inline__] = ACTIONS(1283), + [anon_sym___forceinline] = ACTIONS(1283), + [anon_sym_thread_local] = ACTIONS(1283), + [anon_sym___thread] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_constexpr] = ACTIONS(1283), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [anon_sym___restrict__] = ACTIONS(1283), + [anon_sym__Atomic] = ACTIONS(1283), + [anon_sym__Noreturn] = ACTIONS(1283), + [anon_sym_noreturn] = ACTIONS(1283), + [anon_sym_alignas] = ACTIONS(1283), + [anon_sym__Alignas] = ACTIONS(1283), + [sym_primitive_type] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_case] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_goto] = ACTIONS(1283), + [anon_sym___try] = ACTIONS(1283), + [anon_sym___leave] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym___alignof__] = ACTIONS(1283), + [anon_sym___alignof] = ACTIONS(1283), + [anon_sym__alignof] = ACTIONS(1283), + [anon_sym_alignof] = ACTIONS(1283), + [anon_sym__Alignof] = ACTIONS(1283), + [anon_sym_offsetof] = ACTIONS(1283), + [anon_sym__Generic] = ACTIONS(1283), + [anon_sym_asm] = ACTIONS(1283), + [anon_sym___asm__] = ACTIONS(1283), + [sym_number_literal] = ACTIONS(1285), + [anon_sym_L_SQUOTE] = ACTIONS(1285), + [anon_sym_u_SQUOTE] = ACTIONS(1285), + [anon_sym_U_SQUOTE] = ACTIONS(1285), + [anon_sym_u8_SQUOTE] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1285), + [anon_sym_L_DQUOTE] = ACTIONS(1285), + [anon_sym_u_DQUOTE] = ACTIONS(1285), + [anon_sym_U_DQUOTE] = ACTIONS(1285), + [anon_sym_u8_DQUOTE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [anon_sym_NULL] = ACTIONS(1283), + [anon_sym_nullptr] = ACTIONS(1283), + [sym_comment] = ACTIONS(3), + }, + [357] = { + [sym_identifier] = ACTIONS(1351), + [aux_sym_preproc_include_token1] = ACTIONS(1351), + [aux_sym_preproc_def_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), + [sym_preproc_directive] = ACTIONS(1351), + [anon_sym_LPAREN2] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym___extension__] = ACTIONS(1351), + [anon_sym_typedef] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym___attribute__] = ACTIONS(1351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1353), + [anon_sym___declspec] = ACTIONS(1351), + [anon_sym___cdecl] = ACTIONS(1351), + [anon_sym___clrcall] = ACTIONS(1351), + [anon_sym___stdcall] = ACTIONS(1351), + [anon_sym___fastcall] = ACTIONS(1351), + [anon_sym___thiscall] = ACTIONS(1351), + [anon_sym___vectorcall] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_RBRACE] = ACTIONS(1353), + [anon_sym_signed] = ACTIONS(1351), + [anon_sym_unsigned] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_auto] = ACTIONS(1351), + [anon_sym_register] = ACTIONS(1351), + [anon_sym_inline] = ACTIONS(1351), + [anon_sym___inline] = ACTIONS(1351), + [anon_sym___inline__] = ACTIONS(1351), + [anon_sym___forceinline] = ACTIONS(1351), + [anon_sym_thread_local] = ACTIONS(1351), + [anon_sym___thread] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_constexpr] = ACTIONS(1351), + [anon_sym_volatile] = ACTIONS(1351), + [anon_sym_restrict] = ACTIONS(1351), + [anon_sym___restrict__] = ACTIONS(1351), + [anon_sym__Atomic] = ACTIONS(1351), + [anon_sym__Noreturn] = ACTIONS(1351), + [anon_sym_noreturn] = ACTIONS(1351), + [anon_sym_alignas] = ACTIONS(1351), + [anon_sym__Alignas] = ACTIONS(1351), + [sym_primitive_type] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_goto] = ACTIONS(1351), + [anon_sym___try] = ACTIONS(1351), + [anon_sym___leave] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_sizeof] = ACTIONS(1351), + [anon_sym___alignof__] = ACTIONS(1351), + [anon_sym___alignof] = ACTIONS(1351), + [anon_sym__alignof] = ACTIONS(1351), + [anon_sym_alignof] = ACTIONS(1351), + [anon_sym__Alignof] = ACTIONS(1351), + [anon_sym_offsetof] = ACTIONS(1351), + [anon_sym__Generic] = ACTIONS(1351), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym___asm__] = ACTIONS(1351), + [sym_number_literal] = ACTIONS(1353), + [anon_sym_L_SQUOTE] = ACTIONS(1353), + [anon_sym_u_SQUOTE] = ACTIONS(1353), + [anon_sym_U_SQUOTE] = ACTIONS(1353), + [anon_sym_u8_SQUOTE] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_L_DQUOTE] = ACTIONS(1353), + [anon_sym_u_DQUOTE] = ACTIONS(1353), + [anon_sym_U_DQUOTE] = ACTIONS(1353), + [anon_sym_u8_DQUOTE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [anon_sym_NULL] = ACTIONS(1351), + [anon_sym_nullptr] = ACTIONS(1351), + [sym_comment] = ACTIONS(3), + }, + [358] = { + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [anon_sym_alignas] = ACTIONS(1315), + [anon_sym__Alignas] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym___try] = ACTIONS(1315), + [anon_sym___leave] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), + [sym_comment] = ACTIONS(3), + }, + [359] = { + [sym_identifier] = ACTIONS(1323), + [aux_sym_preproc_include_token1] = ACTIONS(1323), + [aux_sym_preproc_def_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), + [sym_preproc_directive] = ACTIONS(1323), + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym___extension__] = ACTIONS(1323), + [anon_sym_typedef] = ACTIONS(1323), + [anon_sym_extern] = ACTIONS(1323), + [anon_sym___attribute__] = ACTIONS(1323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(1323), + [anon_sym___cdecl] = ACTIONS(1323), + [anon_sym___clrcall] = ACTIONS(1323), + [anon_sym___stdcall] = ACTIONS(1323), + [anon_sym___fastcall] = ACTIONS(1323), + [anon_sym___thiscall] = ACTIONS(1323), + [anon_sym___vectorcall] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_signed] = ACTIONS(1323), + [anon_sym_unsigned] = ACTIONS(1323), + [anon_sym_long] = ACTIONS(1323), + [anon_sym_short] = ACTIONS(1323), + [anon_sym_static] = ACTIONS(1323), + [anon_sym_auto] = ACTIONS(1323), + [anon_sym_register] = ACTIONS(1323), + [anon_sym_inline] = ACTIONS(1323), + [anon_sym___inline] = ACTIONS(1323), + [anon_sym___inline__] = ACTIONS(1323), + [anon_sym___forceinline] = ACTIONS(1323), + [anon_sym_thread_local] = ACTIONS(1323), + [anon_sym___thread] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_constexpr] = ACTIONS(1323), + [anon_sym_volatile] = ACTIONS(1323), + [anon_sym_restrict] = ACTIONS(1323), + [anon_sym___restrict__] = ACTIONS(1323), + [anon_sym__Atomic] = ACTIONS(1323), + [anon_sym__Noreturn] = ACTIONS(1323), + [anon_sym_noreturn] = ACTIONS(1323), + [anon_sym_alignas] = ACTIONS(1323), + [anon_sym__Alignas] = ACTIONS(1323), + [sym_primitive_type] = ACTIONS(1323), + [anon_sym_enum] = ACTIONS(1323), + [anon_sym_struct] = ACTIONS(1323), + [anon_sym_union] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_switch] = ACTIONS(1323), + [anon_sym_case] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_do] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_goto] = ACTIONS(1323), + [anon_sym___try] = ACTIONS(1323), + [anon_sym___leave] = ACTIONS(1323), + [anon_sym_DASH_DASH] = ACTIONS(1325), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_sizeof] = ACTIONS(1323), + [anon_sym___alignof__] = ACTIONS(1323), + [anon_sym___alignof] = ACTIONS(1323), + [anon_sym__alignof] = ACTIONS(1323), + [anon_sym_alignof] = ACTIONS(1323), + [anon_sym__Alignof] = ACTIONS(1323), + [anon_sym_offsetof] = ACTIONS(1323), + [anon_sym__Generic] = ACTIONS(1323), + [anon_sym_asm] = ACTIONS(1323), + [anon_sym___asm__] = ACTIONS(1323), + [sym_number_literal] = ACTIONS(1325), + [anon_sym_L_SQUOTE] = ACTIONS(1325), + [anon_sym_u_SQUOTE] = ACTIONS(1325), + [anon_sym_U_SQUOTE] = ACTIONS(1325), + [anon_sym_u8_SQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1325), + [anon_sym_L_DQUOTE] = ACTIONS(1325), + [anon_sym_u_DQUOTE] = ACTIONS(1325), + [anon_sym_U_DQUOTE] = ACTIONS(1325), + [anon_sym_u8_DQUOTE] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [anon_sym_NULL] = ACTIONS(1323), + [anon_sym_nullptr] = ACTIONS(1323), + [sym_comment] = ACTIONS(3), + }, + [360] = { + [sym_identifier] = ACTIONS(1339), + [aux_sym_preproc_include_token1] = ACTIONS(1339), + [aux_sym_preproc_def_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), + [sym_preproc_directive] = ACTIONS(1339), + [anon_sym_LPAREN2] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym___extension__] = ACTIONS(1339), + [anon_sym_typedef] = ACTIONS(1339), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym___attribute__] = ACTIONS(1339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), + [anon_sym___declspec] = ACTIONS(1339), + [anon_sym___cdecl] = ACTIONS(1339), + [anon_sym___clrcall] = ACTIONS(1339), + [anon_sym___stdcall] = ACTIONS(1339), + [anon_sym___fastcall] = ACTIONS(1339), + [anon_sym___thiscall] = ACTIONS(1339), + [anon_sym___vectorcall] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_signed] = ACTIONS(1339), + [anon_sym_unsigned] = ACTIONS(1339), + [anon_sym_long] = ACTIONS(1339), + [anon_sym_short] = ACTIONS(1339), + [anon_sym_static] = ACTIONS(1339), + [anon_sym_auto] = ACTIONS(1339), + [anon_sym_register] = ACTIONS(1339), + [anon_sym_inline] = ACTIONS(1339), + [anon_sym___inline] = ACTIONS(1339), + [anon_sym___inline__] = ACTIONS(1339), + [anon_sym___forceinline] = ACTIONS(1339), + [anon_sym_thread_local] = ACTIONS(1339), + [anon_sym___thread] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_constexpr] = ACTIONS(1339), + [anon_sym_volatile] = ACTIONS(1339), + [anon_sym_restrict] = ACTIONS(1339), + [anon_sym___restrict__] = ACTIONS(1339), + [anon_sym__Atomic] = ACTIONS(1339), + [anon_sym__Noreturn] = ACTIONS(1339), + [anon_sym_noreturn] = ACTIONS(1339), + [anon_sym_alignas] = ACTIONS(1339), + [anon_sym__Alignas] = ACTIONS(1339), + [sym_primitive_type] = ACTIONS(1339), + [anon_sym_enum] = ACTIONS(1339), + [anon_sym_struct] = ACTIONS(1339), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1339), + [anon_sym_case] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_do] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_goto] = ACTIONS(1339), + [anon_sym___try] = ACTIONS(1339), + [anon_sym___leave] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_sizeof] = ACTIONS(1339), + [anon_sym___alignof__] = ACTIONS(1339), + [anon_sym___alignof] = ACTIONS(1339), + [anon_sym__alignof] = ACTIONS(1339), + [anon_sym_alignof] = ACTIONS(1339), + [anon_sym__Alignof] = ACTIONS(1339), + [anon_sym_offsetof] = ACTIONS(1339), + [anon_sym__Generic] = ACTIONS(1339), + [anon_sym_asm] = ACTIONS(1339), + [anon_sym___asm__] = ACTIONS(1339), + [sym_number_literal] = ACTIONS(1341), + [anon_sym_L_SQUOTE] = ACTIONS(1341), + [anon_sym_u_SQUOTE] = ACTIONS(1341), + [anon_sym_U_SQUOTE] = ACTIONS(1341), + [anon_sym_u8_SQUOTE] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(1341), + [anon_sym_L_DQUOTE] = ACTIONS(1341), + [anon_sym_u_DQUOTE] = ACTIONS(1341), + [anon_sym_U_DQUOTE] = ACTIONS(1341), + [anon_sym_u8_DQUOTE] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym_true] = ACTIONS(1339), + [sym_false] = ACTIONS(1339), + [anon_sym_NULL] = ACTIONS(1339), + [anon_sym_nullptr] = ACTIONS(1339), + [sym_comment] = ACTIONS(3), + }, + [361] = { + [sym_identifier] = ACTIONS(1283), + [aux_sym_preproc_include_token1] = ACTIONS(1283), + [aux_sym_preproc_def_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), + [sym_preproc_directive] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1285), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym___extension__] = ACTIONS(1283), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1285), + [anon_sym___declspec] = ACTIONS(1283), + [anon_sym___cdecl] = ACTIONS(1283), + [anon_sym___clrcall] = ACTIONS(1283), + [anon_sym___stdcall] = ACTIONS(1283), + [anon_sym___fastcall] = ACTIONS(1283), + [anon_sym___thiscall] = ACTIONS(1283), + [anon_sym___vectorcall] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [anon_sym___inline] = ACTIONS(1283), + [anon_sym___inline__] = ACTIONS(1283), + [anon_sym___forceinline] = ACTIONS(1283), + [anon_sym_thread_local] = ACTIONS(1283), + [anon_sym___thread] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_constexpr] = ACTIONS(1283), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [anon_sym___restrict__] = ACTIONS(1283), + [anon_sym__Atomic] = ACTIONS(1283), + [anon_sym__Noreturn] = ACTIONS(1283), + [anon_sym_noreturn] = ACTIONS(1283), + [anon_sym_alignas] = ACTIONS(1283), + [anon_sym__Alignas] = ACTIONS(1283), + [sym_primitive_type] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_case] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_goto] = ACTIONS(1283), + [anon_sym___try] = ACTIONS(1283), + [anon_sym___leave] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym___alignof__] = ACTIONS(1283), + [anon_sym___alignof] = ACTIONS(1283), + [anon_sym__alignof] = ACTIONS(1283), + [anon_sym_alignof] = ACTIONS(1283), + [anon_sym__Alignof] = ACTIONS(1283), + [anon_sym_offsetof] = ACTIONS(1283), + [anon_sym__Generic] = ACTIONS(1283), + [anon_sym_asm] = ACTIONS(1283), + [anon_sym___asm__] = ACTIONS(1283), + [sym_number_literal] = ACTIONS(1285), + [anon_sym_L_SQUOTE] = ACTIONS(1285), + [anon_sym_u_SQUOTE] = ACTIONS(1285), + [anon_sym_U_SQUOTE] = ACTIONS(1285), + [anon_sym_u8_SQUOTE] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1285), + [anon_sym_L_DQUOTE] = ACTIONS(1285), + [anon_sym_u_DQUOTE] = ACTIONS(1285), + [anon_sym_U_DQUOTE] = ACTIONS(1285), + [anon_sym_u8_DQUOTE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [anon_sym_NULL] = ACTIONS(1283), + [anon_sym_nullptr] = ACTIONS(1283), + [sym_comment] = ACTIONS(3), + }, + [362] = { + [sym_identifier] = ACTIONS(1347), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), + [sym_preproc_directive] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym___extension__] = ACTIONS(1347), + [anon_sym_typedef] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym___attribute__] = ACTIONS(1347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), + [anon_sym___declspec] = ACTIONS(1347), + [anon_sym___cdecl] = ACTIONS(1347), + [anon_sym___clrcall] = ACTIONS(1347), + [anon_sym___stdcall] = ACTIONS(1347), + [anon_sym___fastcall] = ACTIONS(1347), + [anon_sym___thiscall] = ACTIONS(1347), + [anon_sym___vectorcall] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_signed] = ACTIONS(1347), + [anon_sym_unsigned] = ACTIONS(1347), + [anon_sym_long] = ACTIONS(1347), + [anon_sym_short] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1347), + [anon_sym_auto] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_inline] = ACTIONS(1347), + [anon_sym___inline] = ACTIONS(1347), + [anon_sym___inline__] = ACTIONS(1347), + [anon_sym___forceinline] = ACTIONS(1347), + [anon_sym_thread_local] = ACTIONS(1347), + [anon_sym___thread] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_constexpr] = ACTIONS(1347), + [anon_sym_volatile] = ACTIONS(1347), + [anon_sym_restrict] = ACTIONS(1347), + [anon_sym___restrict__] = ACTIONS(1347), + [anon_sym__Atomic] = ACTIONS(1347), + [anon_sym__Noreturn] = ACTIONS(1347), + [anon_sym_noreturn] = ACTIONS(1347), + [anon_sym_alignas] = ACTIONS(1347), + [anon_sym__Alignas] = ACTIONS(1347), + [sym_primitive_type] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [anon_sym_case] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_goto] = ACTIONS(1347), + [anon_sym___try] = ACTIONS(1347), + [anon_sym___leave] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_sizeof] = ACTIONS(1347), + [anon_sym___alignof__] = ACTIONS(1347), + [anon_sym___alignof] = ACTIONS(1347), + [anon_sym__alignof] = ACTIONS(1347), + [anon_sym_alignof] = ACTIONS(1347), + [anon_sym__Alignof] = ACTIONS(1347), + [anon_sym_offsetof] = ACTIONS(1347), + [anon_sym__Generic] = ACTIONS(1347), + [anon_sym_asm] = ACTIONS(1347), + [anon_sym___asm__] = ACTIONS(1347), + [sym_number_literal] = ACTIONS(1349), + [anon_sym_L_SQUOTE] = ACTIONS(1349), + [anon_sym_u_SQUOTE] = ACTIONS(1349), + [anon_sym_U_SQUOTE] = ACTIONS(1349), + [anon_sym_u8_SQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [anon_sym_L_DQUOTE] = ACTIONS(1349), + [anon_sym_u_DQUOTE] = ACTIONS(1349), + [anon_sym_U_DQUOTE] = ACTIONS(1349), + [anon_sym_u8_DQUOTE] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym_true] = ACTIONS(1347), + [sym_false] = ACTIONS(1347), + [anon_sym_NULL] = ACTIONS(1347), + [anon_sym_nullptr] = ACTIONS(1347), + [sym_comment] = ACTIONS(3), + }, + [363] = { + [sym_identifier] = ACTIONS(1307), + [aux_sym_preproc_include_token1] = ACTIONS(1307), + [aux_sym_preproc_def_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), + [sym_preproc_directive] = ACTIONS(1307), + [anon_sym_LPAREN2] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym___extension__] = ACTIONS(1307), + [anon_sym_typedef] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym___attribute__] = ACTIONS(1307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), + [anon_sym___declspec] = ACTIONS(1307), + [anon_sym___cdecl] = ACTIONS(1307), + [anon_sym___clrcall] = ACTIONS(1307), + [anon_sym___stdcall] = ACTIONS(1307), + [anon_sym___fastcall] = ACTIONS(1307), + [anon_sym___thiscall] = ACTIONS(1307), + [anon_sym___vectorcall] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(1307), + [anon_sym_unsigned] = ACTIONS(1307), + [anon_sym_long] = ACTIONS(1307), + [anon_sym_short] = ACTIONS(1307), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_auto] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_inline] = ACTIONS(1307), + [anon_sym___inline] = ACTIONS(1307), + [anon_sym___inline__] = ACTIONS(1307), + [anon_sym___forceinline] = ACTIONS(1307), + [anon_sym_thread_local] = ACTIONS(1307), + [anon_sym___thread] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_constexpr] = ACTIONS(1307), + [anon_sym_volatile] = ACTIONS(1307), + [anon_sym_restrict] = ACTIONS(1307), + [anon_sym___restrict__] = ACTIONS(1307), + [anon_sym__Atomic] = ACTIONS(1307), + [anon_sym__Noreturn] = ACTIONS(1307), + [anon_sym_noreturn] = ACTIONS(1307), + [anon_sym_alignas] = ACTIONS(1307), + [anon_sym__Alignas] = ACTIONS(1307), + [sym_primitive_type] = ACTIONS(1307), + [anon_sym_enum] = ACTIONS(1307), + [anon_sym_struct] = ACTIONS(1307), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_switch] = ACTIONS(1307), + [anon_sym_case] = ACTIONS(1307), + [anon_sym_default] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_goto] = ACTIONS(1307), + [anon_sym___try] = ACTIONS(1307), + [anon_sym___leave] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym___alignof__] = ACTIONS(1307), + [anon_sym___alignof] = ACTIONS(1307), + [anon_sym__alignof] = ACTIONS(1307), + [anon_sym_alignof] = ACTIONS(1307), + [anon_sym__Alignof] = ACTIONS(1307), + [anon_sym_offsetof] = ACTIONS(1307), + [anon_sym__Generic] = ACTIONS(1307), + [anon_sym_asm] = ACTIONS(1307), + [anon_sym___asm__] = ACTIONS(1307), + [sym_number_literal] = ACTIONS(1309), + [anon_sym_L_SQUOTE] = ACTIONS(1309), + [anon_sym_u_SQUOTE] = ACTIONS(1309), + [anon_sym_U_SQUOTE] = ACTIONS(1309), + [anon_sym_u8_SQUOTE] = ACTIONS(1309), + [anon_sym_SQUOTE] = ACTIONS(1309), + [anon_sym_L_DQUOTE] = ACTIONS(1309), + [anon_sym_u_DQUOTE] = ACTIONS(1309), + [anon_sym_U_DQUOTE] = ACTIONS(1309), + [anon_sym_u8_DQUOTE] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1309), + [sym_true] = ACTIONS(1307), + [sym_false] = ACTIONS(1307), + [anon_sym_NULL] = ACTIONS(1307), + [anon_sym_nullptr] = ACTIONS(1307), + [sym_comment] = ACTIONS(3), + }, + [364] = { + [sym_identifier] = ACTIONS(1343), + [aux_sym_preproc_include_token1] = ACTIONS(1343), + [aux_sym_preproc_def_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), + [sym_preproc_directive] = ACTIONS(1343), + [anon_sym_LPAREN2] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym___extension__] = ACTIONS(1343), + [anon_sym_typedef] = ACTIONS(1343), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym___attribute__] = ACTIONS(1343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), + [anon_sym___declspec] = ACTIONS(1343), + [anon_sym___cdecl] = ACTIONS(1343), + [anon_sym___clrcall] = ACTIONS(1343), + [anon_sym___stdcall] = ACTIONS(1343), + [anon_sym___fastcall] = ACTIONS(1343), + [anon_sym___thiscall] = ACTIONS(1343), + [anon_sym___vectorcall] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_signed] = ACTIONS(1343), + [anon_sym_unsigned] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_auto] = ACTIONS(1343), + [anon_sym_register] = ACTIONS(1343), + [anon_sym_inline] = ACTIONS(1343), + [anon_sym___inline] = ACTIONS(1343), + [anon_sym___inline__] = ACTIONS(1343), + [anon_sym___forceinline] = ACTIONS(1343), + [anon_sym_thread_local] = ACTIONS(1343), + [anon_sym___thread] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_constexpr] = ACTIONS(1343), + [anon_sym_volatile] = ACTIONS(1343), + [anon_sym_restrict] = ACTIONS(1343), + [anon_sym___restrict__] = ACTIONS(1343), + [anon_sym__Atomic] = ACTIONS(1343), + [anon_sym__Noreturn] = ACTIONS(1343), + [anon_sym_noreturn] = ACTIONS(1343), + [anon_sym_alignas] = ACTIONS(1343), + [anon_sym__Alignas] = ACTIONS(1343), + [sym_primitive_type] = ACTIONS(1343), + [anon_sym_enum] = ACTIONS(1343), + [anon_sym_struct] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_case] = ACTIONS(1343), + [anon_sym_default] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_goto] = ACTIONS(1343), + [anon_sym___try] = ACTIONS(1343), + [anon_sym___leave] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_sizeof] = ACTIONS(1343), + [anon_sym___alignof__] = ACTIONS(1343), + [anon_sym___alignof] = ACTIONS(1343), + [anon_sym__alignof] = ACTIONS(1343), + [anon_sym_alignof] = ACTIONS(1343), + [anon_sym__Alignof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1343), + [anon_sym__Generic] = ACTIONS(1343), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym___asm__] = ACTIONS(1343), + [sym_number_literal] = ACTIONS(1345), + [anon_sym_L_SQUOTE] = ACTIONS(1345), + [anon_sym_u_SQUOTE] = ACTIONS(1345), + [anon_sym_U_SQUOTE] = ACTIONS(1345), + [anon_sym_u8_SQUOTE] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_L_DQUOTE] = ACTIONS(1345), + [anon_sym_u_DQUOTE] = ACTIONS(1345), + [anon_sym_U_DQUOTE] = ACTIONS(1345), + [anon_sym_u8_DQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym_true] = ACTIONS(1343), + [sym_false] = ACTIONS(1343), + [anon_sym_NULL] = ACTIONS(1343), + [anon_sym_nullptr] = ACTIONS(1343), + [sym_comment] = ACTIONS(3), + }, + [365] = { + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1295), + [aux_sym_preproc_include_token1] = ACTIONS(1295), + [aux_sym_preproc_def_token1] = ACTIONS(1295), + [anon_sym_COMMA] = ACTIONS(1297), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), + [sym_preproc_directive] = ACTIONS(1295), + [anon_sym_LPAREN2] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym___extension__] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym___attribute__] = ACTIONS(1295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), + [anon_sym___declspec] = ACTIONS(1295), + [anon_sym___cdecl] = ACTIONS(1295), + [anon_sym___clrcall] = ACTIONS(1295), + [anon_sym___stdcall] = ACTIONS(1295), + [anon_sym___fastcall] = ACTIONS(1295), + [anon_sym___thiscall] = ACTIONS(1295), + [anon_sym___vectorcall] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_signed] = ACTIONS(1295), + [anon_sym_unsigned] = ACTIONS(1295), + [anon_sym_long] = ACTIONS(1295), + [anon_sym_short] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_auto] = ACTIONS(1295), + [anon_sym_register] = ACTIONS(1295), + [anon_sym_inline] = ACTIONS(1295), + [anon_sym___inline] = ACTIONS(1295), + [anon_sym___inline__] = ACTIONS(1295), + [anon_sym___forceinline] = ACTIONS(1295), + [anon_sym_thread_local] = ACTIONS(1295), + [anon_sym___thread] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_constexpr] = ACTIONS(1295), + [anon_sym_volatile] = ACTIONS(1295), + [anon_sym_restrict] = ACTIONS(1295), + [anon_sym___restrict__] = ACTIONS(1295), + [anon_sym__Atomic] = ACTIONS(1295), + [anon_sym__Noreturn] = ACTIONS(1295), + [anon_sym_noreturn] = ACTIONS(1295), + [anon_sym_alignas] = ACTIONS(1295), + [anon_sym__Alignas] = ACTIONS(1295), + [sym_primitive_type] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_switch] = ACTIONS(1295), + [anon_sym_case] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_do] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_goto] = ACTIONS(1295), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_sizeof] = ACTIONS(1295), + [anon_sym___alignof__] = ACTIONS(1295), + [anon_sym___alignof] = ACTIONS(1295), + [anon_sym__alignof] = ACTIONS(1295), + [anon_sym_alignof] = ACTIONS(1295), + [anon_sym__Alignof] = ACTIONS(1295), + [anon_sym_offsetof] = ACTIONS(1295), + [anon_sym__Generic] = ACTIONS(1295), + [anon_sym_asm] = ACTIONS(1295), + [anon_sym___asm__] = ACTIONS(1295), + [sym_number_literal] = ACTIONS(1297), + [anon_sym_L_SQUOTE] = ACTIONS(1297), + [anon_sym_u_SQUOTE] = ACTIONS(1297), + [anon_sym_U_SQUOTE] = ACTIONS(1297), + [anon_sym_u8_SQUOTE] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_L_DQUOTE] = ACTIONS(1297), + [anon_sym_u_DQUOTE] = ACTIONS(1297), + [anon_sym_U_DQUOTE] = ACTIONS(1297), + [anon_sym_u8_DQUOTE] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym_true] = ACTIONS(1295), + [sym_false] = ACTIONS(1295), + [anon_sym_NULL] = ACTIONS(1295), + [anon_sym_nullptr] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + }, + [366] = { + [ts_builtin_sym_end] = ACTIONS(1353), + [sym_identifier] = ACTIONS(1351), + [aux_sym_preproc_include_token1] = ACTIONS(1351), + [aux_sym_preproc_def_token1] = ACTIONS(1351), + [anon_sym_COMMA] = ACTIONS(1353), + [aux_sym_preproc_if_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), + [sym_preproc_directive] = ACTIONS(1351), + [anon_sym_LPAREN2] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1353), + [anon_sym___extension__] = ACTIONS(1351), + [anon_sym_typedef] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym___attribute__] = ACTIONS(1351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1353), + [anon_sym___declspec] = ACTIONS(1351), + [anon_sym___cdecl] = ACTIONS(1351), + [anon_sym___clrcall] = ACTIONS(1351), + [anon_sym___stdcall] = ACTIONS(1351), + [anon_sym___fastcall] = ACTIONS(1351), + [anon_sym___thiscall] = ACTIONS(1351), + [anon_sym___vectorcall] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_RBRACE] = ACTIONS(1353), + [anon_sym_signed] = ACTIONS(1351), + [anon_sym_unsigned] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_auto] = ACTIONS(1351), + [anon_sym_register] = ACTIONS(1351), + [anon_sym_inline] = ACTIONS(1351), + [anon_sym___inline] = ACTIONS(1351), + [anon_sym___inline__] = ACTIONS(1351), + [anon_sym___forceinline] = ACTIONS(1351), + [anon_sym_thread_local] = ACTIONS(1351), + [anon_sym___thread] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_constexpr] = ACTIONS(1351), + [anon_sym_volatile] = ACTIONS(1351), + [anon_sym_restrict] = ACTIONS(1351), + [anon_sym___restrict__] = ACTIONS(1351), + [anon_sym__Atomic] = ACTIONS(1351), + [anon_sym__Noreturn] = ACTIONS(1351), + [anon_sym_noreturn] = ACTIONS(1351), + [anon_sym_alignas] = ACTIONS(1351), + [anon_sym__Alignas] = ACTIONS(1351), + [sym_primitive_type] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_goto] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_sizeof] = ACTIONS(1351), + [anon_sym___alignof__] = ACTIONS(1351), + [anon_sym___alignof] = ACTIONS(1351), + [anon_sym__alignof] = ACTIONS(1351), + [anon_sym_alignof] = ACTIONS(1351), + [anon_sym__Alignof] = ACTIONS(1351), + [anon_sym_offsetof] = ACTIONS(1351), + [anon_sym__Generic] = ACTIONS(1351), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym___asm__] = ACTIONS(1351), + [sym_number_literal] = ACTIONS(1353), + [anon_sym_L_SQUOTE] = ACTIONS(1353), + [anon_sym_u_SQUOTE] = ACTIONS(1353), + [anon_sym_U_SQUOTE] = ACTIONS(1353), + [anon_sym_u8_SQUOTE] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_L_DQUOTE] = ACTIONS(1353), + [anon_sym_u_DQUOTE] = ACTIONS(1353), + [anon_sym_U_DQUOTE] = ACTIONS(1353), + [anon_sym_u8_DQUOTE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [anon_sym_NULL] = ACTIONS(1351), + [anon_sym_nullptr] = ACTIONS(1351), + [sym_comment] = ACTIONS(3), + }, + [367] = { + [sym_attribute_declaration] = STATE(403), + [sym_compound_statement] = STATE(212), + [sym_attributed_statement] = STATE(211), + [sym_labeled_statement] = STATE(208), + [sym_expression_statement] = STATE(207), + [sym_if_statement] = STATE(206), + [sym_switch_statement] = STATE(202), + [sym_case_statement] = STATE(194), + [sym_while_statement] = STATE(192), + [sym_do_statement] = STATE(191), + [sym_for_statement] = STATE(189), + [sym_return_statement] = STATE(186), + [sym_break_statement] = STATE(185), + [sym_continue_statement] = STATE(184), + [sym_goto_statement] = STATE(183), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(180), + [sym__expression] = STATE(1088), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1880), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1385), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50761,96 +53267,96 @@ 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(363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1077), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1079), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1083), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(982), + [anon_sym___leave] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [351] = { - [sym_attribute_declaration] = STATE(358), - [sym_compound_statement] = STATE(285), - [sym_attributed_statement] = STATE(285), - [sym_labeled_statement] = STATE(285), - [sym_expression_statement] = STATE(285), - [sym_if_statement] = STATE(285), - [sym_switch_statement] = STATE(285), - [sym_case_statement] = STATE(285), - [sym_while_statement] = STATE(285), - [sym_do_statement] = STATE(285), - [sym_for_statement] = STATE(285), - [sym_return_statement] = STATE(285), - [sym_break_statement] = STATE(285), - [sym_continue_statement] = STATE(285), - [sym_goto_statement] = STATE(285), - [sym_seh_try_statement] = STATE(285), - [sym_seh_leave_statement] = STATE(285), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1380), + [368] = { + [sym_attribute_declaration] = STATE(405), + [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_seh_try_statement] = STATE(100), + [sym_seh_leave_statement] = STATE(100), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1389), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50858,96 +53364,96 @@ 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(363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1077), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1079), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1083), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [352] = { - [sym_attribute_declaration] = STATE(358), - [sym_compound_statement] = STATE(451), - [sym_attributed_statement] = STATE(451), - [sym_labeled_statement] = STATE(451), - [sym_expression_statement] = STATE(451), - [sym_if_statement] = STATE(451), - [sym_switch_statement] = STATE(451), - [sym_case_statement] = STATE(451), - [sym_while_statement] = STATE(451), - [sym_do_statement] = STATE(451), - [sym_for_statement] = STATE(451), - [sym_return_statement] = STATE(451), - [sym_break_statement] = STATE(451), - [sym_continue_statement] = STATE(451), - [sym_goto_statement] = STATE(451), - [sym_seh_try_statement] = STATE(451), - [sym_seh_leave_statement] = STATE(451), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1380), + [369] = { + [sym_attribute_declaration] = STATE(381), + [sym_compound_statement] = STATE(2012), + [sym_attributed_statement] = STATE(2012), + [sym_labeled_statement] = STATE(2012), + [sym_expression_statement] = STATE(2012), + [sym_if_statement] = STATE(2012), + [sym_switch_statement] = STATE(2012), + [sym_case_statement] = STATE(2012), + [sym_while_statement] = STATE(2012), + [sym_do_statement] = STATE(2012), + [sym_for_statement] = STATE(2012), + [sym_return_statement] = STATE(2012), + [sym_break_statement] = STATE(2012), + [sym_continue_statement] = STATE(2012), + [sym_goto_statement] = STATE(2012), + [sym_seh_try_statement] = STATE(2012), + [sym_seh_leave_statement] = STATE(2012), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(1391), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50955,193 +53461,193 @@ 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(363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1077), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1079), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1083), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [353] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token2] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym___inline] = ACTIONS(1308), - [anon_sym___inline__] = ACTIONS(1308), - [anon_sym___forceinline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym___try] = ACTIONS(1308), - [anon_sym___leave] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym___alignof__] = ACTIONS(1308), - [anon_sym___alignof] = ACTIONS(1308), - [anon_sym__alignof] = ACTIONS(1308), - [anon_sym_alignof] = ACTIONS(1308), - [anon_sym__Alignof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), + [370] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(104), + [sym_attributed_statement] = STATE(104), + [sym_labeled_statement] = STATE(104), + [sym_expression_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_switch_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_while_statement] = STATE(104), + [sym_do_statement] = STATE(104), + [sym_for_statement] = STATE(104), + [sym_return_statement] = STATE(104), + [sym_break_statement] = STATE(104), + [sym_continue_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym_seh_try_statement] = STATE(104), + [sym_seh_leave_statement] = STATE(104), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1389), + [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(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [354] = { - [sym_attribute_declaration] = STATE(314), - [sym_compound_statement] = STATE(183), - [sym_attributed_statement] = STATE(184), - [sym_labeled_statement] = STATE(185), - [sym_expression_statement] = STATE(186), - [sym_if_statement] = STATE(187), - [sym_switch_statement] = STATE(192), - [sym_case_statement] = STATE(195), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(197), - [sym_for_statement] = STATE(198), - [sym_return_statement] = STATE(199), - [sym_break_statement] = STATE(205), - [sym_continue_statement] = STATE(206), - [sym_goto_statement] = STATE(212), - [sym_seh_try_statement] = STATE(213), - [sym_seh_leave_statement] = STATE(215), - [sym__expression] = STATE(1084), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [sym_identifier] = ACTIONS(1378), + [371] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(108), + [sym_attributed_statement] = STATE(118), + [sym_labeled_statement] = STATE(119), + [sym_expression_statement] = STATE(123), + [sym_if_statement] = STATE(120), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(111), + [sym_do_statement] = STATE(107), + [sym_for_statement] = STATE(102), + [sym_return_statement] = STATE(98), + [sym_break_statement] = STATE(97), + [sym_continue_statement] = STATE(95), + [sym_goto_statement] = STATE(90), + [sym_seh_try_statement] = STATE(86), + [sym_seh_leave_statement] = STATE(85), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1389), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51149,53 +53655,53 @@ 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(913), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [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___try] = ACTIONS(915), - [anon_sym___leave] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [355] = { - [sym_attribute_declaration] = STATE(314), + [372] = { + [sym_attribute_declaration] = STATE(372), [sym_compound_statement] = STATE(181), [sym_attributed_statement] = STATE(181), [sym_labeled_statement] = STATE(181), @@ -51212,33 +53718,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(181), [sym_seh_try_statement] = STATE(181), [sym_seh_leave_statement] = STATE(181), - [sym__expression] = STATE(1084), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [sym_identifier] = ACTIONS(1378), + [sym__expression] = STATE(1088), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1880), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1397), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1451), + [anon_sym___try] = ACTIONS(1454), + [anon_sym___leave] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1463), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1469), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1475), + [anon_sym___asm__] = ACTIONS(1475), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1481), + [anon_sym_u_SQUOTE] = ACTIONS(1481), + [anon_sym_U_SQUOTE] = ACTIONS(1481), + [anon_sym_u8_SQUOTE] = ACTIONS(1481), + [anon_sym_SQUOTE] = ACTIONS(1481), + [anon_sym_L_DQUOTE] = ACTIONS(1484), + [anon_sym_u_DQUOTE] = ACTIONS(1484), + [anon_sym_U_DQUOTE] = ACTIONS(1484), + [anon_sym_u8_DQUOTE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym_true] = ACTIONS(1487), + [sym_false] = ACTIONS(1487), + [anon_sym_NULL] = ACTIONS(1490), + [anon_sym_nullptr] = ACTIONS(1490), + [sym_comment] = ACTIONS(3), + }, + [373] = { + [sym_attribute_declaration] = STATE(381), + [sym_compound_statement] = STATE(452), + [sym_attributed_statement] = STATE(452), + [sym_labeled_statement] = STATE(452), + [sym_expression_statement] = STATE(452), + [sym_if_statement] = STATE(452), + [sym_switch_statement] = STATE(452), + [sym_case_statement] = STATE(452), + [sym_while_statement] = STATE(452), + [sym_do_statement] = STATE(452), + [sym_for_statement] = STATE(452), + [sym_return_statement] = STATE(452), + [sym_break_statement] = STATE(452), + [sym_continue_statement] = STATE(452), + [sym_goto_statement] = STATE(452), + [sym_seh_try_statement] = STATE(452), + [sym_seh_leave_statement] = STATE(452), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(1391), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51246,193 +53849,96 @@ 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(913), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), [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___try] = ACTIONS(915), - [anon_sym___leave] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [356] = { - [sym_identifier] = ACTIONS(1240), - [aux_sym_preproc_include_token1] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token2] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), - [sym_preproc_directive] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym___extension__] = ACTIONS(1240), - [anon_sym_typedef] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym___attribute__] = ACTIONS(1240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), - [anon_sym___declspec] = ACTIONS(1240), - [anon_sym___cdecl] = ACTIONS(1240), - [anon_sym___clrcall] = ACTIONS(1240), - [anon_sym___stdcall] = ACTIONS(1240), - [anon_sym___fastcall] = ACTIONS(1240), - [anon_sym___thiscall] = ACTIONS(1240), - [anon_sym___vectorcall] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_auto] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1240), - [anon_sym_inline] = ACTIONS(1240), - [anon_sym___inline] = ACTIONS(1240), - [anon_sym___inline__] = ACTIONS(1240), - [anon_sym___forceinline] = ACTIONS(1240), - [anon_sym_thread_local] = ACTIONS(1240), - [anon_sym___thread] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_constexpr] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1240), - [anon_sym___restrict__] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1240), - [anon_sym__Noreturn] = ACTIONS(1240), - [anon_sym_noreturn] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_case] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_goto] = ACTIONS(1240), - [anon_sym___try] = ACTIONS(1240), - [anon_sym___leave] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1240), - [anon_sym___alignof__] = ACTIONS(1240), - [anon_sym___alignof] = ACTIONS(1240), - [anon_sym__alignof] = ACTIONS(1240), - [anon_sym_alignof] = ACTIONS(1240), - [anon_sym__Alignof] = ACTIONS(1240), - [anon_sym_offsetof] = ACTIONS(1240), - [anon_sym__Generic] = ACTIONS(1240), - [anon_sym_asm] = ACTIONS(1240), - [anon_sym___asm__] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1242), - [anon_sym_L_SQUOTE] = ACTIONS(1242), - [anon_sym_u_SQUOTE] = ACTIONS(1242), - [anon_sym_U_SQUOTE] = ACTIONS(1242), - [anon_sym_u8_SQUOTE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_L_DQUOTE] = ACTIONS(1242), - [anon_sym_u_DQUOTE] = ACTIONS(1242), - [anon_sym_U_DQUOTE] = ACTIONS(1242), - [anon_sym_u8_DQUOTE] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [anon_sym_NULL] = ACTIONS(1240), - [anon_sym_nullptr] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [357] = { - [sym_attribute_declaration] = STATE(358), - [sym_compound_statement] = STATE(183), - [sym_attributed_statement] = STATE(184), - [sym_labeled_statement] = STATE(185), - [sym_expression_statement] = STATE(186), - [sym_if_statement] = STATE(187), - [sym_switch_statement] = STATE(192), - [sym_case_statement] = STATE(195), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(197), - [sym_for_statement] = STATE(198), - [sym_return_statement] = STATE(199), - [sym_break_statement] = STATE(205), - [sym_continue_statement] = STATE(206), - [sym_goto_statement] = STATE(212), - [sym_seh_try_statement] = STATE(213), - [sym_seh_leave_statement] = STATE(215), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1380), + [374] = { + [sym_attribute_declaration] = STATE(381), + [sym_compound_statement] = STATE(289), + [sym_attributed_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_switch_statement] = STATE(289), + [sym_case_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_goto_statement] = STATE(289), + [sym_seh_try_statement] = STATE(289), + [sym_seh_leave_statement] = STATE(289), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(1391), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51440,96 +53946,96 @@ 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(363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1077), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1079), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1083), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [358] = { - [sym_attribute_declaration] = STATE(349), - [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_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(349), - [sym_identifier] = ACTIONS(1380), + [375] = { + [sym_attribute_declaration] = STATE(381), + [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_seh_try_statement] = STATE(301), + [sym_seh_leave_statement] = STATE(301), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(1391), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51537,290 +54043,193 @@ 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(363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1077), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1079), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1083), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [359] = { - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1248), - [aux_sym_preproc_def_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), - [sym_preproc_directive] = ACTIONS(1248), - [anon_sym_LPAREN2] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym___extension__] = ACTIONS(1248), - [anon_sym_typedef] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym___attribute__] = ACTIONS(1248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), - [anon_sym___declspec] = ACTIONS(1248), - [anon_sym___cdecl] = ACTIONS(1248), - [anon_sym___clrcall] = ACTIONS(1248), - [anon_sym___stdcall] = ACTIONS(1248), - [anon_sym___fastcall] = ACTIONS(1248), - [anon_sym___thiscall] = ACTIONS(1248), - [anon_sym___vectorcall] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1250), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = ACTIONS(1248), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_auto] = ACTIONS(1248), - [anon_sym_register] = ACTIONS(1248), - [anon_sym_inline] = ACTIONS(1248), - [anon_sym___inline] = ACTIONS(1248), - [anon_sym___inline__] = ACTIONS(1248), - [anon_sym___forceinline] = ACTIONS(1248), - [anon_sym_thread_local] = ACTIONS(1248), - [anon_sym___thread] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_constexpr] = ACTIONS(1248), - [anon_sym_volatile] = ACTIONS(1248), - [anon_sym_restrict] = ACTIONS(1248), - [anon_sym___restrict__] = ACTIONS(1248), - [anon_sym__Atomic] = ACTIONS(1248), - [anon_sym__Noreturn] = ACTIONS(1248), - [anon_sym_noreturn] = ACTIONS(1248), - [sym_primitive_type] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_switch] = ACTIONS(1248), - [anon_sym_case] = ACTIONS(1248), - [anon_sym_default] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_do] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_goto] = ACTIONS(1248), - [anon_sym___try] = ACTIONS(1248), - [anon_sym___leave] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_sizeof] = ACTIONS(1248), - [anon_sym___alignof__] = ACTIONS(1248), - [anon_sym___alignof] = ACTIONS(1248), - [anon_sym__alignof] = ACTIONS(1248), - [anon_sym_alignof] = ACTIONS(1248), - [anon_sym__Alignof] = ACTIONS(1248), - [anon_sym_offsetof] = ACTIONS(1248), - [anon_sym__Generic] = ACTIONS(1248), - [anon_sym_asm] = ACTIONS(1248), - [anon_sym___asm__] = ACTIONS(1248), - [sym_number_literal] = ACTIONS(1250), - [anon_sym_L_SQUOTE] = ACTIONS(1250), - [anon_sym_u_SQUOTE] = ACTIONS(1250), - [anon_sym_U_SQUOTE] = ACTIONS(1250), - [anon_sym_u8_SQUOTE] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_L_DQUOTE] = ACTIONS(1250), - [anon_sym_u_DQUOTE] = ACTIONS(1250), - [anon_sym_U_DQUOTE] = ACTIONS(1250), - [anon_sym_u8_DQUOTE] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [anon_sym_NULL] = ACTIONS(1248), - [anon_sym_nullptr] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [360] = { - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token2] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym___extension__] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1316), - [anon_sym___cdecl] = ACTIONS(1316), - [anon_sym___clrcall] = ACTIONS(1316), - [anon_sym___stdcall] = ACTIONS(1316), - [anon_sym___fastcall] = ACTIONS(1316), - [anon_sym___thiscall] = ACTIONS(1316), - [anon_sym___vectorcall] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym___inline] = ACTIONS(1316), - [anon_sym___inline__] = ACTIONS(1316), - [anon_sym___forceinline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_constexpr] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym___restrict__] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [anon_sym__Noreturn] = ACTIONS(1316), - [anon_sym_noreturn] = ACTIONS(1316), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym___try] = ACTIONS(1316), - [anon_sym___leave] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym___alignof__] = ACTIONS(1316), - [anon_sym___alignof] = ACTIONS(1316), - [anon_sym__alignof] = ACTIONS(1316), - [anon_sym_alignof] = ACTIONS(1316), - [anon_sym__Alignof] = ACTIONS(1316), - [anon_sym_offsetof] = ACTIONS(1316), - [anon_sym__Generic] = ACTIONS(1316), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym___asm__] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), + [376] = { + [sym_attribute_declaration] = STATE(376), + [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_seh_try_statement] = STATE(181), + [sym_seh_leave_statement] = STATE(181), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1502), + [anon_sym_default] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1511), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1451), + [anon_sym___try] = ACTIONS(1514), + [anon_sym___leave] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1463), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1469), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1475), + [anon_sym___asm__] = ACTIONS(1475), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1481), + [anon_sym_u_SQUOTE] = ACTIONS(1481), + [anon_sym_U_SQUOTE] = ACTIONS(1481), + [anon_sym_u8_SQUOTE] = ACTIONS(1481), + [anon_sym_SQUOTE] = ACTIONS(1481), + [anon_sym_L_DQUOTE] = ACTIONS(1484), + [anon_sym_u_DQUOTE] = ACTIONS(1484), + [anon_sym_U_DQUOTE] = ACTIONS(1484), + [anon_sym_u8_DQUOTE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym_true] = ACTIONS(1487), + [sym_false] = ACTIONS(1487), + [anon_sym_NULL] = ACTIONS(1490), + [anon_sym_nullptr] = ACTIONS(1490), [sym_comment] = ACTIONS(3), }, - [361] = { - [sym_attribute_declaration] = STATE(400), - [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_seh_try_statement] = STATE(160), - [sym_seh_leave_statement] = STATE(160), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1559), + [377] = { + [sym_attribute_declaration] = STATE(381), + [sym_compound_statement] = STATE(219), + [sym_attributed_statement] = STATE(219), + [sym_labeled_statement] = STATE(219), + [sym_expression_statement] = STATE(219), + [sym_if_statement] = STATE(219), + [sym_switch_statement] = STATE(219), + [sym_case_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_do_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_return_statement] = STATE(219), + [sym_break_statement] = STATE(219), + [sym_continue_statement] = STATE(219), + [sym_goto_statement] = STATE(219), + [sym_seh_try_statement] = STATE(219), + [sym_seh_leave_statement] = STATE(219), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(1391), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51828,96 +54237,96 @@ 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(363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [362] = { - [sym_attribute_declaration] = STATE(400), - [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_seh_try_statement] = STATE(250), - [sym_seh_leave_statement] = STATE(250), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1559), + [378] = { + [sym_attribute_declaration] = STATE(381), + [sym_compound_statement] = STATE(212), + [sym_attributed_statement] = STATE(211), + [sym_labeled_statement] = STATE(208), + [sym_expression_statement] = STATE(207), + [sym_if_statement] = STATE(206), + [sym_switch_statement] = STATE(202), + [sym_case_statement] = STATE(194), + [sym_while_statement] = STATE(192), + [sym_do_statement] = STATE(191), + [sym_for_statement] = STATE(189), + [sym_return_statement] = STATE(186), + [sym_break_statement] = STATE(185), + [sym_continue_statement] = STATE(184), + [sym_goto_statement] = STATE(183), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(180), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(1391), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51925,96 +54334,96 @@ 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(363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [363] = { - [sym_attribute_declaration] = STATE(335), - [sym_compound_statement] = STATE(121), - [sym_attributed_statement] = STATE(121), - [sym_labeled_statement] = STATE(121), - [sym_expression_statement] = STATE(121), - [sym_if_statement] = STATE(121), - [sym_switch_statement] = STATE(121), - [sym_case_statement] = STATE(121), - [sym_while_statement] = STATE(121), - [sym_do_statement] = STATE(121), - [sym_for_statement] = STATE(121), - [sym_return_statement] = STATE(121), - [sym_break_statement] = STATE(121), - [sym_continue_statement] = STATE(121), - [sym_goto_statement] = STATE(121), - [sym_seh_try_statement] = STATE(121), - [sym_seh_leave_statement] = STATE(121), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1530), + [379] = { + [sym_attribute_declaration] = STATE(393), + [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_seh_try_statement] = STATE(291), + [sym_seh_leave_statement] = STATE(291), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1520), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52022,290 +54431,193 @@ 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(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [364] = { - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token2] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [365] = { - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token2] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym___extension__] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym___inline] = ACTIONS(1300), - [anon_sym___inline__] = ACTIONS(1300), - [anon_sym___forceinline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym___thread] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym___try] = ACTIONS(1300), - [anon_sym___leave] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym___alignof__] = ACTIONS(1300), - [anon_sym___alignof] = ACTIONS(1300), - [anon_sym__alignof] = ACTIONS(1300), - [anon_sym_alignof] = ACTIONS(1300), - [anon_sym__Alignof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), + [380] = { + [sym_attribute_declaration] = STATE(380), + [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_seh_try_statement] = STATE(92), + [sym_seh_leave_statement] = STATE(92), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(380), + [sym_identifier] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1531), + [anon_sym_switch] = ACTIONS(1534), + [anon_sym_case] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1543), + [anon_sym_do] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1552), + [anon_sym_break] = ACTIONS(1555), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_goto] = ACTIONS(1561), + [anon_sym___try] = ACTIONS(1564), + [anon_sym___leave] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1463), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1469), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1475), + [anon_sym___asm__] = ACTIONS(1475), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1481), + [anon_sym_u_SQUOTE] = ACTIONS(1481), + [anon_sym_U_SQUOTE] = ACTIONS(1481), + [anon_sym_u8_SQUOTE] = ACTIONS(1481), + [anon_sym_SQUOTE] = ACTIONS(1481), + [anon_sym_L_DQUOTE] = ACTIONS(1484), + [anon_sym_u_DQUOTE] = ACTIONS(1484), + [anon_sym_U_DQUOTE] = ACTIONS(1484), + [anon_sym_u8_DQUOTE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym_true] = ACTIONS(1487), + [sym_false] = ACTIONS(1487), + [anon_sym_NULL] = ACTIONS(1490), + [anon_sym_nullptr] = ACTIONS(1490), [sym_comment] = ACTIONS(3), }, - [366] = { - [sym_attribute_declaration] = STATE(400), - [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_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1559), + [381] = { + [sym_attribute_declaration] = STATE(376), + [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_seh_try_statement] = STATE(181), + [sym_seh_leave_statement] = STATE(181), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1391), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52313,1745 +54625,387 @@ 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(363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [367] = { - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym___extension__] = ACTIONS(1324), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym___inline] = ACTIONS(1324), - [anon_sym___inline__] = ACTIONS(1324), - [anon_sym___forceinline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym___thread] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym___alignof__] = ACTIONS(1324), - [anon_sym___alignof] = ACTIONS(1324), - [anon_sym__alignof] = ACTIONS(1324), - [anon_sym_alignof] = ACTIONS(1324), - [anon_sym__Alignof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [368] = { - [sym_identifier] = ACTIONS(1240), - [aux_sym_preproc_include_token1] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), - [sym_preproc_directive] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym___extension__] = ACTIONS(1240), - [anon_sym_typedef] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym___attribute__] = ACTIONS(1240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), - [anon_sym___declspec] = ACTIONS(1240), - [anon_sym___cdecl] = ACTIONS(1240), - [anon_sym___clrcall] = ACTIONS(1240), - [anon_sym___stdcall] = ACTIONS(1240), - [anon_sym___fastcall] = ACTIONS(1240), - [anon_sym___thiscall] = ACTIONS(1240), - [anon_sym___vectorcall] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_auto] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1240), - [anon_sym_inline] = ACTIONS(1240), - [anon_sym___inline] = ACTIONS(1240), - [anon_sym___inline__] = ACTIONS(1240), - [anon_sym___forceinline] = ACTIONS(1240), - [anon_sym_thread_local] = ACTIONS(1240), - [anon_sym___thread] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_constexpr] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1240), - [anon_sym___restrict__] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1240), - [anon_sym__Noreturn] = ACTIONS(1240), - [anon_sym_noreturn] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_case] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_goto] = ACTIONS(1240), - [anon_sym___try] = ACTIONS(1240), - [anon_sym___leave] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1240), - [anon_sym___alignof__] = ACTIONS(1240), - [anon_sym___alignof] = ACTIONS(1240), - [anon_sym__alignof] = ACTIONS(1240), - [anon_sym_alignof] = ACTIONS(1240), - [anon_sym__Alignof] = ACTIONS(1240), - [anon_sym_offsetof] = ACTIONS(1240), - [anon_sym__Generic] = ACTIONS(1240), - [anon_sym_asm] = ACTIONS(1240), - [anon_sym___asm__] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1242), - [anon_sym_L_SQUOTE] = ACTIONS(1242), - [anon_sym_u_SQUOTE] = ACTIONS(1242), - [anon_sym_U_SQUOTE] = ACTIONS(1242), - [anon_sym_u8_SQUOTE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_L_DQUOTE] = ACTIONS(1242), - [anon_sym_u_DQUOTE] = ACTIONS(1242), - [anon_sym_U_DQUOTE] = ACTIONS(1242), - [anon_sym_u8_DQUOTE] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [anon_sym_NULL] = ACTIONS(1240), - [anon_sym_nullptr] = ACTIONS(1240), + [382] = { + [sym_attribute_declaration] = STATE(381), + [sym_compound_statement] = STATE(1999), + [sym_attributed_statement] = STATE(1999), + [sym_labeled_statement] = STATE(1999), + [sym_expression_statement] = STATE(1999), + [sym_if_statement] = STATE(1999), + [sym_switch_statement] = STATE(1999), + [sym_case_statement] = STATE(1999), + [sym_while_statement] = STATE(1999), + [sym_do_statement] = STATE(1999), + [sym_for_statement] = STATE(1999), + [sym_return_statement] = STATE(1999), + [sym_break_statement] = STATE(1999), + [sym_continue_statement] = STATE(1999), + [sym_goto_statement] = STATE(1999), + [sym_seh_try_statement] = STATE(1999), + [sym_seh_leave_statement] = STATE(1999), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(1391), + [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(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [369] = { - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1248), - [aux_sym_preproc_def_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token2] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), - [sym_preproc_directive] = ACTIONS(1248), - [anon_sym_LPAREN2] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym___extension__] = ACTIONS(1248), - [anon_sym_typedef] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym___attribute__] = ACTIONS(1248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), - [anon_sym___declspec] = ACTIONS(1248), - [anon_sym___cdecl] = ACTIONS(1248), - [anon_sym___clrcall] = ACTIONS(1248), - [anon_sym___stdcall] = ACTIONS(1248), - [anon_sym___fastcall] = ACTIONS(1248), - [anon_sym___thiscall] = ACTIONS(1248), - [anon_sym___vectorcall] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = ACTIONS(1248), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_auto] = ACTIONS(1248), - [anon_sym_register] = ACTIONS(1248), - [anon_sym_inline] = ACTIONS(1248), - [anon_sym___inline] = ACTIONS(1248), - [anon_sym___inline__] = ACTIONS(1248), - [anon_sym___forceinline] = ACTIONS(1248), - [anon_sym_thread_local] = ACTIONS(1248), - [anon_sym___thread] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_constexpr] = ACTIONS(1248), - [anon_sym_volatile] = ACTIONS(1248), - [anon_sym_restrict] = ACTIONS(1248), - [anon_sym___restrict__] = ACTIONS(1248), - [anon_sym__Atomic] = ACTIONS(1248), - [anon_sym__Noreturn] = ACTIONS(1248), - [anon_sym_noreturn] = ACTIONS(1248), - [sym_primitive_type] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_switch] = ACTIONS(1248), - [anon_sym_case] = ACTIONS(1248), - [anon_sym_default] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_do] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_goto] = ACTIONS(1248), - [anon_sym___try] = ACTIONS(1248), - [anon_sym___leave] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_sizeof] = ACTIONS(1248), - [anon_sym___alignof__] = ACTIONS(1248), - [anon_sym___alignof] = ACTIONS(1248), - [anon_sym__alignof] = ACTIONS(1248), - [anon_sym_alignof] = ACTIONS(1248), - [anon_sym__Alignof] = ACTIONS(1248), - [anon_sym_offsetof] = ACTIONS(1248), - [anon_sym__Generic] = ACTIONS(1248), - [anon_sym_asm] = ACTIONS(1248), - [anon_sym___asm__] = ACTIONS(1248), - [sym_number_literal] = ACTIONS(1250), - [anon_sym_L_SQUOTE] = ACTIONS(1250), - [anon_sym_u_SQUOTE] = ACTIONS(1250), - [anon_sym_U_SQUOTE] = ACTIONS(1250), - [anon_sym_u8_SQUOTE] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_L_DQUOTE] = ACTIONS(1250), - [anon_sym_u_DQUOTE] = ACTIONS(1250), - [anon_sym_U_DQUOTE] = ACTIONS(1250), - [anon_sym_u8_DQUOTE] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [anon_sym_NULL] = ACTIONS(1248), - [anon_sym_nullptr] = ACTIONS(1248), + [383] = { + [sym_attribute_declaration] = STATE(393), + [sym_compound_statement] = STATE(293), + [sym_attributed_statement] = STATE(299), + [sym_labeled_statement] = STATE(300), + [sym_expression_statement] = STATE(303), + [sym_if_statement] = STATE(305), + [sym_switch_statement] = STATE(282), + [sym_case_statement] = STATE(279), + [sym_while_statement] = STATE(277), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(253), + [sym_break_statement] = STATE(245), + [sym_continue_statement] = STATE(243), + [sym_goto_statement] = STATE(234), + [sym_seh_try_statement] = STATE(231), + [sym_seh_leave_statement] = STATE(227), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1520), + [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(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [370] = { - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token2] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(1296), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym___inline] = ACTIONS(1296), - [anon_sym___inline__] = ACTIONS(1296), - [anon_sym___forceinline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym___thread] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym___try] = ACTIONS(1296), - [anon_sym___leave] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym___alignof__] = ACTIONS(1296), - [anon_sym___alignof] = ACTIONS(1296), - [anon_sym__alignof] = ACTIONS(1296), - [anon_sym_alignof] = ACTIONS(1296), - [anon_sym__Alignof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), + [384] = { + [sym_attribute_declaration] = STATE(404), + [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_seh_try_statement] = STATE(156), + [sym_seh_leave_statement] = STATE(156), + [sym__expression] = STATE(1054), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1853), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [sym_identifier] = ACTIONS(1570), + [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(424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [371] = { - [sym_attribute_declaration] = STATE(371), - [sym_compound_statement] = STATE(241), - [sym_attributed_statement] = STATE(241), - [sym_labeled_statement] = STATE(241), - [sym_expression_statement] = STATE(241), - [sym_if_statement] = STATE(241), - [sym_switch_statement] = STATE(241), - [sym_case_statement] = STATE(241), - [sym_while_statement] = STATE(241), - [sym_do_statement] = STATE(241), - [sym_for_statement] = STATE(241), - [sym_return_statement] = STATE(241), - [sym_break_statement] = STATE(241), - [sym_continue_statement] = STATE(241), - [sym_goto_statement] = STATE(241), - [sym_seh_try_statement] = STATE(241), - [sym_seh_leave_statement] = STATE(241), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1561), - [anon_sym_LPAREN2] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_if] = ACTIONS(1567), - [anon_sym_switch] = ACTIONS(1570), - [anon_sym_case] = ACTIONS(1573), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1588), - [anon_sym_break] = ACTIONS(1591), - [anon_sym_continue] = ACTIONS(1594), - [anon_sym_goto] = ACTIONS(1597), - [anon_sym___try] = ACTIONS(1600), - [anon_sym___leave] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1455), - [anon_sym___alignof] = ACTIONS(1455), - [anon_sym__alignof] = ACTIONS(1455), - [anon_sym_alignof] = ACTIONS(1455), - [anon_sym__Alignof] = ACTIONS(1455), - [anon_sym_offsetof] = ACTIONS(1458), - [anon_sym__Generic] = ACTIONS(1461), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1467), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1473), - [anon_sym_u_DQUOTE] = ACTIONS(1473), - [anon_sym_U_DQUOTE] = ACTIONS(1473), - [anon_sym_u8_DQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1479), - [anon_sym_nullptr] = ACTIONS(1479), - [sym_comment] = ACTIONS(3), - }, - [372] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym___inline] = ACTIONS(1308), - [anon_sym___inline__] = ACTIONS(1308), - [anon_sym___forceinline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym___try] = ACTIONS(1308), - [anon_sym___leave] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym___alignof__] = ACTIONS(1308), - [anon_sym___alignof] = ACTIONS(1308), - [anon_sym__alignof] = ACTIONS(1308), - [anon_sym_alignof] = ACTIONS(1308), - [anon_sym__Alignof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - }, - [373] = { - [sym_attribute_declaration] = STATE(373), - [sym_compound_statement] = STATE(112), - [sym_attributed_statement] = STATE(112), - [sym_labeled_statement] = STATE(112), - [sym_expression_statement] = STATE(112), - [sym_if_statement] = STATE(112), - [sym_switch_statement] = STATE(112), - [sym_case_statement] = STATE(112), - [sym_while_statement] = STATE(112), - [sym_do_statement] = STATE(112), - [sym_for_statement] = STATE(112), - [sym_return_statement] = STATE(112), - [sym_break_statement] = STATE(112), - [sym_continue_statement] = STATE(112), - [sym_goto_statement] = STATE(112), - [sym_seh_try_statement] = STATE(112), - [sym_seh_leave_statement] = STATE(112), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(1603), - [anon_sym_LPAREN2] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_switch] = ACTIONS(1615), - [anon_sym_case] = ACTIONS(1618), - [anon_sym_default] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1624), - [anon_sym_do] = ACTIONS(1627), - [anon_sym_for] = ACTIONS(1630), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1636), - [anon_sym_continue] = ACTIONS(1639), - [anon_sym_goto] = ACTIONS(1642), - [anon_sym___try] = ACTIONS(1645), - [anon_sym___leave] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1455), - [anon_sym___alignof] = ACTIONS(1455), - [anon_sym__alignof] = ACTIONS(1455), - [anon_sym_alignof] = ACTIONS(1455), - [anon_sym__Alignof] = ACTIONS(1455), - [anon_sym_offsetof] = ACTIONS(1458), - [anon_sym__Generic] = ACTIONS(1461), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1467), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1473), - [anon_sym_u_DQUOTE] = ACTIONS(1473), - [anon_sym_U_DQUOTE] = ACTIONS(1473), - [anon_sym_u8_DQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1479), - [anon_sym_nullptr] = ACTIONS(1479), - [sym_comment] = ACTIONS(3), - }, - [374] = { - [sym_identifier] = ACTIONS(1256), - [aux_sym_preproc_include_token1] = ACTIONS(1256), - [aux_sym_preproc_def_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), - [sym_preproc_directive] = ACTIONS(1256), - [anon_sym_LPAREN2] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym___extension__] = ACTIONS(1256), - [anon_sym_typedef] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym___attribute__] = ACTIONS(1256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), - [anon_sym___declspec] = ACTIONS(1256), - [anon_sym___cdecl] = ACTIONS(1256), - [anon_sym___clrcall] = ACTIONS(1256), - [anon_sym___stdcall] = ACTIONS(1256), - [anon_sym___fastcall] = ACTIONS(1256), - [anon_sym___thiscall] = ACTIONS(1256), - [anon_sym___vectorcall] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_RBRACE] = ACTIONS(1258), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = ACTIONS(1256), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_auto] = ACTIONS(1256), - [anon_sym_register] = ACTIONS(1256), - [anon_sym_inline] = ACTIONS(1256), - [anon_sym___inline] = ACTIONS(1256), - [anon_sym___inline__] = ACTIONS(1256), - [anon_sym___forceinline] = ACTIONS(1256), - [anon_sym_thread_local] = ACTIONS(1256), - [anon_sym___thread] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_constexpr] = ACTIONS(1256), - [anon_sym_volatile] = ACTIONS(1256), - [anon_sym_restrict] = ACTIONS(1256), - [anon_sym___restrict__] = ACTIONS(1256), - [anon_sym__Atomic] = ACTIONS(1256), - [anon_sym__Noreturn] = ACTIONS(1256), - [anon_sym_noreturn] = ACTIONS(1256), - [sym_primitive_type] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_goto] = ACTIONS(1256), - [anon_sym___try] = ACTIONS(1256), - [anon_sym___leave] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_sizeof] = ACTIONS(1256), - [anon_sym___alignof__] = ACTIONS(1256), - [anon_sym___alignof] = ACTIONS(1256), - [anon_sym__alignof] = ACTIONS(1256), - [anon_sym_alignof] = ACTIONS(1256), - [anon_sym__Alignof] = ACTIONS(1256), - [anon_sym_offsetof] = ACTIONS(1256), - [anon_sym__Generic] = ACTIONS(1256), - [anon_sym_asm] = ACTIONS(1256), - [anon_sym___asm__] = ACTIONS(1256), - [sym_number_literal] = ACTIONS(1258), - [anon_sym_L_SQUOTE] = ACTIONS(1258), - [anon_sym_u_SQUOTE] = ACTIONS(1258), - [anon_sym_U_SQUOTE] = ACTIONS(1258), - [anon_sym_u8_SQUOTE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_L_DQUOTE] = ACTIONS(1258), - [anon_sym_u_DQUOTE] = ACTIONS(1258), - [anon_sym_U_DQUOTE] = ACTIONS(1258), - [anon_sym_u8_DQUOTE] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_NULL] = ACTIONS(1256), - [anon_sym_nullptr] = ACTIONS(1256), - [sym_comment] = ACTIONS(3), - }, - [375] = { - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym___extension__] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym___inline] = ACTIONS(1300), - [anon_sym___inline__] = ACTIONS(1300), - [anon_sym___forceinline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym___thread] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym___try] = ACTIONS(1300), - [anon_sym___leave] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym___alignof__] = ACTIONS(1300), - [anon_sym___alignof] = ACTIONS(1300), - [anon_sym__alignof] = ACTIONS(1300), - [anon_sym_alignof] = ACTIONS(1300), - [anon_sym__Alignof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - }, - [376] = { - [sym_identifier] = ACTIONS(1244), - [aux_sym_preproc_include_token1] = ACTIONS(1244), - [aux_sym_preproc_def_token1] = ACTIONS(1244), - [aux_sym_preproc_if_token1] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), - [sym_preproc_directive] = ACTIONS(1244), - [anon_sym_LPAREN2] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_TILDE] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym___extension__] = ACTIONS(1244), - [anon_sym_typedef] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1244), - [anon_sym___attribute__] = ACTIONS(1244), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), - [anon_sym___declspec] = ACTIONS(1244), - [anon_sym___cdecl] = ACTIONS(1244), - [anon_sym___clrcall] = ACTIONS(1244), - [anon_sym___stdcall] = ACTIONS(1244), - [anon_sym___fastcall] = ACTIONS(1244), - [anon_sym___thiscall] = ACTIONS(1244), - [anon_sym___vectorcall] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_RBRACE] = ACTIONS(1246), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = ACTIONS(1244), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_auto] = ACTIONS(1244), - [anon_sym_register] = ACTIONS(1244), - [anon_sym_inline] = ACTIONS(1244), - [anon_sym___inline] = ACTIONS(1244), - [anon_sym___inline__] = ACTIONS(1244), - [anon_sym___forceinline] = ACTIONS(1244), - [anon_sym_thread_local] = ACTIONS(1244), - [anon_sym___thread] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_constexpr] = ACTIONS(1244), - [anon_sym_volatile] = ACTIONS(1244), - [anon_sym_restrict] = ACTIONS(1244), - [anon_sym___restrict__] = ACTIONS(1244), - [anon_sym__Atomic] = ACTIONS(1244), - [anon_sym__Noreturn] = ACTIONS(1244), - [anon_sym_noreturn] = ACTIONS(1244), - [sym_primitive_type] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [anon_sym_union] = ACTIONS(1244), - [anon_sym_if] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1244), - [anon_sym_case] = ACTIONS(1244), - [anon_sym_default] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(1244), - [anon_sym_for] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1244), - [anon_sym_break] = ACTIONS(1244), - [anon_sym_continue] = ACTIONS(1244), - [anon_sym_goto] = ACTIONS(1244), - [anon_sym___try] = ACTIONS(1244), - [anon_sym___leave] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_sizeof] = ACTIONS(1244), - [anon_sym___alignof__] = ACTIONS(1244), - [anon_sym___alignof] = ACTIONS(1244), - [anon_sym__alignof] = ACTIONS(1244), - [anon_sym_alignof] = ACTIONS(1244), - [anon_sym__Alignof] = ACTIONS(1244), - [anon_sym_offsetof] = ACTIONS(1244), - [anon_sym__Generic] = ACTIONS(1244), - [anon_sym_asm] = ACTIONS(1244), - [anon_sym___asm__] = ACTIONS(1244), - [sym_number_literal] = ACTIONS(1246), - [anon_sym_L_SQUOTE] = ACTIONS(1246), - [anon_sym_u_SQUOTE] = ACTIONS(1246), - [anon_sym_U_SQUOTE] = ACTIONS(1246), - [anon_sym_u8_SQUOTE] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_L_DQUOTE] = ACTIONS(1246), - [anon_sym_u_DQUOTE] = ACTIONS(1246), - [anon_sym_U_DQUOTE] = ACTIONS(1246), - [anon_sym_u8_DQUOTE] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_true] = ACTIONS(1244), - [sym_false] = ACTIONS(1244), - [anon_sym_NULL] = ACTIONS(1244), - [anon_sym_nullptr] = ACTIONS(1244), - [sym_comment] = ACTIONS(3), - }, - [377] = { - [sym_identifier] = ACTIONS(1260), - [aux_sym_preproc_include_token1] = ACTIONS(1260), - [aux_sym_preproc_def_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), - [sym_preproc_directive] = ACTIONS(1260), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym___extension__] = ACTIONS(1260), - [anon_sym_typedef] = ACTIONS(1260), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym___attribute__] = ACTIONS(1260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), - [anon_sym___declspec] = ACTIONS(1260), - [anon_sym___cdecl] = ACTIONS(1260), - [anon_sym___clrcall] = ACTIONS(1260), - [anon_sym___stdcall] = ACTIONS(1260), - [anon_sym___fastcall] = ACTIONS(1260), - [anon_sym___thiscall] = ACTIONS(1260), - [anon_sym___vectorcall] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_auto] = ACTIONS(1260), - [anon_sym_register] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), - [anon_sym___inline] = ACTIONS(1260), - [anon_sym___inline__] = ACTIONS(1260), - [anon_sym___forceinline] = ACTIONS(1260), - [anon_sym_thread_local] = ACTIONS(1260), - [anon_sym___thread] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_constexpr] = ACTIONS(1260), - [anon_sym_volatile] = ACTIONS(1260), - [anon_sym_restrict] = ACTIONS(1260), - [anon_sym___restrict__] = ACTIONS(1260), - [anon_sym__Atomic] = ACTIONS(1260), - [anon_sym__Noreturn] = ACTIONS(1260), - [anon_sym_noreturn] = ACTIONS(1260), - [sym_primitive_type] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [anon_sym_case] = ACTIONS(1260), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [anon_sym___try] = ACTIONS(1260), - [anon_sym___leave] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_sizeof] = ACTIONS(1260), - [anon_sym___alignof__] = ACTIONS(1260), - [anon_sym___alignof] = ACTIONS(1260), - [anon_sym__alignof] = ACTIONS(1260), - [anon_sym_alignof] = ACTIONS(1260), - [anon_sym__Alignof] = ACTIONS(1260), - [anon_sym_offsetof] = ACTIONS(1260), - [anon_sym__Generic] = ACTIONS(1260), - [anon_sym_asm] = ACTIONS(1260), - [anon_sym___asm__] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_L_SQUOTE] = ACTIONS(1262), - [anon_sym_u_SQUOTE] = ACTIONS(1262), - [anon_sym_U_SQUOTE] = ACTIONS(1262), - [anon_sym_u8_SQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_L_DQUOTE] = ACTIONS(1262), - [anon_sym_u_DQUOTE] = ACTIONS(1262), - [anon_sym_U_DQUOTE] = ACTIONS(1262), - [anon_sym_u8_DQUOTE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym_true] = ACTIONS(1260), - [sym_false] = ACTIONS(1260), - [anon_sym_NULL] = ACTIONS(1260), - [anon_sym_nullptr] = ACTIONS(1260), - [sym_comment] = ACTIONS(3), - }, - [378] = { - [sym_identifier] = ACTIONS(1264), - [aux_sym_preproc_include_token1] = ACTIONS(1264), - [aux_sym_preproc_def_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), - [sym_preproc_directive] = ACTIONS(1264), - [anon_sym_LPAREN2] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym___extension__] = ACTIONS(1264), - [anon_sym_typedef] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym___attribute__] = ACTIONS(1264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), - [anon_sym___declspec] = ACTIONS(1264), - [anon_sym___cdecl] = ACTIONS(1264), - [anon_sym___clrcall] = ACTIONS(1264), - [anon_sym___stdcall] = ACTIONS(1264), - [anon_sym___fastcall] = ACTIONS(1264), - [anon_sym___thiscall] = ACTIONS(1264), - [anon_sym___vectorcall] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_RBRACE] = ACTIONS(1266), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_auto] = ACTIONS(1264), - [anon_sym_register] = ACTIONS(1264), - [anon_sym_inline] = ACTIONS(1264), - [anon_sym___inline] = ACTIONS(1264), - [anon_sym___inline__] = ACTIONS(1264), - [anon_sym___forceinline] = ACTIONS(1264), - [anon_sym_thread_local] = ACTIONS(1264), - [anon_sym___thread] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_constexpr] = ACTIONS(1264), - [anon_sym_volatile] = ACTIONS(1264), - [anon_sym_restrict] = ACTIONS(1264), - [anon_sym___restrict__] = ACTIONS(1264), - [anon_sym__Atomic] = ACTIONS(1264), - [anon_sym__Noreturn] = ACTIONS(1264), - [anon_sym_noreturn] = ACTIONS(1264), - [sym_primitive_type] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_switch] = ACTIONS(1264), - [anon_sym_case] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_do] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_goto] = ACTIONS(1264), - [anon_sym___try] = ACTIONS(1264), - [anon_sym___leave] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_sizeof] = ACTIONS(1264), - [anon_sym___alignof__] = ACTIONS(1264), - [anon_sym___alignof] = ACTIONS(1264), - [anon_sym__alignof] = ACTIONS(1264), - [anon_sym_alignof] = ACTIONS(1264), - [anon_sym__Alignof] = ACTIONS(1264), - [anon_sym_offsetof] = ACTIONS(1264), - [anon_sym__Generic] = ACTIONS(1264), - [anon_sym_asm] = ACTIONS(1264), - [anon_sym___asm__] = ACTIONS(1264), - [sym_number_literal] = ACTIONS(1266), - [anon_sym_L_SQUOTE] = ACTIONS(1266), - [anon_sym_u_SQUOTE] = ACTIONS(1266), - [anon_sym_U_SQUOTE] = ACTIONS(1266), - [anon_sym_u8_SQUOTE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_L_DQUOTE] = ACTIONS(1266), - [anon_sym_u_DQUOTE] = ACTIONS(1266), - [anon_sym_U_DQUOTE] = ACTIONS(1266), - [anon_sym_u8_DQUOTE] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_true] = ACTIONS(1264), - [sym_false] = ACTIONS(1264), - [anon_sym_NULL] = ACTIONS(1264), - [anon_sym_nullptr] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - }, - [379] = { - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym___extension__] = ACTIONS(1268), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_RBRACE] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym___inline] = ACTIONS(1268), - [anon_sym___inline__] = ACTIONS(1268), - [anon_sym___forceinline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym___thread] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym___try] = ACTIONS(1268), - [anon_sym___leave] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym___alignof__] = ACTIONS(1268), - [anon_sym___alignof] = ACTIONS(1268), - [anon_sym__alignof] = ACTIONS(1268), - [anon_sym_alignof] = ACTIONS(1268), - [anon_sym__Alignof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), - [sym_comment] = ACTIONS(3), - }, - [380] = { - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym___extension__] = ACTIONS(1272), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym___inline] = ACTIONS(1272), - [anon_sym___inline__] = ACTIONS(1272), - [anon_sym___forceinline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym___thread] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym___try] = ACTIONS(1272), - [anon_sym___leave] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym___alignof__] = ACTIONS(1272), - [anon_sym___alignof] = ACTIONS(1272), - [anon_sym__alignof] = ACTIONS(1272), - [anon_sym_alignof] = ACTIONS(1272), - [anon_sym__Alignof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - }, - [381] = { - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym___extension__] = ACTIONS(1276), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym___inline] = ACTIONS(1276), - [anon_sym___inline__] = ACTIONS(1276), - [anon_sym___forceinline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym___thread] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym___try] = ACTIONS(1276), - [anon_sym___leave] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym___alignof__] = ACTIONS(1276), - [anon_sym___alignof] = ACTIONS(1276), - [anon_sym__alignof] = ACTIONS(1276), - [anon_sym_alignof] = ACTIONS(1276), - [anon_sym__Alignof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), - [sym_comment] = ACTIONS(3), - }, - [382] = { - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym___extension__] = ACTIONS(1280), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym___inline] = ACTIONS(1280), - [anon_sym___inline__] = ACTIONS(1280), - [anon_sym___forceinline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym___thread] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym___alignof__] = ACTIONS(1280), - [anon_sym___alignof] = ACTIONS(1280), - [anon_sym__alignof] = ACTIONS(1280), - [anon_sym_alignof] = ACTIONS(1280), - [anon_sym__Alignof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), - [sym_comment] = ACTIONS(3), - }, - [383] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token2] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym___inline] = ACTIONS(1312), - [anon_sym___inline__] = ACTIONS(1312), - [anon_sym___forceinline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym___try] = ACTIONS(1312), - [anon_sym___leave] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym___alignof__] = ACTIONS(1312), - [anon_sym___alignof] = ACTIONS(1312), - [anon_sym__alignof] = ACTIONS(1312), - [anon_sym_alignof] = ACTIONS(1312), - [anon_sym__Alignof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - }, - [384] = { - [sym_attribute_declaration] = STATE(335), - [sym_compound_statement] = STATE(96), - [sym_attributed_statement] = STATE(96), - [sym_labeled_statement] = STATE(96), - [sym_expression_statement] = STATE(96), - [sym_if_statement] = STATE(96), - [sym_switch_statement] = STATE(96), - [sym_case_statement] = STATE(96), - [sym_while_statement] = STATE(96), - [sym_do_statement] = STATE(96), - [sym_for_statement] = STATE(96), - [sym_return_statement] = STATE(96), - [sym_break_statement] = STATE(96), - [sym_continue_statement] = STATE(96), - [sym_goto_statement] = STATE(96), - [sym_seh_try_statement] = STATE(96), - [sym_seh_leave_statement] = STATE(96), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1530), + [385] = { + [sym_attribute_declaration] = STATE(404), + [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_seh_try_statement] = STATE(215), + [sym_seh_leave_statement] = STATE(215), + [sym__expression] = STATE(1054), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1853), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [sym_identifier] = ACTIONS(1570), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54059,193 +55013,96 @@ 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(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [385] = { - [sym_identifier] = ACTIONS(1252), - [aux_sym_preproc_include_token1] = ACTIONS(1252), - [aux_sym_preproc_def_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), - [sym_preproc_directive] = ACTIONS(1252), - [anon_sym_LPAREN2] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1252), - [anon_sym_typedef] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym___attribute__] = ACTIONS(1252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), - [anon_sym___declspec] = ACTIONS(1252), - [anon_sym___cdecl] = ACTIONS(1252), - [anon_sym___clrcall] = ACTIONS(1252), - [anon_sym___stdcall] = ACTIONS(1252), - [anon_sym___fastcall] = ACTIONS(1252), - [anon_sym___thiscall] = ACTIONS(1252), - [anon_sym___vectorcall] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1254), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = ACTIONS(1252), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_auto] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_inline] = ACTIONS(1252), - [anon_sym___inline] = ACTIONS(1252), - [anon_sym___inline__] = ACTIONS(1252), - [anon_sym___forceinline] = ACTIONS(1252), - [anon_sym_thread_local] = ACTIONS(1252), - [anon_sym___thread] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_constexpr] = ACTIONS(1252), - [anon_sym_volatile] = ACTIONS(1252), - [anon_sym_restrict] = ACTIONS(1252), - [anon_sym___restrict__] = ACTIONS(1252), - [anon_sym__Atomic] = ACTIONS(1252), - [anon_sym__Noreturn] = ACTIONS(1252), - [anon_sym_noreturn] = ACTIONS(1252), - [sym_primitive_type] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_switch] = ACTIONS(1252), - [anon_sym_case] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym___try] = ACTIONS(1252), - [anon_sym___leave] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(1252), - [anon_sym___alignof__] = ACTIONS(1252), - [anon_sym___alignof] = ACTIONS(1252), - [anon_sym__alignof] = ACTIONS(1252), - [anon_sym_alignof] = ACTIONS(1252), - [anon_sym__Alignof] = ACTIONS(1252), - [anon_sym_offsetof] = ACTIONS(1252), - [anon_sym__Generic] = ACTIONS(1252), - [anon_sym_asm] = ACTIONS(1252), - [anon_sym___asm__] = ACTIONS(1252), - [sym_number_literal] = ACTIONS(1254), - [anon_sym_L_SQUOTE] = ACTIONS(1254), - [anon_sym_u_SQUOTE] = ACTIONS(1254), - [anon_sym_U_SQUOTE] = ACTIONS(1254), - [anon_sym_u8_SQUOTE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_L_DQUOTE] = ACTIONS(1254), - [anon_sym_u_DQUOTE] = ACTIONS(1254), - [anon_sym_U_DQUOTE] = ACTIONS(1254), - [anon_sym_u8_DQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_true] = ACTIONS(1252), - [sym_false] = ACTIONS(1252), - [anon_sym_NULL] = ACTIONS(1252), - [anon_sym_nullptr] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [386] = { - [sym_attribute_declaration] = STATE(314), - [sym_compound_statement] = STATE(308), - [sym_attributed_statement] = STATE(308), - [sym_labeled_statement] = STATE(308), - [sym_expression_statement] = STATE(308), - [sym_if_statement] = STATE(308), - [sym_switch_statement] = STATE(308), - [sym_case_statement] = STATE(308), - [sym_while_statement] = STATE(308), - [sym_do_statement] = STATE(308), - [sym_for_statement] = STATE(308), - [sym_return_statement] = STATE(308), - [sym_break_statement] = STATE(308), - [sym_continue_statement] = STATE(308), - [sym_goto_statement] = STATE(308), - [sym_seh_try_statement] = STATE(308), - [sym_seh_leave_statement] = STATE(308), - [sym__expression] = STATE(1084), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [sym_identifier] = ACTIONS(1378), + [sym_attribute_declaration] = STATE(404), + [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_seh_try_statement] = STATE(221), + [sym_seh_leave_statement] = STATE(221), + [sym__expression] = STATE(1054), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1853), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [sym_identifier] = ACTIONS(1570), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54253,96 +55110,96 @@ 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(913), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [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___try] = ACTIONS(915), - [anon_sym___leave] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [387] = { - [sym_attribute_declaration] = STATE(335), - [sym_compound_statement] = STATE(123), - [sym_attributed_statement] = STATE(124), - [sym_labeled_statement] = STATE(125), - [sym_expression_statement] = STATE(127), - [sym_if_statement] = STATE(126), - [sym_switch_statement] = STATE(120), - [sym_case_statement] = STATE(119), - [sym_while_statement] = STATE(118), - [sym_do_statement] = STATE(117), - [sym_for_statement] = STATE(116), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(109), - [sym_continue_statement] = STATE(108), - [sym_goto_statement] = STATE(107), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(103), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1530), + [sym_attribute_declaration] = STATE(381), + [sym_compound_statement] = STATE(1965), + [sym_attributed_statement] = STATE(1965), + [sym_labeled_statement] = STATE(1965), + [sym_expression_statement] = STATE(1965), + [sym_if_statement] = STATE(1965), + [sym_switch_statement] = STATE(1965), + [sym_case_statement] = STATE(1965), + [sym_while_statement] = STATE(1965), + [sym_do_statement] = STATE(1965), + [sym_for_statement] = STATE(1965), + [sym_return_statement] = STATE(1965), + [sym_break_statement] = STATE(1965), + [sym_continue_statement] = STATE(1965), + [sym_goto_statement] = STATE(1965), + [sym_seh_try_statement] = STATE(1965), + [sym_seh_leave_statement] = STATE(1965), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(1391), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54350,193 +55207,193 @@ 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(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [388] = { - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym___extension__] = ACTIONS(1288), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym___inline] = ACTIONS(1288), - [anon_sym___inline__] = ACTIONS(1288), - [anon_sym___forceinline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym___thread] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym___try] = ACTIONS(1288), - [anon_sym___leave] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym___alignof__] = ACTIONS(1288), - [anon_sym___alignof] = ACTIONS(1288), - [anon_sym__alignof] = ACTIONS(1288), - [anon_sym_alignof] = ACTIONS(1288), - [anon_sym__Alignof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), + [sym_attribute_declaration] = STATE(388), + [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_seh_try_statement] = STATE(178), + [sym_seh_leave_statement] = STATE(178), + [sym__expression] = STATE(1054), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1853), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1572), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1584), + [anon_sym_case] = ACTIONS(1587), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1596), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1602), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1608), + [anon_sym_goto] = ACTIONS(1611), + [anon_sym___try] = ACTIONS(1614), + [anon_sym___leave] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1463), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1469), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1475), + [anon_sym___asm__] = ACTIONS(1475), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1481), + [anon_sym_u_SQUOTE] = ACTIONS(1481), + [anon_sym_U_SQUOTE] = ACTIONS(1481), + [anon_sym_u8_SQUOTE] = ACTIONS(1481), + [anon_sym_SQUOTE] = ACTIONS(1481), + [anon_sym_L_DQUOTE] = ACTIONS(1484), + [anon_sym_u_DQUOTE] = ACTIONS(1484), + [anon_sym_U_DQUOTE] = ACTIONS(1484), + [anon_sym_u8_DQUOTE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym_true] = ACTIONS(1487), + [sym_false] = ACTIONS(1487), + [anon_sym_NULL] = ACTIONS(1490), + [anon_sym_nullptr] = ACTIONS(1490), [sym_comment] = ACTIONS(3), }, [389] = { - [sym_attribute_declaration] = STATE(335), - [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_seh_try_statement] = STATE(99), - [sym_seh_leave_statement] = STATE(99), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1530), + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(114), + [sym_attributed_statement] = STATE(114), + [sym_labeled_statement] = STATE(114), + [sym_expression_statement] = STATE(114), + [sym_if_statement] = STATE(114), + [sym_switch_statement] = STATE(114), + [sym_case_statement] = STATE(114), + [sym_while_statement] = STATE(114), + [sym_do_statement] = STATE(114), + [sym_for_statement] = STATE(114), + [sym_return_statement] = STATE(114), + [sym_break_statement] = STATE(114), + [sym_continue_statement] = STATE(114), + [sym_goto_statement] = STATE(114), + [sym_seh_try_statement] = STATE(114), + [sym_seh_leave_statement] = STATE(114), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1389), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54544,193 +55401,193 @@ 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(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [390] = { - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym___extension__] = ACTIONS(1344), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym___inline] = ACTIONS(1344), - [anon_sym___inline__] = ACTIONS(1344), - [anon_sym___forceinline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym___thread] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym___try] = ACTIONS(1344), - [anon_sym___leave] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym___alignof__] = ACTIONS(1344), - [anon_sym___alignof] = ACTIONS(1344), - [anon_sym__alignof] = ACTIONS(1344), - [anon_sym_alignof] = ACTIONS(1344), - [anon_sym__Alignof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), + [sym_attribute_declaration] = STATE(403), + [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_seh_try_statement] = STATE(301), + [sym_seh_leave_statement] = STATE(301), + [sym__expression] = STATE(1088), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1880), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1385), + [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(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(982), + [anon_sym___leave] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [391] = { - [sym_attribute_declaration] = STATE(314), - [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_seh_try_statement] = STATE(158), - [sym_seh_leave_statement] = STATE(158), - [sym__expression] = STATE(1084), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [sym_identifier] = ACTIONS(1378), + [sym_attribute_declaration] = STATE(405), + [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_seh_try_statement] = STATE(75), + [sym_seh_leave_statement] = STATE(75), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1389), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54738,290 +55595,290 @@ 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(913), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [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___try] = ACTIONS(915), - [anon_sym___leave] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [392] = { - [sym_identifier] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym___extension__] = ACTIONS(1236), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), - [anon_sym___declspec] = ACTIONS(1236), - [anon_sym___cdecl] = ACTIONS(1236), - [anon_sym___clrcall] = ACTIONS(1236), - [anon_sym___stdcall] = ACTIONS(1236), - [anon_sym___fastcall] = ACTIONS(1236), - [anon_sym___thiscall] = ACTIONS(1236), - [anon_sym___vectorcall] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_RBRACE] = ACTIONS(1238), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym___inline] = ACTIONS(1236), - [anon_sym___inline__] = ACTIONS(1236), - [anon_sym___forceinline] = ACTIONS(1236), - [anon_sym_thread_local] = ACTIONS(1236), - [anon_sym___thread] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_constexpr] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym___restrict__] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym__Noreturn] = ACTIONS(1236), - [anon_sym_noreturn] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_case] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym___try] = ACTIONS(1236), - [anon_sym___leave] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1236), - [anon_sym___alignof__] = ACTIONS(1236), - [anon_sym___alignof] = ACTIONS(1236), - [anon_sym__alignof] = ACTIONS(1236), - [anon_sym_alignof] = ACTIONS(1236), - [anon_sym__Alignof] = ACTIONS(1236), - [anon_sym_offsetof] = ACTIONS(1236), - [anon_sym__Generic] = ACTIONS(1236), - [anon_sym_asm] = ACTIONS(1236), - [anon_sym___asm__] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1238), - [anon_sym_u_SQUOTE] = ACTIONS(1238), - [anon_sym_U_SQUOTE] = ACTIONS(1238), - [anon_sym_u8_SQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_L_DQUOTE] = ACTIONS(1238), - [anon_sym_u_DQUOTE] = ACTIONS(1238), - [anon_sym_U_DQUOTE] = ACTIONS(1238), - [anon_sym_u8_DQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [anon_sym_NULL] = ACTIONS(1236), - [anon_sym_nullptr] = ACTIONS(1236), + [sym_attribute_declaration] = STATE(392), + [sym_compound_statement] = STATE(262), + [sym_attributed_statement] = STATE(262), + [sym_labeled_statement] = STATE(262), + [sym_expression_statement] = STATE(262), + [sym_if_statement] = STATE(262), + [sym_switch_statement] = STATE(262), + [sym_case_statement] = STATE(262), + [sym_while_statement] = STATE(262), + [sym_do_statement] = STATE(262), + [sym_for_statement] = STATE(262), + [sym_return_statement] = STATE(262), + [sym_break_statement] = STATE(262), + [sym_continue_statement] = STATE(262), + [sym_goto_statement] = STATE(262), + [sym_seh_try_statement] = STATE(262), + [sym_seh_leave_statement] = STATE(262), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1620), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_case] = ACTIONS(1632), + [anon_sym_default] = ACTIONS(1635), + [anon_sym_while] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1647), + [anon_sym_break] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_goto] = ACTIONS(1656), + [anon_sym___try] = ACTIONS(1659), + [anon_sym___leave] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1463), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1469), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1475), + [anon_sym___asm__] = ACTIONS(1475), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1481), + [anon_sym_u_SQUOTE] = ACTIONS(1481), + [anon_sym_U_SQUOTE] = ACTIONS(1481), + [anon_sym_u8_SQUOTE] = ACTIONS(1481), + [anon_sym_SQUOTE] = ACTIONS(1481), + [anon_sym_L_DQUOTE] = ACTIONS(1484), + [anon_sym_u_DQUOTE] = ACTIONS(1484), + [anon_sym_U_DQUOTE] = ACTIONS(1484), + [anon_sym_u8_DQUOTE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym_true] = ACTIONS(1487), + [sym_false] = ACTIONS(1487), + [anon_sym_NULL] = ACTIONS(1490), + [anon_sym_nullptr] = ACTIONS(1490), [sym_comment] = ACTIONS(3), }, [393] = { - [sym_identifier] = ACTIONS(1340), - [aux_sym_preproc_include_token1] = ACTIONS(1340), - [aux_sym_preproc_def_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), - [sym_preproc_directive] = ACTIONS(1340), - [anon_sym_LPAREN2] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym___extension__] = ACTIONS(1340), - [anon_sym_typedef] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym___attribute__] = ACTIONS(1340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), - [anon_sym___declspec] = ACTIONS(1340), - [anon_sym___cdecl] = ACTIONS(1340), - [anon_sym___clrcall] = ACTIONS(1340), - [anon_sym___stdcall] = ACTIONS(1340), - [anon_sym___fastcall] = ACTIONS(1340), - [anon_sym___thiscall] = ACTIONS(1340), - [anon_sym___vectorcall] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_auto] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1340), - [anon_sym_inline] = ACTIONS(1340), - [anon_sym___inline] = ACTIONS(1340), - [anon_sym___inline__] = ACTIONS(1340), - [anon_sym___forceinline] = ACTIONS(1340), - [anon_sym_thread_local] = ACTIONS(1340), - [anon_sym___thread] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [sym_primitive_type] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_switch] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_goto] = ACTIONS(1340), - [anon_sym___try] = ACTIONS(1340), - [anon_sym___leave] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1340), - [anon_sym___alignof__] = ACTIONS(1340), - [anon_sym___alignof] = ACTIONS(1340), - [anon_sym__alignof] = ACTIONS(1340), - [anon_sym_alignof] = ACTIONS(1340), - [anon_sym__Alignof] = ACTIONS(1340), - [anon_sym_offsetof] = ACTIONS(1340), - [anon_sym__Generic] = ACTIONS(1340), - [anon_sym_asm] = ACTIONS(1340), - [anon_sym___asm__] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1342), - [anon_sym_L_SQUOTE] = ACTIONS(1342), - [anon_sym_u_SQUOTE] = ACTIONS(1342), - [anon_sym_U_SQUOTE] = ACTIONS(1342), - [anon_sym_u8_SQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_L_DQUOTE] = ACTIONS(1342), - [anon_sym_u_DQUOTE] = ACTIONS(1342), - [anon_sym_U_DQUOTE] = ACTIONS(1342), - [anon_sym_u8_DQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_true] = ACTIONS(1340), - [sym_false] = ACTIONS(1340), - [anon_sym_NULL] = ACTIONS(1340), - [anon_sym_nullptr] = ACTIONS(1340), + [sym_attribute_declaration] = STATE(392), + [sym_compound_statement] = STATE(262), + [sym_attributed_statement] = STATE(262), + [sym_labeled_statement] = STATE(262), + [sym_expression_statement] = STATE(262), + [sym_if_statement] = STATE(262), + [sym_switch_statement] = STATE(262), + [sym_case_statement] = STATE(262), + [sym_while_statement] = STATE(262), + [sym_do_statement] = STATE(262), + [sym_for_statement] = STATE(262), + [sym_return_statement] = STATE(262), + [sym_break_statement] = STATE(262), + [sym_continue_statement] = STATE(262), + [sym_goto_statement] = STATE(262), + [sym_seh_try_statement] = STATE(262), + [sym_seh_leave_statement] = STATE(262), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1520), + [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(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [394] = { - [sym_attribute_declaration] = STATE(400), - [sym_compound_statement] = STATE(279), - [sym_attributed_statement] = STATE(280), - [sym_labeled_statement] = STATE(282), - [sym_expression_statement] = STATE(283), - [sym_if_statement] = STATE(286), - [sym_switch_statement] = STATE(287), - [sym_case_statement] = STATE(288), - [sym_while_statement] = STATE(289), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(291), - [sym_return_statement] = STATE(294), + [sym_attribute_declaration] = STATE(404), + [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(162), - [sym_goto_statement] = STATE(297), - [sym_seh_try_statement] = STATE(298), - [sym_seh_leave_statement] = STATE(299), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1559), + [sym_continue_statement] = STATE(295), + [sym_goto_statement] = STATE(295), + [sym_seh_try_statement] = STATE(295), + [sym_seh_leave_statement] = STATE(295), + [sym__expression] = STATE(1054), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1853), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [sym_identifier] = ACTIONS(1570), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55029,193 +55886,193 @@ 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(363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [395] = { - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(1296), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym___inline] = ACTIONS(1296), - [anon_sym___inline__] = ACTIONS(1296), - [anon_sym___forceinline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym___thread] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym___try] = ACTIONS(1296), - [anon_sym___leave] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym___alignof__] = ACTIONS(1296), - [anon_sym___alignof] = ACTIONS(1296), - [anon_sym__alignof] = ACTIONS(1296), - [anon_sym_alignof] = ACTIONS(1296), - [anon_sym__Alignof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), + [sym_attribute_declaration] = STATE(403), + [sym_compound_statement] = STATE(219), + [sym_attributed_statement] = STATE(219), + [sym_labeled_statement] = STATE(219), + [sym_expression_statement] = STATE(219), + [sym_if_statement] = STATE(219), + [sym_switch_statement] = STATE(219), + [sym_case_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_do_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_return_statement] = STATE(219), + [sym_break_statement] = STATE(219), + [sym_continue_statement] = STATE(219), + [sym_goto_statement] = STATE(219), + [sym_seh_try_statement] = STATE(219), + [sym_seh_leave_statement] = STATE(219), + [sym__expression] = STATE(1088), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1880), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1385), + [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(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(982), + [anon_sym___leave] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [396] = { - [sym_attribute_declaration] = STATE(314), - [sym_compound_statement] = STATE(285), - [sym_attributed_statement] = STATE(285), - [sym_labeled_statement] = STATE(285), - [sym_expression_statement] = STATE(285), - [sym_if_statement] = STATE(285), - [sym_switch_statement] = STATE(285), - [sym_case_statement] = STATE(285), - [sym_while_statement] = STATE(285), - [sym_do_statement] = STATE(285), - [sym_for_statement] = STATE(285), - [sym_return_statement] = STATE(285), - [sym_break_statement] = STATE(285), - [sym_continue_statement] = STATE(285), - [sym_goto_statement] = STATE(285), - [sym_seh_try_statement] = STATE(285), - [sym_seh_leave_statement] = STATE(285), - [sym__expression] = STATE(1084), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(314), - [sym_identifier] = ACTIONS(1378), + [sym_attribute_declaration] = STATE(404), + [sym_compound_statement] = STATE(288), + [sym_attributed_statement] = STATE(287), + [sym_labeled_statement] = STATE(286), + [sym_expression_statement] = STATE(284), + [sym_if_statement] = STATE(283), + [sym_switch_statement] = STATE(272), + [sym_case_statement] = STATE(271), + [sym_while_statement] = STATE(270), + [sym_do_statement] = STATE(268), + [sym_for_statement] = STATE(259), + [sym_return_statement] = STATE(257), + [sym_break_statement] = STATE(256), + [sym_continue_statement] = STATE(254), + [sym_goto_statement] = STATE(252), + [sym_seh_try_statement] = STATE(249), + [sym_seh_leave_statement] = STATE(248), + [sym__expression] = STATE(1054), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1853), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [sym_identifier] = ACTIONS(1570), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55223,96 +56080,96 @@ 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(913), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [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___try] = ACTIONS(915), - [anon_sym___leave] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [397] = { - [sym_attribute_declaration] = STATE(335), - [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_seh_try_statement] = STATE(75), - [sym_seh_leave_statement] = STATE(75), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1530), + [sym_attribute_declaration] = STATE(403), + [sym_compound_statement] = STATE(289), + [sym_attributed_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_switch_statement] = STATE(289), + [sym_case_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_goto_statement] = STATE(289), + [sym_seh_try_statement] = STATE(289), + [sym_seh_leave_statement] = STATE(289), + [sym__expression] = STATE(1088), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1880), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1385), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55320,193 +56177,193 @@ 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(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(982), + [anon_sym___leave] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [398] = { - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym___extension__] = ACTIONS(1284), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym___inline] = ACTIONS(1284), - [anon_sym___inline__] = ACTIONS(1284), - [anon_sym___forceinline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym___thread] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym___alignof__] = ACTIONS(1284), - [anon_sym___alignof] = ACTIONS(1284), - [anon_sym__alignof] = ACTIONS(1284), - [anon_sym_alignof] = ACTIONS(1284), - [anon_sym__Alignof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), + [sym_attribute_declaration] = STATE(403), + [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_seh_try_statement] = STATE(158), + [sym_seh_leave_statement] = STATE(158), + [sym__expression] = STATE(1088), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1880), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1385), + [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(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(982), + [anon_sym___leave] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [399] = { - [sym_attribute_declaration] = STATE(400), - [sym_compound_statement] = STATE(277), - [sym_attributed_statement] = STATE(277), - [sym_labeled_statement] = STATE(277), - [sym_expression_statement] = STATE(277), - [sym_if_statement] = STATE(277), - [sym_switch_statement] = STATE(277), - [sym_case_statement] = STATE(277), - [sym_while_statement] = STATE(277), - [sym_do_statement] = STATE(277), - [sym_for_statement] = STATE(277), - [sym_return_statement] = STATE(277), - [sym_break_statement] = STATE(277), - [sym_continue_statement] = STATE(277), - [sym_goto_statement] = STATE(277), - [sym_seh_try_statement] = STATE(277), - [sym_seh_leave_statement] = STATE(277), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1559), + [sym_attribute_declaration] = STATE(381), + [sym_compound_statement] = STATE(2020), + [sym_attributed_statement] = STATE(2020), + [sym_labeled_statement] = STATE(2020), + [sym_expression_statement] = STATE(2020), + [sym_if_statement] = STATE(2020), + [sym_switch_statement] = STATE(2020), + [sym_case_statement] = STATE(2020), + [sym_while_statement] = STATE(2020), + [sym_do_statement] = STATE(2020), + [sym_for_statement] = STATE(2020), + [sym_return_statement] = STATE(2020), + [sym_break_statement] = STATE(2020), + [sym_continue_statement] = STATE(2020), + [sym_goto_statement] = STATE(2020), + [sym_seh_try_statement] = STATE(2020), + [sym_seh_leave_statement] = STATE(2020), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(1391), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55514,96 +56371,96 @@ 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(363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [400] = { - [sym_attribute_declaration] = STATE(371), - [sym_compound_statement] = STATE(241), - [sym_attributed_statement] = STATE(241), - [sym_labeled_statement] = STATE(241), - [sym_expression_statement] = STATE(241), - [sym_if_statement] = STATE(241), - [sym_switch_statement] = STATE(241), - [sym_case_statement] = STATE(241), - [sym_while_statement] = STATE(241), - [sym_do_statement] = STATE(241), - [sym_for_statement] = STATE(241), - [sym_return_statement] = STATE(241), - [sym_break_statement] = STATE(241), - [sym_continue_statement] = STATE(241), - [sym_goto_statement] = STATE(241), - [sym_seh_try_statement] = STATE(241), - [sym_seh_leave_statement] = STATE(241), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1559), + [sym_attribute_declaration] = STATE(393), + [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_seh_try_statement] = STATE(168), + [sym_seh_leave_statement] = STATE(168), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1520), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55611,290 +56468,290 @@ 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(363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_if] = ACTIONS(375), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_case] = ACTIONS(379), - [anon_sym_default] = ACTIONS(381), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_return] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_goto] = ACTIONS(395), - [anon_sym___try] = ACTIONS(397), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [401] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym___extension__] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym___inline] = ACTIONS(1320), - [anon_sym___inline__] = ACTIONS(1320), - [anon_sym___forceinline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym___try] = ACTIONS(1320), - [anon_sym___leave] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym___alignof__] = ACTIONS(1320), - [anon_sym___alignof] = ACTIONS(1320), - [anon_sym__alignof] = ACTIONS(1320), - [anon_sym_alignof] = ACTIONS(1320), - [anon_sym__Alignof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [sym_attribute_declaration] = STATE(393), + [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_seh_try_statement] = STATE(165), + [sym_seh_leave_statement] = STATE(165), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1520), + [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(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [402] = { - [sym_identifier] = ACTIONS(1340), - [aux_sym_preproc_include_token1] = ACTIONS(1340), - [aux_sym_preproc_def_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token2] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), - [sym_preproc_directive] = ACTIONS(1340), - [anon_sym_LPAREN2] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym___extension__] = ACTIONS(1340), - [anon_sym_typedef] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym___attribute__] = ACTIONS(1340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), - [anon_sym___declspec] = ACTIONS(1340), - [anon_sym___cdecl] = ACTIONS(1340), - [anon_sym___clrcall] = ACTIONS(1340), - [anon_sym___stdcall] = ACTIONS(1340), - [anon_sym___fastcall] = ACTIONS(1340), - [anon_sym___thiscall] = ACTIONS(1340), - [anon_sym___vectorcall] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_auto] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1340), - [anon_sym_inline] = ACTIONS(1340), - [anon_sym___inline] = ACTIONS(1340), - [anon_sym___inline__] = ACTIONS(1340), - [anon_sym___forceinline] = ACTIONS(1340), - [anon_sym_thread_local] = ACTIONS(1340), - [anon_sym___thread] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [sym_primitive_type] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_switch] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_goto] = ACTIONS(1340), - [anon_sym___try] = ACTIONS(1340), - [anon_sym___leave] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1340), - [anon_sym___alignof__] = ACTIONS(1340), - [anon_sym___alignof] = ACTIONS(1340), - [anon_sym__alignof] = ACTIONS(1340), - [anon_sym_alignof] = ACTIONS(1340), - [anon_sym__Alignof] = ACTIONS(1340), - [anon_sym_offsetof] = ACTIONS(1340), - [anon_sym__Generic] = ACTIONS(1340), - [anon_sym_asm] = ACTIONS(1340), - [anon_sym___asm__] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1342), - [anon_sym_L_SQUOTE] = ACTIONS(1342), - [anon_sym_u_SQUOTE] = ACTIONS(1342), - [anon_sym_U_SQUOTE] = ACTIONS(1342), - [anon_sym_u8_SQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_L_DQUOTE] = ACTIONS(1342), - [anon_sym_u_DQUOTE] = ACTIONS(1342), - [anon_sym_U_DQUOTE] = ACTIONS(1342), - [anon_sym_u8_DQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_true] = ACTIONS(1340), - [sym_false] = ACTIONS(1340), - [anon_sym_NULL] = ACTIONS(1340), - [anon_sym_nullptr] = ACTIONS(1340), + [sym_attribute_declaration] = STATE(393), + [sym_compound_statement] = STATE(157), + [sym_attributed_statement] = STATE(157), + [sym_labeled_statement] = STATE(157), + [sym_expression_statement] = STATE(157), + [sym_if_statement] = STATE(157), + [sym_switch_statement] = STATE(157), + [sym_case_statement] = STATE(157), + [sym_while_statement] = STATE(157), + [sym_do_statement] = STATE(157), + [sym_for_statement] = STATE(157), + [sym_return_statement] = STATE(157), + [sym_break_statement] = STATE(157), + [sym_continue_statement] = STATE(157), + [sym_goto_statement] = STATE(157), + [sym_seh_try_statement] = STATE(157), + [sym_seh_leave_statement] = STATE(157), + [sym__expression] = STATE(1089), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1976), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1520), + [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(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [403] = { - [sym_attribute_declaration] = STATE(358), - [sym_compound_statement] = STATE(2010), - [sym_attributed_statement] = STATE(2010), - [sym_labeled_statement] = STATE(2010), - [sym_expression_statement] = STATE(2010), - [sym_if_statement] = STATE(2010), - [sym_switch_statement] = STATE(2010), - [sym_case_statement] = STATE(2010), - [sym_while_statement] = STATE(2010), - [sym_do_statement] = STATE(2010), - [sym_for_statement] = STATE(2010), - [sym_return_statement] = STATE(2010), - [sym_break_statement] = STATE(2010), - [sym_continue_statement] = STATE(2010), - [sym_goto_statement] = STATE(2010), - [sym_seh_try_statement] = STATE(2010), - [sym_seh_leave_statement] = STATE(2010), - [sym__expression] = STATE(1038), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_attributed_declarator_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1380), + [sym_attribute_declaration] = STATE(372), + [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_seh_try_statement] = STATE(181), + [sym_seh_leave_statement] = STATE(181), + [sym__expression] = STATE(1088), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1880), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1385), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55902,2913 +56759,2970 @@ 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(363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1077), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1079), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1083), - [anon_sym___leave] = ACTIONS(399), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_if] = ACTIONS(59), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(982), + [anon_sym___leave] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [404] = { - [ts_builtin_sym_end] = ACTIONS(1250), - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1248), - [aux_sym_preproc_def_token1] = ACTIONS(1248), - [anon_sym_COMMA] = ACTIONS(1250), - [aux_sym_preproc_if_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), - [sym_preproc_directive] = ACTIONS(1248), - [anon_sym_LPAREN2] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym___extension__] = ACTIONS(1248), - [anon_sym_typedef] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym___attribute__] = ACTIONS(1248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), - [anon_sym___declspec] = ACTIONS(1248), - [anon_sym___cdecl] = ACTIONS(1248), - [anon_sym___clrcall] = ACTIONS(1248), - [anon_sym___stdcall] = ACTIONS(1248), - [anon_sym___fastcall] = ACTIONS(1248), - [anon_sym___thiscall] = ACTIONS(1248), - [anon_sym___vectorcall] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1250), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = ACTIONS(1248), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_auto] = ACTIONS(1248), - [anon_sym_register] = ACTIONS(1248), - [anon_sym_inline] = ACTIONS(1248), - [anon_sym___inline] = ACTIONS(1248), - [anon_sym___inline__] = ACTIONS(1248), - [anon_sym___forceinline] = ACTIONS(1248), - [anon_sym_thread_local] = ACTIONS(1248), - [anon_sym___thread] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_constexpr] = ACTIONS(1248), - [anon_sym_volatile] = ACTIONS(1248), - [anon_sym_restrict] = ACTIONS(1248), - [anon_sym___restrict__] = ACTIONS(1248), - [anon_sym__Atomic] = ACTIONS(1248), - [anon_sym__Noreturn] = ACTIONS(1248), - [anon_sym_noreturn] = ACTIONS(1248), - [sym_primitive_type] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_switch] = ACTIONS(1248), - [anon_sym_case] = ACTIONS(1248), - [anon_sym_default] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_do] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_goto] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_sizeof] = ACTIONS(1248), - [anon_sym___alignof__] = ACTIONS(1248), - [anon_sym___alignof] = ACTIONS(1248), - [anon_sym__alignof] = ACTIONS(1248), - [anon_sym_alignof] = ACTIONS(1248), - [anon_sym__Alignof] = ACTIONS(1248), - [anon_sym_offsetof] = ACTIONS(1248), - [anon_sym__Generic] = ACTIONS(1248), - [anon_sym_asm] = ACTIONS(1248), - [anon_sym___asm__] = ACTIONS(1248), - [sym_number_literal] = ACTIONS(1250), - [anon_sym_L_SQUOTE] = ACTIONS(1250), - [anon_sym_u_SQUOTE] = ACTIONS(1250), - [anon_sym_U_SQUOTE] = ACTIONS(1250), - [anon_sym_u8_SQUOTE] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_L_DQUOTE] = ACTIONS(1250), - [anon_sym_u_DQUOTE] = ACTIONS(1250), - [anon_sym_U_DQUOTE] = ACTIONS(1250), - [anon_sym_u8_DQUOTE] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [anon_sym_NULL] = ACTIONS(1248), - [anon_sym_nullptr] = ACTIONS(1248), + [sym_attribute_declaration] = STATE(388), + [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_seh_try_statement] = STATE(178), + [sym_seh_leave_statement] = STATE(178), + [sym__expression] = STATE(1054), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1853), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1570), + [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(424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_if] = ACTIONS(434), + [anon_sym_switch] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(442), + [anon_sym_do] = ACTIONS(444), + [anon_sym_for] = ACTIONS(446), + [anon_sym_return] = ACTIONS(448), + [anon_sym_break] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(454), + [anon_sym___try] = ACTIONS(456), + [anon_sym___leave] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [405] = { - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [anon_sym_COMMA] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [sym_attribute_declaration] = STATE(380), + [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_seh_try_statement] = STATE(92), + [sym_seh_leave_statement] = STATE(92), + [sym__expression] = STATE(1097), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_attributed_declarator_repeat1] = STATE(380), + [sym_identifier] = ACTIONS(1389), + [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(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym___try] = ACTIONS(155), + [anon_sym___leave] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [406] = { - [sym__expression] = STATE(881), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(708), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(708), - [sym_call_expression] = STATE(708), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(708), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(708), - [sym_initializer_list] = STATE(713), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_identifier] = ACTIONS(1364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_PERCENT] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1350), - [anon_sym_GT_GT] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_RBRACK] = ACTIONS(1352), - [anon_sym_EQ] = ACTIONS(1350), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_STAR_EQ] = ACTIONS(1352), - [anon_sym_SLASH_EQ] = ACTIONS(1352), - [anon_sym_PERCENT_EQ] = ACTIONS(1352), - [anon_sym_PLUS_EQ] = ACTIONS(1352), - [anon_sym_DASH_EQ] = ACTIONS(1352), - [anon_sym_LT_LT_EQ] = ACTIONS(1352), - [anon_sym_GT_GT_EQ] = ACTIONS(1352), - [anon_sym_AMP_EQ] = ACTIONS(1352), - [anon_sym_CARET_EQ] = ACTIONS(1352), - [anon_sym_PIPE_EQ] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1350), - [anon_sym_DASH_GT] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [ts_builtin_sym_end] = ACTIONS(1662), + [sym_identifier] = ACTIONS(1664), + [aux_sym_preproc_include_token1] = ACTIONS(1664), + [aux_sym_preproc_def_token1] = ACTIONS(1664), + [aux_sym_preproc_if_token1] = ACTIONS(1664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1664), + [sym_preproc_directive] = ACTIONS(1664), + [anon_sym_LPAREN2] = ACTIONS(1662), + [anon_sym_BANG] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1662), + [anon_sym_DASH] = ACTIONS(1664), + [anon_sym_PLUS] = ACTIONS(1664), + [anon_sym_STAR] = ACTIONS(1662), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym___extension__] = ACTIONS(1664), + [anon_sym_typedef] = ACTIONS(1664), + [anon_sym_extern] = ACTIONS(1664), + [anon_sym___attribute__] = ACTIONS(1664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1662), + [anon_sym___declspec] = ACTIONS(1664), + [anon_sym___cdecl] = ACTIONS(1664), + [anon_sym___clrcall] = ACTIONS(1664), + [anon_sym___stdcall] = ACTIONS(1664), + [anon_sym___fastcall] = ACTIONS(1664), + [anon_sym___thiscall] = ACTIONS(1664), + [anon_sym___vectorcall] = ACTIONS(1664), + [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_signed] = ACTIONS(1664), + [anon_sym_unsigned] = ACTIONS(1664), + [anon_sym_long] = ACTIONS(1664), + [anon_sym_short] = ACTIONS(1664), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_auto] = ACTIONS(1664), + [anon_sym_register] = ACTIONS(1664), + [anon_sym_inline] = ACTIONS(1664), + [anon_sym___inline] = ACTIONS(1664), + [anon_sym___inline__] = ACTIONS(1664), + [anon_sym___forceinline] = ACTIONS(1664), + [anon_sym_thread_local] = ACTIONS(1664), + [anon_sym___thread] = ACTIONS(1664), + [anon_sym_const] = ACTIONS(1664), + [anon_sym_constexpr] = ACTIONS(1664), + [anon_sym_volatile] = ACTIONS(1664), + [anon_sym_restrict] = ACTIONS(1664), + [anon_sym___restrict__] = ACTIONS(1664), + [anon_sym__Atomic] = ACTIONS(1664), + [anon_sym__Noreturn] = ACTIONS(1664), + [anon_sym_noreturn] = ACTIONS(1664), + [anon_sym_alignas] = ACTIONS(1664), + [anon_sym__Alignas] = ACTIONS(1664), + [sym_primitive_type] = ACTIONS(1664), + [anon_sym_enum] = ACTIONS(1664), + [anon_sym_struct] = ACTIONS(1664), + [anon_sym_union] = ACTIONS(1664), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_switch] = ACTIONS(1664), + [anon_sym_case] = ACTIONS(1664), + [anon_sym_default] = ACTIONS(1664), + [anon_sym_while] = ACTIONS(1664), + [anon_sym_do] = ACTIONS(1664), + [anon_sym_for] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1664), + [anon_sym_break] = ACTIONS(1664), + [anon_sym_continue] = ACTIONS(1664), + [anon_sym_goto] = ACTIONS(1664), + [anon_sym_DASH_DASH] = ACTIONS(1662), + [anon_sym_PLUS_PLUS] = ACTIONS(1662), + [anon_sym_sizeof] = ACTIONS(1664), + [anon_sym___alignof__] = ACTIONS(1664), + [anon_sym___alignof] = ACTIONS(1664), + [anon_sym__alignof] = ACTIONS(1664), + [anon_sym_alignof] = ACTIONS(1664), + [anon_sym__Alignof] = ACTIONS(1664), + [anon_sym_offsetof] = ACTIONS(1664), + [anon_sym__Generic] = ACTIONS(1664), + [anon_sym_asm] = ACTIONS(1664), + [anon_sym___asm__] = ACTIONS(1664), + [sym_number_literal] = ACTIONS(1662), + [anon_sym_L_SQUOTE] = ACTIONS(1662), + [anon_sym_u_SQUOTE] = ACTIONS(1662), + [anon_sym_U_SQUOTE] = ACTIONS(1662), + [anon_sym_u8_SQUOTE] = ACTIONS(1662), + [anon_sym_SQUOTE] = ACTIONS(1662), + [anon_sym_L_DQUOTE] = ACTIONS(1662), + [anon_sym_u_DQUOTE] = ACTIONS(1662), + [anon_sym_U_DQUOTE] = ACTIONS(1662), + [anon_sym_u8_DQUOTE] = ACTIONS(1662), + [anon_sym_DQUOTE] = ACTIONS(1662), + [sym_true] = ACTIONS(1664), + [sym_false] = ACTIONS(1664), + [anon_sym_NULL] = ACTIONS(1664), + [anon_sym_nullptr] = ACTIONS(1664), [sym_comment] = ACTIONS(3), }, [407] = { - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym___extension__] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1316), - [anon_sym___cdecl] = ACTIONS(1316), - [anon_sym___clrcall] = ACTIONS(1316), - [anon_sym___stdcall] = ACTIONS(1316), - [anon_sym___fastcall] = ACTIONS(1316), - [anon_sym___thiscall] = ACTIONS(1316), - [anon_sym___vectorcall] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym___inline] = ACTIONS(1316), - [anon_sym___inline__] = ACTIONS(1316), - [anon_sym___forceinline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_constexpr] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym___restrict__] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [anon_sym__Noreturn] = ACTIONS(1316), - [anon_sym_noreturn] = ACTIONS(1316), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym___alignof__] = ACTIONS(1316), - [anon_sym___alignof] = ACTIONS(1316), - [anon_sym__alignof] = ACTIONS(1316), - [anon_sym_alignof] = ACTIONS(1316), - [anon_sym__Alignof] = ACTIONS(1316), - [anon_sym_offsetof] = ACTIONS(1316), - [anon_sym__Generic] = ACTIONS(1316), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym___asm__] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), + [ts_builtin_sym_end] = ACTIONS(1261), + [sym_identifier] = ACTIONS(1259), + [aux_sym_preproc_include_token1] = ACTIONS(1259), + [aux_sym_preproc_def_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), + [sym_preproc_directive] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym___extension__] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), + [anon_sym___declspec] = ACTIONS(1259), + [anon_sym___cdecl] = ACTIONS(1259), + [anon_sym___clrcall] = ACTIONS(1259), + [anon_sym___stdcall] = ACTIONS(1259), + [anon_sym___fastcall] = ACTIONS(1259), + [anon_sym___thiscall] = ACTIONS(1259), + [anon_sym___vectorcall] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_inline] = ACTIONS(1259), + [anon_sym___inline] = ACTIONS(1259), + [anon_sym___inline__] = ACTIONS(1259), + [anon_sym___forceinline] = ACTIONS(1259), + [anon_sym_thread_local] = ACTIONS(1259), + [anon_sym___thread] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_constexpr] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym___restrict__] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [anon_sym__Noreturn] = ACTIONS(1259), + [anon_sym_noreturn] = ACTIONS(1259), + [anon_sym_alignas] = ACTIONS(1259), + [anon_sym__Alignas] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [anon_sym_case] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_goto] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_sizeof] = ACTIONS(1259), + [anon_sym___alignof__] = ACTIONS(1259), + [anon_sym___alignof] = ACTIONS(1259), + [anon_sym__alignof] = ACTIONS(1259), + [anon_sym_alignof] = ACTIONS(1259), + [anon_sym__Alignof] = ACTIONS(1259), + [anon_sym_offsetof] = ACTIONS(1259), + [anon_sym__Generic] = ACTIONS(1259), + [anon_sym_asm] = ACTIONS(1259), + [anon_sym___asm__] = ACTIONS(1259), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_L_SQUOTE] = ACTIONS(1261), + [anon_sym_u_SQUOTE] = ACTIONS(1261), + [anon_sym_U_SQUOTE] = ACTIONS(1261), + [anon_sym_u8_SQUOTE] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_L_DQUOTE] = ACTIONS(1261), + [anon_sym_u_DQUOTE] = ACTIONS(1261), + [anon_sym_U_DQUOTE] = ACTIONS(1261), + [anon_sym_u8_DQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_true] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [anon_sym_NULL] = ACTIONS(1259), + [anon_sym_nullptr] = ACTIONS(1259), [sym_comment] = ACTIONS(3), }, [408] = { - [ts_builtin_sym_end] = ACTIONS(1346), - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym___extension__] = ACTIONS(1344), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym___inline] = ACTIONS(1344), - [anon_sym___inline__] = ACTIONS(1344), - [anon_sym___forceinline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym___thread] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym___alignof__] = ACTIONS(1344), - [anon_sym___alignof] = ACTIONS(1344), - [anon_sym__alignof] = ACTIONS(1344), - [anon_sym_alignof] = ACTIONS(1344), - [anon_sym__Alignof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1335), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), + [sym_preproc_directive] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym___extension__] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym___attribute__] = ACTIONS(1335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), + [anon_sym___declspec] = ACTIONS(1335), + [anon_sym___cdecl] = ACTIONS(1335), + [anon_sym___clrcall] = ACTIONS(1335), + [anon_sym___stdcall] = ACTIONS(1335), + [anon_sym___fastcall] = ACTIONS(1335), + [anon_sym___thiscall] = ACTIONS(1335), + [anon_sym___vectorcall] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_signed] = ACTIONS(1335), + [anon_sym_unsigned] = ACTIONS(1335), + [anon_sym_long] = ACTIONS(1335), + [anon_sym_short] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_auto] = ACTIONS(1335), + [anon_sym_register] = ACTIONS(1335), + [anon_sym_inline] = ACTIONS(1335), + [anon_sym___inline] = ACTIONS(1335), + [anon_sym___inline__] = ACTIONS(1335), + [anon_sym___forceinline] = ACTIONS(1335), + [anon_sym_thread_local] = ACTIONS(1335), + [anon_sym___thread] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_constexpr] = ACTIONS(1335), + [anon_sym_volatile] = ACTIONS(1335), + [anon_sym_restrict] = ACTIONS(1335), + [anon_sym___restrict__] = ACTIONS(1335), + [anon_sym__Atomic] = ACTIONS(1335), + [anon_sym__Noreturn] = ACTIONS(1335), + [anon_sym_noreturn] = ACTIONS(1335), + [anon_sym_alignas] = ACTIONS(1335), + [anon_sym__Alignas] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_switch] = ACTIONS(1335), + [anon_sym_case] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_goto] = ACTIONS(1335), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(1335), + [anon_sym___alignof__] = ACTIONS(1335), + [anon_sym___alignof] = ACTIONS(1335), + [anon_sym__alignof] = ACTIONS(1335), + [anon_sym_alignof] = ACTIONS(1335), + [anon_sym__Alignof] = ACTIONS(1335), + [anon_sym_offsetof] = ACTIONS(1335), + [anon_sym__Generic] = ACTIONS(1335), + [anon_sym_asm] = ACTIONS(1335), + [anon_sym___asm__] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(1337), + [anon_sym_L_SQUOTE] = ACTIONS(1337), + [anon_sym_u_SQUOTE] = ACTIONS(1337), + [anon_sym_U_SQUOTE] = ACTIONS(1337), + [anon_sym_u8_SQUOTE] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_L_DQUOTE] = ACTIONS(1337), + [anon_sym_u_DQUOTE] = ACTIONS(1337), + [anon_sym_U_DQUOTE] = ACTIONS(1337), + [anon_sym_u8_DQUOTE] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym_true] = ACTIONS(1335), + [sym_false] = ACTIONS(1335), + [anon_sym_NULL] = ACTIONS(1335), + [anon_sym_nullptr] = ACTIONS(1335), [sym_comment] = ACTIONS(3), }, [409] = { - [ts_builtin_sym_end] = ACTIONS(1262), - [sym_identifier] = ACTIONS(1260), - [aux_sym_preproc_include_token1] = ACTIONS(1260), - [aux_sym_preproc_def_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), - [sym_preproc_directive] = ACTIONS(1260), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym___extension__] = ACTIONS(1260), - [anon_sym_typedef] = ACTIONS(1260), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym___attribute__] = ACTIONS(1260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), - [anon_sym___declspec] = ACTIONS(1260), - [anon_sym___cdecl] = ACTIONS(1260), - [anon_sym___clrcall] = ACTIONS(1260), - [anon_sym___stdcall] = ACTIONS(1260), - [anon_sym___fastcall] = ACTIONS(1260), - [anon_sym___thiscall] = ACTIONS(1260), - [anon_sym___vectorcall] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_auto] = ACTIONS(1260), - [anon_sym_register] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), - [anon_sym___inline] = ACTIONS(1260), - [anon_sym___inline__] = ACTIONS(1260), - [anon_sym___forceinline] = ACTIONS(1260), - [anon_sym_thread_local] = ACTIONS(1260), - [anon_sym___thread] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_constexpr] = ACTIONS(1260), - [anon_sym_volatile] = ACTIONS(1260), - [anon_sym_restrict] = ACTIONS(1260), - [anon_sym___restrict__] = ACTIONS(1260), - [anon_sym__Atomic] = ACTIONS(1260), - [anon_sym__Noreturn] = ACTIONS(1260), - [anon_sym_noreturn] = ACTIONS(1260), - [sym_primitive_type] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [anon_sym_case] = ACTIONS(1260), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_sizeof] = ACTIONS(1260), - [anon_sym___alignof__] = ACTIONS(1260), - [anon_sym___alignof] = ACTIONS(1260), - [anon_sym__alignof] = ACTIONS(1260), - [anon_sym_alignof] = ACTIONS(1260), - [anon_sym__Alignof] = ACTIONS(1260), - [anon_sym_offsetof] = ACTIONS(1260), - [anon_sym__Generic] = ACTIONS(1260), - [anon_sym_asm] = ACTIONS(1260), - [anon_sym___asm__] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_L_SQUOTE] = ACTIONS(1262), - [anon_sym_u_SQUOTE] = ACTIONS(1262), - [anon_sym_U_SQUOTE] = ACTIONS(1262), - [anon_sym_u8_SQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_L_DQUOTE] = ACTIONS(1262), - [anon_sym_u_DQUOTE] = ACTIONS(1262), - [anon_sym_U_DQUOTE] = ACTIONS(1262), - [anon_sym_u8_DQUOTE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym_true] = ACTIONS(1260), - [sym_false] = ACTIONS(1260), - [anon_sym_NULL] = ACTIONS(1260), - [anon_sym_nullptr] = ACTIONS(1260), + [ts_builtin_sym_end] = ACTIONS(1345), + [sym_identifier] = ACTIONS(1343), + [aux_sym_preproc_include_token1] = ACTIONS(1343), + [aux_sym_preproc_def_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), + [sym_preproc_directive] = ACTIONS(1343), + [anon_sym_LPAREN2] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym___extension__] = ACTIONS(1343), + [anon_sym_typedef] = ACTIONS(1343), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym___attribute__] = ACTIONS(1343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), + [anon_sym___declspec] = ACTIONS(1343), + [anon_sym___cdecl] = ACTIONS(1343), + [anon_sym___clrcall] = ACTIONS(1343), + [anon_sym___stdcall] = ACTIONS(1343), + [anon_sym___fastcall] = ACTIONS(1343), + [anon_sym___thiscall] = ACTIONS(1343), + [anon_sym___vectorcall] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_signed] = ACTIONS(1343), + [anon_sym_unsigned] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_auto] = ACTIONS(1343), + [anon_sym_register] = ACTIONS(1343), + [anon_sym_inline] = ACTIONS(1343), + [anon_sym___inline] = ACTIONS(1343), + [anon_sym___inline__] = ACTIONS(1343), + [anon_sym___forceinline] = ACTIONS(1343), + [anon_sym_thread_local] = ACTIONS(1343), + [anon_sym___thread] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_constexpr] = ACTIONS(1343), + [anon_sym_volatile] = ACTIONS(1343), + [anon_sym_restrict] = ACTIONS(1343), + [anon_sym___restrict__] = ACTIONS(1343), + [anon_sym__Atomic] = ACTIONS(1343), + [anon_sym__Noreturn] = ACTIONS(1343), + [anon_sym_noreturn] = ACTIONS(1343), + [anon_sym_alignas] = ACTIONS(1343), + [anon_sym__Alignas] = ACTIONS(1343), + [sym_primitive_type] = ACTIONS(1343), + [anon_sym_enum] = ACTIONS(1343), + [anon_sym_struct] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_case] = ACTIONS(1343), + [anon_sym_default] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_goto] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_sizeof] = ACTIONS(1343), + [anon_sym___alignof__] = ACTIONS(1343), + [anon_sym___alignof] = ACTIONS(1343), + [anon_sym__alignof] = ACTIONS(1343), + [anon_sym_alignof] = ACTIONS(1343), + [anon_sym__Alignof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1343), + [anon_sym__Generic] = ACTIONS(1343), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym___asm__] = ACTIONS(1343), + [sym_number_literal] = ACTIONS(1345), + [anon_sym_L_SQUOTE] = ACTIONS(1345), + [anon_sym_u_SQUOTE] = ACTIONS(1345), + [anon_sym_U_SQUOTE] = ACTIONS(1345), + [anon_sym_u8_SQUOTE] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_L_DQUOTE] = ACTIONS(1345), + [anon_sym_u_DQUOTE] = ACTIONS(1345), + [anon_sym_U_DQUOTE] = ACTIONS(1345), + [anon_sym_u8_DQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym_true] = ACTIONS(1343), + [sym_false] = ACTIONS(1343), + [anon_sym_NULL] = ACTIONS(1343), + [anon_sym_nullptr] = ACTIONS(1343), [sym_comment] = ACTIONS(3), }, [410] = { - [ts_builtin_sym_end] = ACTIONS(1657), - [sym_identifier] = ACTIONS(1659), - [aux_sym_preproc_include_token1] = ACTIONS(1659), - [aux_sym_preproc_def_token1] = ACTIONS(1659), - [aux_sym_preproc_if_token1] = ACTIONS(1659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1659), - [sym_preproc_directive] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_STAR] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym___extension__] = ACTIONS(1659), - [anon_sym_typedef] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym___attribute__] = ACTIONS(1659), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1657), - [anon_sym___declspec] = ACTIONS(1659), - [anon_sym___cdecl] = ACTIONS(1659), - [anon_sym___clrcall] = ACTIONS(1659), - [anon_sym___stdcall] = ACTIONS(1659), - [anon_sym___fastcall] = ACTIONS(1659), - [anon_sym___thiscall] = ACTIONS(1659), - [anon_sym___vectorcall] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_signed] = ACTIONS(1659), - [anon_sym_unsigned] = ACTIONS(1659), - [anon_sym_long] = ACTIONS(1659), - [anon_sym_short] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1659), - [anon_sym_auto] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_inline] = ACTIONS(1659), - [anon_sym___inline] = ACTIONS(1659), - [anon_sym___inline__] = ACTIONS(1659), - [anon_sym___forceinline] = ACTIONS(1659), - [anon_sym_thread_local] = ACTIONS(1659), - [anon_sym___thread] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [anon_sym_constexpr] = ACTIONS(1659), - [anon_sym_volatile] = ACTIONS(1659), - [anon_sym_restrict] = ACTIONS(1659), - [anon_sym___restrict__] = ACTIONS(1659), - [anon_sym__Atomic] = ACTIONS(1659), - [anon_sym__Noreturn] = ACTIONS(1659), - [anon_sym_noreturn] = ACTIONS(1659), - [sym_primitive_type] = ACTIONS(1659), - [anon_sym_enum] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1659), - [anon_sym_case] = ACTIONS(1659), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_goto] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [anon_sym___alignof__] = ACTIONS(1659), - [anon_sym___alignof] = ACTIONS(1659), - [anon_sym__alignof] = ACTIONS(1659), - [anon_sym_alignof] = ACTIONS(1659), - [anon_sym__Alignof] = ACTIONS(1659), - [anon_sym_offsetof] = ACTIONS(1659), - [anon_sym__Generic] = ACTIONS(1659), - [anon_sym_asm] = ACTIONS(1659), - [anon_sym___asm__] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1657), - [anon_sym_L_SQUOTE] = ACTIONS(1657), - [anon_sym_u_SQUOTE] = ACTIONS(1657), - [anon_sym_U_SQUOTE] = ACTIONS(1657), - [anon_sym_u8_SQUOTE] = ACTIONS(1657), - [anon_sym_SQUOTE] = ACTIONS(1657), - [anon_sym_L_DQUOTE] = ACTIONS(1657), - [anon_sym_u_DQUOTE] = ACTIONS(1657), - [anon_sym_U_DQUOTE] = ACTIONS(1657), - [anon_sym_u8_DQUOTE] = ACTIONS(1657), - [anon_sym_DQUOTE] = ACTIONS(1657), - [sym_true] = ACTIONS(1659), - [sym_false] = ACTIONS(1659), - [anon_sym_NULL] = ACTIONS(1659), - [anon_sym_nullptr] = ACTIONS(1659), + [ts_builtin_sym_end] = ACTIONS(1305), + [sym_identifier] = ACTIONS(1303), + [aux_sym_preproc_include_token1] = ACTIONS(1303), + [aux_sym_preproc_def_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), + [sym_preproc_directive] = ACTIONS(1303), + [anon_sym_LPAREN2] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_TILDE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1305), + [anon_sym___extension__] = ACTIONS(1303), + [anon_sym_typedef] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym___attribute__] = ACTIONS(1303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1305), + [anon_sym___declspec] = ACTIONS(1303), + [anon_sym___cdecl] = ACTIONS(1303), + [anon_sym___clrcall] = ACTIONS(1303), + [anon_sym___stdcall] = ACTIONS(1303), + [anon_sym___fastcall] = ACTIONS(1303), + [anon_sym___thiscall] = ACTIONS(1303), + [anon_sym___vectorcall] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_signed] = ACTIONS(1303), + [anon_sym_unsigned] = ACTIONS(1303), + [anon_sym_long] = ACTIONS(1303), + [anon_sym_short] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_auto] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_inline] = ACTIONS(1303), + [anon_sym___inline] = ACTIONS(1303), + [anon_sym___inline__] = ACTIONS(1303), + [anon_sym___forceinline] = ACTIONS(1303), + [anon_sym_thread_local] = ACTIONS(1303), + [anon_sym___thread] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_constexpr] = ACTIONS(1303), + [anon_sym_volatile] = ACTIONS(1303), + [anon_sym_restrict] = ACTIONS(1303), + [anon_sym___restrict__] = ACTIONS(1303), + [anon_sym__Atomic] = ACTIONS(1303), + [anon_sym__Noreturn] = ACTIONS(1303), + [anon_sym_noreturn] = ACTIONS(1303), + [anon_sym_alignas] = ACTIONS(1303), + [anon_sym__Alignas] = ACTIONS(1303), + [sym_primitive_type] = ACTIONS(1303), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_switch] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_goto] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1305), + [anon_sym_PLUS_PLUS] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1303), + [anon_sym___alignof__] = ACTIONS(1303), + [anon_sym___alignof] = ACTIONS(1303), + [anon_sym__alignof] = ACTIONS(1303), + [anon_sym_alignof] = ACTIONS(1303), + [anon_sym__Alignof] = ACTIONS(1303), + [anon_sym_offsetof] = ACTIONS(1303), + [anon_sym__Generic] = ACTIONS(1303), + [anon_sym_asm] = ACTIONS(1303), + [anon_sym___asm__] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(1305), + [anon_sym_L_SQUOTE] = ACTIONS(1305), + [anon_sym_u_SQUOTE] = ACTIONS(1305), + [anon_sym_U_SQUOTE] = ACTIONS(1305), + [anon_sym_u8_SQUOTE] = ACTIONS(1305), + [anon_sym_SQUOTE] = ACTIONS(1305), + [anon_sym_L_DQUOTE] = ACTIONS(1305), + [anon_sym_u_DQUOTE] = ACTIONS(1305), + [anon_sym_U_DQUOTE] = ACTIONS(1305), + [anon_sym_u8_DQUOTE] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [anon_sym_NULL] = ACTIONS(1303), + [anon_sym_nullptr] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, [411] = { - [ts_builtin_sym_end] = ACTIONS(1266), - [sym_identifier] = ACTIONS(1264), - [aux_sym_preproc_include_token1] = ACTIONS(1264), - [aux_sym_preproc_def_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), - [sym_preproc_directive] = ACTIONS(1264), - [anon_sym_LPAREN2] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym___extension__] = ACTIONS(1264), - [anon_sym_typedef] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym___attribute__] = ACTIONS(1264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), - [anon_sym___declspec] = ACTIONS(1264), - [anon_sym___cdecl] = ACTIONS(1264), - [anon_sym___clrcall] = ACTIONS(1264), - [anon_sym___stdcall] = ACTIONS(1264), - [anon_sym___fastcall] = ACTIONS(1264), - [anon_sym___thiscall] = ACTIONS(1264), - [anon_sym___vectorcall] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_auto] = ACTIONS(1264), - [anon_sym_register] = ACTIONS(1264), - [anon_sym_inline] = ACTIONS(1264), - [anon_sym___inline] = ACTIONS(1264), - [anon_sym___inline__] = ACTIONS(1264), - [anon_sym___forceinline] = ACTIONS(1264), - [anon_sym_thread_local] = ACTIONS(1264), - [anon_sym___thread] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_constexpr] = ACTIONS(1264), - [anon_sym_volatile] = ACTIONS(1264), - [anon_sym_restrict] = ACTIONS(1264), - [anon_sym___restrict__] = ACTIONS(1264), - [anon_sym__Atomic] = ACTIONS(1264), - [anon_sym__Noreturn] = ACTIONS(1264), - [anon_sym_noreturn] = ACTIONS(1264), - [sym_primitive_type] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_switch] = ACTIONS(1264), - [anon_sym_case] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_do] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_goto] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_sizeof] = ACTIONS(1264), - [anon_sym___alignof__] = ACTIONS(1264), - [anon_sym___alignof] = ACTIONS(1264), - [anon_sym__alignof] = ACTIONS(1264), - [anon_sym_alignof] = ACTIONS(1264), - [anon_sym__Alignof] = ACTIONS(1264), - [anon_sym_offsetof] = ACTIONS(1264), - [anon_sym__Generic] = ACTIONS(1264), - [anon_sym_asm] = ACTIONS(1264), - [anon_sym___asm__] = ACTIONS(1264), - [sym_number_literal] = ACTIONS(1266), - [anon_sym_L_SQUOTE] = ACTIONS(1266), - [anon_sym_u_SQUOTE] = ACTIONS(1266), - [anon_sym_U_SQUOTE] = ACTIONS(1266), - [anon_sym_u8_SQUOTE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_L_DQUOTE] = ACTIONS(1266), - [anon_sym_u_DQUOTE] = ACTIONS(1266), - [anon_sym_U_DQUOTE] = ACTIONS(1266), - [anon_sym_u8_DQUOTE] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_true] = ACTIONS(1264), - [sym_false] = ACTIONS(1264), - [anon_sym_NULL] = ACTIONS(1264), - [anon_sym_nullptr] = ACTIONS(1264), + [ts_builtin_sym_end] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1355), + [aux_sym_preproc_include_token1] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1355), + [aux_sym_preproc_if_token1] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1355), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1355), + [sym_preproc_directive] = ACTIONS(1355), + [anon_sym_LPAREN2] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1357), + [anon_sym_TILDE] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym___extension__] = ACTIONS(1355), + [anon_sym_typedef] = ACTIONS(1355), + [anon_sym_extern] = ACTIONS(1355), + [anon_sym___attribute__] = ACTIONS(1355), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1357), + [anon_sym___declspec] = ACTIONS(1355), + [anon_sym___cdecl] = ACTIONS(1355), + [anon_sym___clrcall] = ACTIONS(1355), + [anon_sym___stdcall] = ACTIONS(1355), + [anon_sym___fastcall] = ACTIONS(1355), + [anon_sym___thiscall] = ACTIONS(1355), + [anon_sym___vectorcall] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_signed] = ACTIONS(1355), + [anon_sym_unsigned] = ACTIONS(1355), + [anon_sym_long] = ACTIONS(1355), + [anon_sym_short] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_auto] = ACTIONS(1355), + [anon_sym_register] = ACTIONS(1355), + [anon_sym_inline] = ACTIONS(1355), + [anon_sym___inline] = ACTIONS(1355), + [anon_sym___inline__] = ACTIONS(1355), + [anon_sym___forceinline] = ACTIONS(1355), + [anon_sym_thread_local] = ACTIONS(1355), + [anon_sym___thread] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_constexpr] = ACTIONS(1355), + [anon_sym_volatile] = ACTIONS(1355), + [anon_sym_restrict] = ACTIONS(1355), + [anon_sym___restrict__] = ACTIONS(1355), + [anon_sym__Atomic] = ACTIONS(1355), + [anon_sym__Noreturn] = ACTIONS(1355), + [anon_sym_noreturn] = ACTIONS(1355), + [anon_sym_alignas] = ACTIONS(1355), + [anon_sym__Alignas] = ACTIONS(1355), + [sym_primitive_type] = ACTIONS(1355), + [anon_sym_enum] = ACTIONS(1355), + [anon_sym_struct] = ACTIONS(1355), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_switch] = ACTIONS(1355), + [anon_sym_case] = ACTIONS(1355), + [anon_sym_default] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_do] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_goto] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1355), + [anon_sym___alignof__] = ACTIONS(1355), + [anon_sym___alignof] = ACTIONS(1355), + [anon_sym__alignof] = ACTIONS(1355), + [anon_sym_alignof] = ACTIONS(1355), + [anon_sym__Alignof] = ACTIONS(1355), + [anon_sym_offsetof] = ACTIONS(1355), + [anon_sym__Generic] = ACTIONS(1355), + [anon_sym_asm] = ACTIONS(1355), + [anon_sym___asm__] = ACTIONS(1355), + [sym_number_literal] = ACTIONS(1357), + [anon_sym_L_SQUOTE] = ACTIONS(1357), + [anon_sym_u_SQUOTE] = ACTIONS(1357), + [anon_sym_U_SQUOTE] = ACTIONS(1357), + [anon_sym_u8_SQUOTE] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1357), + [anon_sym_L_DQUOTE] = ACTIONS(1357), + [anon_sym_u_DQUOTE] = ACTIONS(1357), + [anon_sym_U_DQUOTE] = ACTIONS(1357), + [anon_sym_u8_DQUOTE] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [sym_true] = ACTIONS(1355), + [sym_false] = ACTIONS(1355), + [anon_sym_NULL] = ACTIONS(1355), + [anon_sym_nullptr] = ACTIONS(1355), [sym_comment] = ACTIONS(3), }, [412] = { - [ts_builtin_sym_end] = ACTIONS(1254), - [sym_identifier] = ACTIONS(1252), - [aux_sym_preproc_include_token1] = ACTIONS(1252), - [aux_sym_preproc_def_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), - [sym_preproc_directive] = ACTIONS(1252), - [anon_sym_LPAREN2] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1252), - [anon_sym_typedef] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym___attribute__] = ACTIONS(1252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), - [anon_sym___declspec] = ACTIONS(1252), - [anon_sym___cdecl] = ACTIONS(1252), - [anon_sym___clrcall] = ACTIONS(1252), - [anon_sym___stdcall] = ACTIONS(1252), - [anon_sym___fastcall] = ACTIONS(1252), - [anon_sym___thiscall] = ACTIONS(1252), - [anon_sym___vectorcall] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = ACTIONS(1252), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_auto] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_inline] = ACTIONS(1252), - [anon_sym___inline] = ACTIONS(1252), - [anon_sym___inline__] = ACTIONS(1252), - [anon_sym___forceinline] = ACTIONS(1252), - [anon_sym_thread_local] = ACTIONS(1252), - [anon_sym___thread] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_constexpr] = ACTIONS(1252), - [anon_sym_volatile] = ACTIONS(1252), - [anon_sym_restrict] = ACTIONS(1252), - [anon_sym___restrict__] = ACTIONS(1252), - [anon_sym__Atomic] = ACTIONS(1252), - [anon_sym__Noreturn] = ACTIONS(1252), - [anon_sym_noreturn] = ACTIONS(1252), - [sym_primitive_type] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_switch] = ACTIONS(1252), - [anon_sym_case] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(1252), - [anon_sym___alignof__] = ACTIONS(1252), - [anon_sym___alignof] = ACTIONS(1252), - [anon_sym__alignof] = ACTIONS(1252), - [anon_sym_alignof] = ACTIONS(1252), - [anon_sym__Alignof] = ACTIONS(1252), - [anon_sym_offsetof] = ACTIONS(1252), - [anon_sym__Generic] = ACTIONS(1252), - [anon_sym_asm] = ACTIONS(1252), - [anon_sym___asm__] = ACTIONS(1252), - [sym_number_literal] = ACTIONS(1254), - [anon_sym_L_SQUOTE] = ACTIONS(1254), - [anon_sym_u_SQUOTE] = ACTIONS(1254), - [anon_sym_U_SQUOTE] = ACTIONS(1254), - [anon_sym_u8_SQUOTE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_L_DQUOTE] = ACTIONS(1254), - [anon_sym_u_DQUOTE] = ACTIONS(1254), - [anon_sym_U_DQUOTE] = ACTIONS(1254), - [anon_sym_u8_DQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_true] = ACTIONS(1252), - [sym_false] = ACTIONS(1252), - [anon_sym_NULL] = ACTIONS(1252), - [anon_sym_nullptr] = ACTIONS(1252), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1299), + [aux_sym_preproc_include_token1] = ACTIONS(1299), + [aux_sym_preproc_def_token1] = ACTIONS(1299), + [aux_sym_preproc_if_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), + [sym_preproc_directive] = ACTIONS(1299), + [anon_sym_LPAREN2] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym___extension__] = ACTIONS(1299), + [anon_sym_typedef] = ACTIONS(1299), + [anon_sym_extern] = ACTIONS(1299), + [anon_sym___attribute__] = ACTIONS(1299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), + [anon_sym___declspec] = ACTIONS(1299), + [anon_sym___cdecl] = ACTIONS(1299), + [anon_sym___clrcall] = ACTIONS(1299), + [anon_sym___stdcall] = ACTIONS(1299), + [anon_sym___fastcall] = ACTIONS(1299), + [anon_sym___thiscall] = ACTIONS(1299), + [anon_sym___vectorcall] = ACTIONS(1299), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_signed] = ACTIONS(1299), + [anon_sym_unsigned] = ACTIONS(1299), + [anon_sym_long] = ACTIONS(1299), + [anon_sym_short] = ACTIONS(1299), + [anon_sym_static] = ACTIONS(1299), + [anon_sym_auto] = ACTIONS(1299), + [anon_sym_register] = ACTIONS(1299), + [anon_sym_inline] = ACTIONS(1299), + [anon_sym___inline] = ACTIONS(1299), + [anon_sym___inline__] = ACTIONS(1299), + [anon_sym___forceinline] = ACTIONS(1299), + [anon_sym_thread_local] = ACTIONS(1299), + [anon_sym___thread] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_constexpr] = ACTIONS(1299), + [anon_sym_volatile] = ACTIONS(1299), + [anon_sym_restrict] = ACTIONS(1299), + [anon_sym___restrict__] = ACTIONS(1299), + [anon_sym__Atomic] = ACTIONS(1299), + [anon_sym__Noreturn] = ACTIONS(1299), + [anon_sym_noreturn] = ACTIONS(1299), + [anon_sym_alignas] = ACTIONS(1299), + [anon_sym__Alignas] = ACTIONS(1299), + [sym_primitive_type] = ACTIONS(1299), + [anon_sym_enum] = ACTIONS(1299), + [anon_sym_struct] = ACTIONS(1299), + [anon_sym_union] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_switch] = ACTIONS(1299), + [anon_sym_case] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1299), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_do] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1299), + [anon_sym_break] = ACTIONS(1299), + [anon_sym_continue] = ACTIONS(1299), + [anon_sym_goto] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1299), + [anon_sym___alignof__] = ACTIONS(1299), + [anon_sym___alignof] = ACTIONS(1299), + [anon_sym__alignof] = ACTIONS(1299), + [anon_sym_alignof] = ACTIONS(1299), + [anon_sym__Alignof] = ACTIONS(1299), + [anon_sym_offsetof] = ACTIONS(1299), + [anon_sym__Generic] = ACTIONS(1299), + [anon_sym_asm] = ACTIONS(1299), + [anon_sym___asm__] = ACTIONS(1299), + [sym_number_literal] = ACTIONS(1301), + [anon_sym_L_SQUOTE] = ACTIONS(1301), + [anon_sym_u_SQUOTE] = ACTIONS(1301), + [anon_sym_U_SQUOTE] = ACTIONS(1301), + [anon_sym_u8_SQUOTE] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1301), + [anon_sym_L_DQUOTE] = ACTIONS(1301), + [anon_sym_u_DQUOTE] = ACTIONS(1301), + [anon_sym_U_DQUOTE] = ACTIONS(1301), + [anon_sym_u8_DQUOTE] = ACTIONS(1301), + [anon_sym_DQUOTE] = ACTIONS(1301), + [sym_true] = ACTIONS(1299), + [sym_false] = ACTIONS(1299), + [anon_sym_NULL] = ACTIONS(1299), + [anon_sym_nullptr] = ACTIONS(1299), [sym_comment] = ACTIONS(3), }, [413] = { - [ts_builtin_sym_end] = ACTIONS(1278), - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym___extension__] = ACTIONS(1276), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym___inline] = ACTIONS(1276), - [anon_sym___inline__] = ACTIONS(1276), - [anon_sym___forceinline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym___thread] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym___alignof__] = ACTIONS(1276), - [anon_sym___alignof] = ACTIONS(1276), - [anon_sym__alignof] = ACTIONS(1276), - [anon_sym_alignof] = ACTIONS(1276), - [anon_sym__Alignof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), + [ts_builtin_sym_end] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1271), + [aux_sym_preproc_include_token1] = ACTIONS(1271), + [aux_sym_preproc_def_token1] = ACTIONS(1271), + [aux_sym_preproc_if_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1271), + [sym_preproc_directive] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym___extension__] = ACTIONS(1271), + [anon_sym_typedef] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym___attribute__] = ACTIONS(1271), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1273), + [anon_sym___declspec] = ACTIONS(1271), + [anon_sym___cdecl] = ACTIONS(1271), + [anon_sym___clrcall] = ACTIONS(1271), + [anon_sym___stdcall] = ACTIONS(1271), + [anon_sym___fastcall] = ACTIONS(1271), + [anon_sym___thiscall] = ACTIONS(1271), + [anon_sym___vectorcall] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1271), + [anon_sym_unsigned] = ACTIONS(1271), + [anon_sym_long] = ACTIONS(1271), + [anon_sym_short] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_auto] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_inline] = ACTIONS(1271), + [anon_sym___inline] = ACTIONS(1271), + [anon_sym___inline__] = ACTIONS(1271), + [anon_sym___forceinline] = ACTIONS(1271), + [anon_sym_thread_local] = ACTIONS(1271), + [anon_sym___thread] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_constexpr] = ACTIONS(1271), + [anon_sym_volatile] = ACTIONS(1271), + [anon_sym_restrict] = ACTIONS(1271), + [anon_sym___restrict__] = ACTIONS(1271), + [anon_sym__Atomic] = ACTIONS(1271), + [anon_sym__Noreturn] = ACTIONS(1271), + [anon_sym_noreturn] = ACTIONS(1271), + [anon_sym_alignas] = ACTIONS(1271), + [anon_sym__Alignas] = ACTIONS(1271), + [sym_primitive_type] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_goto] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1271), + [anon_sym___alignof__] = ACTIONS(1271), + [anon_sym___alignof] = ACTIONS(1271), + [anon_sym__alignof] = ACTIONS(1271), + [anon_sym_alignof] = ACTIONS(1271), + [anon_sym__Alignof] = ACTIONS(1271), + [anon_sym_offsetof] = ACTIONS(1271), + [anon_sym__Generic] = ACTIONS(1271), + [anon_sym_asm] = ACTIONS(1271), + [anon_sym___asm__] = ACTIONS(1271), + [sym_number_literal] = ACTIONS(1273), + [anon_sym_L_SQUOTE] = ACTIONS(1273), + [anon_sym_u_SQUOTE] = ACTIONS(1273), + [anon_sym_U_SQUOTE] = ACTIONS(1273), + [anon_sym_u8_SQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1273), + [anon_sym_L_DQUOTE] = ACTIONS(1273), + [anon_sym_u_DQUOTE] = ACTIONS(1273), + [anon_sym_U_DQUOTE] = ACTIONS(1273), + [anon_sym_u8_DQUOTE] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_true] = ACTIONS(1271), + [sym_false] = ACTIONS(1271), + [anon_sym_NULL] = ACTIONS(1271), + [anon_sym_nullptr] = ACTIONS(1271), [sym_comment] = ACTIONS(3), }, [414] = { - [ts_builtin_sym_end] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym___extension__] = ACTIONS(1280), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym___inline] = ACTIONS(1280), - [anon_sym___inline__] = ACTIONS(1280), - [anon_sym___forceinline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym___thread] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym___alignof__] = ACTIONS(1280), - [anon_sym___alignof] = ACTIONS(1280), - [anon_sym__alignof] = ACTIONS(1280), - [anon_sym_alignof] = ACTIONS(1280), - [anon_sym__Alignof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), + [ts_builtin_sym_end] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [anon_sym_alignas] = ACTIONS(1315), + [anon_sym__Alignas] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, [415] = { - [ts_builtin_sym_end] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym___extension__] = ACTIONS(1268), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym___inline] = ACTIONS(1268), - [anon_sym___inline__] = ACTIONS(1268), - [anon_sym___forceinline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym___thread] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym___alignof__] = ACTIONS(1268), - [anon_sym___alignof] = ACTIONS(1268), - [anon_sym__alignof] = ACTIONS(1268), - [anon_sym_alignof] = ACTIONS(1268), - [anon_sym__Alignof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1331), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym___extension__] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym___attribute__] = ACTIONS(1331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym___inline] = ACTIONS(1331), + [anon_sym___inline__] = ACTIONS(1331), + [anon_sym___forceinline] = ACTIONS(1331), + [anon_sym_thread_local] = ACTIONS(1331), + [anon_sym___thread] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [anon_sym_alignas] = ACTIONS(1331), + [anon_sym__Alignas] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1331), + [anon_sym___alignof__] = ACTIONS(1331), + [anon_sym___alignof] = ACTIONS(1331), + [anon_sym__alignof] = ACTIONS(1331), + [anon_sym_alignof] = ACTIONS(1331), + [anon_sym__Alignof] = ACTIONS(1331), + [anon_sym_offsetof] = ACTIONS(1331), + [anon_sym__Generic] = ACTIONS(1331), + [anon_sym_asm] = ACTIONS(1331), + [anon_sym___asm__] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_L_SQUOTE] = ACTIONS(1333), + [anon_sym_u_SQUOTE] = ACTIONS(1333), + [anon_sym_U_SQUOTE] = ACTIONS(1333), + [anon_sym_u8_SQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_L_DQUOTE] = ACTIONS(1333), + [anon_sym_u_DQUOTE] = ACTIONS(1333), + [anon_sym_U_DQUOTE] = ACTIONS(1333), + [anon_sym_u8_DQUOTE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [anon_sym_NULL] = ACTIONS(1331), + [anon_sym_nullptr] = ACTIONS(1331), [sym_comment] = ACTIONS(3), }, [416] = { - [ts_builtin_sym_end] = ACTIONS(1661), - [sym_identifier] = ACTIONS(1663), - [aux_sym_preproc_include_token1] = ACTIONS(1663), - [aux_sym_preproc_def_token1] = ACTIONS(1663), - [aux_sym_preproc_if_token1] = ACTIONS(1663), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1663), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1663), - [sym_preproc_directive] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_TILDE] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_AMP] = ACTIONS(1661), - [anon_sym___extension__] = ACTIONS(1663), - [anon_sym_typedef] = ACTIONS(1663), - [anon_sym_extern] = ACTIONS(1663), - [anon_sym___attribute__] = ACTIONS(1663), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1661), - [anon_sym___declspec] = ACTIONS(1663), - [anon_sym___cdecl] = ACTIONS(1663), - [anon_sym___clrcall] = ACTIONS(1663), - [anon_sym___stdcall] = ACTIONS(1663), - [anon_sym___fastcall] = ACTIONS(1663), - [anon_sym___thiscall] = ACTIONS(1663), - [anon_sym___vectorcall] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_signed] = ACTIONS(1663), - [anon_sym_unsigned] = ACTIONS(1663), - [anon_sym_long] = ACTIONS(1663), - [anon_sym_short] = ACTIONS(1663), - [anon_sym_static] = ACTIONS(1663), - [anon_sym_auto] = ACTIONS(1663), - [anon_sym_register] = ACTIONS(1663), - [anon_sym_inline] = ACTIONS(1663), - [anon_sym___inline] = ACTIONS(1663), - [anon_sym___inline__] = ACTIONS(1663), - [anon_sym___forceinline] = ACTIONS(1663), - [anon_sym_thread_local] = ACTIONS(1663), - [anon_sym___thread] = ACTIONS(1663), - [anon_sym_const] = ACTIONS(1663), - [anon_sym_constexpr] = ACTIONS(1663), - [anon_sym_volatile] = ACTIONS(1663), - [anon_sym_restrict] = ACTIONS(1663), - [anon_sym___restrict__] = ACTIONS(1663), - [anon_sym__Atomic] = ACTIONS(1663), - [anon_sym__Noreturn] = ACTIONS(1663), - [anon_sym_noreturn] = ACTIONS(1663), - [sym_primitive_type] = ACTIONS(1663), - [anon_sym_enum] = ACTIONS(1663), - [anon_sym_struct] = ACTIONS(1663), - [anon_sym_union] = ACTIONS(1663), - [anon_sym_if] = ACTIONS(1663), - [anon_sym_switch] = ACTIONS(1663), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1663), - [anon_sym_while] = ACTIONS(1663), - [anon_sym_do] = ACTIONS(1663), - [anon_sym_for] = ACTIONS(1663), - [anon_sym_return] = ACTIONS(1663), - [anon_sym_break] = ACTIONS(1663), - [anon_sym_continue] = ACTIONS(1663), - [anon_sym_goto] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_sizeof] = ACTIONS(1663), - [anon_sym___alignof__] = ACTIONS(1663), - [anon_sym___alignof] = ACTIONS(1663), - [anon_sym__alignof] = ACTIONS(1663), - [anon_sym_alignof] = ACTIONS(1663), - [anon_sym__Alignof] = ACTIONS(1663), - [anon_sym_offsetof] = ACTIONS(1663), - [anon_sym__Generic] = ACTIONS(1663), - [anon_sym_asm] = ACTIONS(1663), - [anon_sym___asm__] = ACTIONS(1663), - [sym_number_literal] = ACTIONS(1661), - [anon_sym_L_SQUOTE] = ACTIONS(1661), - [anon_sym_u_SQUOTE] = ACTIONS(1661), - [anon_sym_U_SQUOTE] = ACTIONS(1661), - [anon_sym_u8_SQUOTE] = ACTIONS(1661), - [anon_sym_SQUOTE] = ACTIONS(1661), - [anon_sym_L_DQUOTE] = ACTIONS(1661), - [anon_sym_u_DQUOTE] = ACTIONS(1661), - [anon_sym_U_DQUOTE] = ACTIONS(1661), - [anon_sym_u8_DQUOTE] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym_true] = ACTIONS(1663), - [sym_false] = ACTIONS(1663), - [anon_sym_NULL] = ACTIONS(1663), - [anon_sym_nullptr] = ACTIONS(1663), + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1347), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), + [sym_preproc_directive] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym___extension__] = ACTIONS(1347), + [anon_sym_typedef] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym___attribute__] = ACTIONS(1347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), + [anon_sym___declspec] = ACTIONS(1347), + [anon_sym___cdecl] = ACTIONS(1347), + [anon_sym___clrcall] = ACTIONS(1347), + [anon_sym___stdcall] = ACTIONS(1347), + [anon_sym___fastcall] = ACTIONS(1347), + [anon_sym___thiscall] = ACTIONS(1347), + [anon_sym___vectorcall] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_signed] = ACTIONS(1347), + [anon_sym_unsigned] = ACTIONS(1347), + [anon_sym_long] = ACTIONS(1347), + [anon_sym_short] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1347), + [anon_sym_auto] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_inline] = ACTIONS(1347), + [anon_sym___inline] = ACTIONS(1347), + [anon_sym___inline__] = ACTIONS(1347), + [anon_sym___forceinline] = ACTIONS(1347), + [anon_sym_thread_local] = ACTIONS(1347), + [anon_sym___thread] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_constexpr] = ACTIONS(1347), + [anon_sym_volatile] = ACTIONS(1347), + [anon_sym_restrict] = ACTIONS(1347), + [anon_sym___restrict__] = ACTIONS(1347), + [anon_sym__Atomic] = ACTIONS(1347), + [anon_sym__Noreturn] = ACTIONS(1347), + [anon_sym_noreturn] = ACTIONS(1347), + [anon_sym_alignas] = ACTIONS(1347), + [anon_sym__Alignas] = ACTIONS(1347), + [sym_primitive_type] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [anon_sym_case] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_goto] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_sizeof] = ACTIONS(1347), + [anon_sym___alignof__] = ACTIONS(1347), + [anon_sym___alignof] = ACTIONS(1347), + [anon_sym__alignof] = ACTIONS(1347), + [anon_sym_alignof] = ACTIONS(1347), + [anon_sym__Alignof] = ACTIONS(1347), + [anon_sym_offsetof] = ACTIONS(1347), + [anon_sym__Generic] = ACTIONS(1347), + [anon_sym_asm] = ACTIONS(1347), + [anon_sym___asm__] = ACTIONS(1347), + [sym_number_literal] = ACTIONS(1349), + [anon_sym_L_SQUOTE] = ACTIONS(1349), + [anon_sym_u_SQUOTE] = ACTIONS(1349), + [anon_sym_U_SQUOTE] = ACTIONS(1349), + [anon_sym_u8_SQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [anon_sym_L_DQUOTE] = ACTIONS(1349), + [anon_sym_u_DQUOTE] = ACTIONS(1349), + [anon_sym_U_DQUOTE] = ACTIONS(1349), + [anon_sym_u8_DQUOTE] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym_true] = ACTIONS(1347), + [sym_false] = ACTIONS(1347), + [anon_sym_NULL] = ACTIONS(1347), + [anon_sym_nullptr] = ACTIONS(1347), [sym_comment] = ACTIONS(3), }, [417] = { - [ts_builtin_sym_end] = ACTIONS(1290), - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym___extension__] = ACTIONS(1288), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym___inline] = ACTIONS(1288), - [anon_sym___inline__] = ACTIONS(1288), - [anon_sym___forceinline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym___thread] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym___alignof__] = ACTIONS(1288), - [anon_sym___alignof] = ACTIONS(1288), - [anon_sym__alignof] = ACTIONS(1288), - [anon_sym_alignof] = ACTIONS(1288), - [anon_sym__Alignof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), + [ts_builtin_sym_end] = ACTIONS(1293), + [sym_identifier] = ACTIONS(1291), + [aux_sym_preproc_include_token1] = ACTIONS(1291), + [aux_sym_preproc_def_token1] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1291), + [sym_preproc_directive] = ACTIONS(1291), + [anon_sym_LPAREN2] = ACTIONS(1293), + [anon_sym_BANG] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym___extension__] = ACTIONS(1291), + [anon_sym_typedef] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym___attribute__] = ACTIONS(1291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1293), + [anon_sym___declspec] = ACTIONS(1291), + [anon_sym___cdecl] = ACTIONS(1291), + [anon_sym___clrcall] = ACTIONS(1291), + [anon_sym___stdcall] = ACTIONS(1291), + [anon_sym___fastcall] = ACTIONS(1291), + [anon_sym___thiscall] = ACTIONS(1291), + [anon_sym___vectorcall] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_signed] = ACTIONS(1291), + [anon_sym_unsigned] = ACTIONS(1291), + [anon_sym_long] = ACTIONS(1291), + [anon_sym_short] = ACTIONS(1291), + [anon_sym_static] = ACTIONS(1291), + [anon_sym_auto] = ACTIONS(1291), + [anon_sym_register] = ACTIONS(1291), + [anon_sym_inline] = ACTIONS(1291), + [anon_sym___inline] = ACTIONS(1291), + [anon_sym___inline__] = ACTIONS(1291), + [anon_sym___forceinline] = ACTIONS(1291), + [anon_sym_thread_local] = ACTIONS(1291), + [anon_sym___thread] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_constexpr] = ACTIONS(1291), + [anon_sym_volatile] = ACTIONS(1291), + [anon_sym_restrict] = ACTIONS(1291), + [anon_sym___restrict__] = ACTIONS(1291), + [anon_sym__Atomic] = ACTIONS(1291), + [anon_sym__Noreturn] = ACTIONS(1291), + [anon_sym_noreturn] = ACTIONS(1291), + [anon_sym_alignas] = ACTIONS(1291), + [anon_sym__Alignas] = ACTIONS(1291), + [sym_primitive_type] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_switch] = ACTIONS(1291), + [anon_sym_case] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_do] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_goto] = ACTIONS(1291), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_sizeof] = ACTIONS(1291), + [anon_sym___alignof__] = ACTIONS(1291), + [anon_sym___alignof] = ACTIONS(1291), + [anon_sym__alignof] = ACTIONS(1291), + [anon_sym_alignof] = ACTIONS(1291), + [anon_sym__Alignof] = ACTIONS(1291), + [anon_sym_offsetof] = ACTIONS(1291), + [anon_sym__Generic] = ACTIONS(1291), + [anon_sym_asm] = ACTIONS(1291), + [anon_sym___asm__] = ACTIONS(1291), + [sym_number_literal] = ACTIONS(1293), + [anon_sym_L_SQUOTE] = ACTIONS(1293), + [anon_sym_u_SQUOTE] = ACTIONS(1293), + [anon_sym_U_SQUOTE] = ACTIONS(1293), + [anon_sym_u8_SQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1293), + [anon_sym_L_DQUOTE] = ACTIONS(1293), + [anon_sym_u_DQUOTE] = ACTIONS(1293), + [anon_sym_U_DQUOTE] = ACTIONS(1293), + [anon_sym_u8_DQUOTE] = ACTIONS(1293), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_true] = ACTIONS(1291), + [sym_false] = ACTIONS(1291), + [anon_sym_NULL] = ACTIONS(1291), + [anon_sym_nullptr] = ACTIONS(1291), [sym_comment] = ACTIONS(3), }, [418] = { - [ts_builtin_sym_end] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym___extension__] = ACTIONS(1272), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym___inline] = ACTIONS(1272), - [anon_sym___inline__] = ACTIONS(1272), - [anon_sym___forceinline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym___thread] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym___alignof__] = ACTIONS(1272), - [anon_sym___alignof] = ACTIONS(1272), - [anon_sym__alignof] = ACTIONS(1272), - [anon_sym_alignof] = ACTIONS(1272), - [anon_sym__Alignof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1247), + [aux_sym_preproc_include_token1] = ACTIONS(1247), + [aux_sym_preproc_def_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), + [sym_preproc_directive] = ACTIONS(1247), + [anon_sym_LPAREN2] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1249), + [anon_sym_TILDE] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1247), + [anon_sym_typedef] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1247), + [anon_sym___attribute__] = ACTIONS(1247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1249), + [anon_sym___declspec] = ACTIONS(1247), + [anon_sym___cdecl] = ACTIONS(1247), + [anon_sym___clrcall] = ACTIONS(1247), + [anon_sym___stdcall] = ACTIONS(1247), + [anon_sym___fastcall] = ACTIONS(1247), + [anon_sym___thiscall] = ACTIONS(1247), + [anon_sym___vectorcall] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_signed] = ACTIONS(1247), + [anon_sym_unsigned] = ACTIONS(1247), + [anon_sym_long] = ACTIONS(1247), + [anon_sym_short] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1247), + [anon_sym_auto] = ACTIONS(1247), + [anon_sym_register] = ACTIONS(1247), + [anon_sym_inline] = ACTIONS(1247), + [anon_sym___inline] = ACTIONS(1247), + [anon_sym___inline__] = ACTIONS(1247), + [anon_sym___forceinline] = ACTIONS(1247), + [anon_sym_thread_local] = ACTIONS(1247), + [anon_sym___thread] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_constexpr] = ACTIONS(1247), + [anon_sym_volatile] = ACTIONS(1247), + [anon_sym_restrict] = ACTIONS(1247), + [anon_sym___restrict__] = ACTIONS(1247), + [anon_sym__Atomic] = ACTIONS(1247), + [anon_sym__Noreturn] = ACTIONS(1247), + [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym_alignas] = ACTIONS(1247), + [anon_sym__Alignas] = ACTIONS(1247), + [sym_primitive_type] = ACTIONS(1247), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_struct] = ACTIONS(1247), + [anon_sym_union] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_case] = ACTIONS(1247), + [anon_sym_default] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_goto] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_sizeof] = ACTIONS(1247), + [anon_sym___alignof__] = ACTIONS(1247), + [anon_sym___alignof] = ACTIONS(1247), + [anon_sym__alignof] = ACTIONS(1247), + [anon_sym_alignof] = ACTIONS(1247), + [anon_sym__Alignof] = ACTIONS(1247), + [anon_sym_offsetof] = ACTIONS(1247), + [anon_sym__Generic] = ACTIONS(1247), + [anon_sym_asm] = ACTIONS(1247), + [anon_sym___asm__] = ACTIONS(1247), + [sym_number_literal] = ACTIONS(1249), + [anon_sym_L_SQUOTE] = ACTIONS(1249), + [anon_sym_u_SQUOTE] = ACTIONS(1249), + [anon_sym_U_SQUOTE] = ACTIONS(1249), + [anon_sym_u8_SQUOTE] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1249), + [anon_sym_L_DQUOTE] = ACTIONS(1249), + [anon_sym_u_DQUOTE] = ACTIONS(1249), + [anon_sym_U_DQUOTE] = ACTIONS(1249), + [anon_sym_u8_DQUOTE] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym_true] = ACTIONS(1247), + [sym_false] = ACTIONS(1247), + [anon_sym_NULL] = ACTIONS(1247), + [anon_sym_nullptr] = ACTIONS(1247), [sym_comment] = ACTIONS(3), }, [419] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym___extension__] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym___inline] = ACTIONS(1320), - [anon_sym___inline__] = ACTIONS(1320), - [anon_sym___forceinline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym___alignof__] = ACTIONS(1320), - [anon_sym___alignof] = ACTIONS(1320), - [anon_sym__alignof] = ACTIONS(1320), - [anon_sym_alignof] = ACTIONS(1320), - [anon_sym__Alignof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1311), + [aux_sym_preproc_include_token1] = ACTIONS(1311), + [aux_sym_preproc_def_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token1] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), + [sym_preproc_directive] = ACTIONS(1311), + [anon_sym_LPAREN2] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1313), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1313), + [anon_sym___extension__] = ACTIONS(1311), + [anon_sym_typedef] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym___attribute__] = ACTIONS(1311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), + [anon_sym___declspec] = ACTIONS(1311), + [anon_sym___cdecl] = ACTIONS(1311), + [anon_sym___clrcall] = ACTIONS(1311), + [anon_sym___stdcall] = ACTIONS(1311), + [anon_sym___fastcall] = ACTIONS(1311), + [anon_sym___thiscall] = ACTIONS(1311), + [anon_sym___vectorcall] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_signed] = ACTIONS(1311), + [anon_sym_unsigned] = ACTIONS(1311), + [anon_sym_long] = ACTIONS(1311), + [anon_sym_short] = ACTIONS(1311), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_auto] = ACTIONS(1311), + [anon_sym_register] = ACTIONS(1311), + [anon_sym_inline] = ACTIONS(1311), + [anon_sym___inline] = ACTIONS(1311), + [anon_sym___inline__] = ACTIONS(1311), + [anon_sym___forceinline] = ACTIONS(1311), + [anon_sym_thread_local] = ACTIONS(1311), + [anon_sym___thread] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_constexpr] = ACTIONS(1311), + [anon_sym_volatile] = ACTIONS(1311), + [anon_sym_restrict] = ACTIONS(1311), + [anon_sym___restrict__] = ACTIONS(1311), + [anon_sym__Atomic] = ACTIONS(1311), + [anon_sym__Noreturn] = ACTIONS(1311), + [anon_sym_noreturn] = ACTIONS(1311), + [anon_sym_alignas] = ACTIONS(1311), + [anon_sym__Alignas] = ACTIONS(1311), + [sym_primitive_type] = ACTIONS(1311), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_switch] = ACTIONS(1311), + [anon_sym_case] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_goto] = ACTIONS(1311), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_sizeof] = ACTIONS(1311), + [anon_sym___alignof__] = ACTIONS(1311), + [anon_sym___alignof] = ACTIONS(1311), + [anon_sym__alignof] = ACTIONS(1311), + [anon_sym_alignof] = ACTIONS(1311), + [anon_sym__Alignof] = ACTIONS(1311), + [anon_sym_offsetof] = ACTIONS(1311), + [anon_sym__Generic] = ACTIONS(1311), + [anon_sym_asm] = ACTIONS(1311), + [anon_sym___asm__] = ACTIONS(1311), + [sym_number_literal] = ACTIONS(1313), + [anon_sym_L_SQUOTE] = ACTIONS(1313), + [anon_sym_u_SQUOTE] = ACTIONS(1313), + [anon_sym_U_SQUOTE] = ACTIONS(1313), + [anon_sym_u8_SQUOTE] = ACTIONS(1313), + [anon_sym_SQUOTE] = ACTIONS(1313), + [anon_sym_L_DQUOTE] = ACTIONS(1313), + [anon_sym_u_DQUOTE] = ACTIONS(1313), + [anon_sym_U_DQUOTE] = ACTIONS(1313), + [anon_sym_u8_DQUOTE] = ACTIONS(1313), + [anon_sym_DQUOTE] = ACTIONS(1313), + [sym_true] = ACTIONS(1311), + [sym_false] = ACTIONS(1311), + [anon_sym_NULL] = ACTIONS(1311), + [anon_sym_nullptr] = ACTIONS(1311), [sym_comment] = ACTIONS(3), }, [420] = { - [ts_builtin_sym_end] = ACTIONS(1258), - [sym_identifier] = ACTIONS(1256), - [aux_sym_preproc_include_token1] = ACTIONS(1256), - [aux_sym_preproc_def_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), - [sym_preproc_directive] = ACTIONS(1256), - [anon_sym_LPAREN2] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym___extension__] = ACTIONS(1256), - [anon_sym_typedef] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym___attribute__] = ACTIONS(1256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), - [anon_sym___declspec] = ACTIONS(1256), - [anon_sym___cdecl] = ACTIONS(1256), - [anon_sym___clrcall] = ACTIONS(1256), - [anon_sym___stdcall] = ACTIONS(1256), - [anon_sym___fastcall] = ACTIONS(1256), - [anon_sym___thiscall] = ACTIONS(1256), - [anon_sym___vectorcall] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = ACTIONS(1256), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_auto] = ACTIONS(1256), - [anon_sym_register] = ACTIONS(1256), - [anon_sym_inline] = ACTIONS(1256), - [anon_sym___inline] = ACTIONS(1256), - [anon_sym___inline__] = ACTIONS(1256), - [anon_sym___forceinline] = ACTIONS(1256), - [anon_sym_thread_local] = ACTIONS(1256), - [anon_sym___thread] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_constexpr] = ACTIONS(1256), - [anon_sym_volatile] = ACTIONS(1256), - [anon_sym_restrict] = ACTIONS(1256), - [anon_sym___restrict__] = ACTIONS(1256), - [anon_sym__Atomic] = ACTIONS(1256), - [anon_sym__Noreturn] = ACTIONS(1256), - [anon_sym_noreturn] = ACTIONS(1256), - [sym_primitive_type] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_goto] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_sizeof] = ACTIONS(1256), - [anon_sym___alignof__] = ACTIONS(1256), - [anon_sym___alignof] = ACTIONS(1256), - [anon_sym__alignof] = ACTIONS(1256), - [anon_sym_alignof] = ACTIONS(1256), - [anon_sym__Alignof] = ACTIONS(1256), - [anon_sym_offsetof] = ACTIONS(1256), - [anon_sym__Generic] = ACTIONS(1256), - [anon_sym_asm] = ACTIONS(1256), - [anon_sym___asm__] = ACTIONS(1256), - [sym_number_literal] = ACTIONS(1258), - [anon_sym_L_SQUOTE] = ACTIONS(1258), - [anon_sym_u_SQUOTE] = ACTIONS(1258), - [anon_sym_U_SQUOTE] = ACTIONS(1258), - [anon_sym_u8_SQUOTE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_L_DQUOTE] = ACTIONS(1258), - [anon_sym_u_DQUOTE] = ACTIONS(1258), - [anon_sym_U_DQUOTE] = ACTIONS(1258), - [anon_sym_u8_DQUOTE] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_NULL] = ACTIONS(1256), - [anon_sym_nullptr] = ACTIONS(1256), + [ts_builtin_sym_end] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_include_token1] = ACTIONS(1267), + [aux_sym_preproc_def_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), + [sym_preproc_directive] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_TILDE] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym___extension__] = ACTIONS(1267), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1269), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [anon_sym___inline] = ACTIONS(1267), + [anon_sym___inline__] = ACTIONS(1267), + [anon_sym___forceinline] = ACTIONS(1267), + [anon_sym_thread_local] = ACTIONS(1267), + [anon_sym___thread] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_constexpr] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym___restrict__] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym__Noreturn] = ACTIONS(1267), + [anon_sym_noreturn] = ACTIONS(1267), + [anon_sym_alignas] = ACTIONS(1267), + [anon_sym__Alignas] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(1267), + [anon_sym___alignof__] = ACTIONS(1267), + [anon_sym___alignof] = ACTIONS(1267), + [anon_sym__alignof] = ACTIONS(1267), + [anon_sym_alignof] = ACTIONS(1267), + [anon_sym__Alignof] = ACTIONS(1267), + [anon_sym_offsetof] = ACTIONS(1267), + [anon_sym__Generic] = ACTIONS(1267), + [anon_sym_asm] = ACTIONS(1267), + [anon_sym___asm__] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1269), + [anon_sym_L_SQUOTE] = ACTIONS(1269), + [anon_sym_u_SQUOTE] = ACTIONS(1269), + [anon_sym_U_SQUOTE] = ACTIONS(1269), + [anon_sym_u8_SQUOTE] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1269), + [anon_sym_L_DQUOTE] = ACTIONS(1269), + [anon_sym_u_DQUOTE] = ACTIONS(1269), + [anon_sym_U_DQUOTE] = ACTIONS(1269), + [anon_sym_u8_DQUOTE] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [anon_sym_NULL] = ACTIONS(1267), + [anon_sym_nullptr] = ACTIONS(1267), [sym_comment] = ACTIONS(3), }, [421] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym___inline] = ACTIONS(1308), - [anon_sym___inline__] = ACTIONS(1308), - [anon_sym___forceinline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym___alignof__] = ACTIONS(1308), - [anon_sym___alignof] = ACTIONS(1308), - [anon_sym__alignof] = ACTIONS(1308), - [anon_sym_alignof] = ACTIONS(1308), - [anon_sym__Alignof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1255), + [aux_sym_preproc_include_token1] = ACTIONS(1255), + [aux_sym_preproc_def_token1] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), + [sym_preproc_directive] = ACTIONS(1255), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym___extension__] = ACTIONS(1255), + [anon_sym_typedef] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym___attribute__] = ACTIONS(1255), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1257), + [anon_sym___declspec] = ACTIONS(1255), + [anon_sym___cdecl] = ACTIONS(1255), + [anon_sym___clrcall] = ACTIONS(1255), + [anon_sym___stdcall] = ACTIONS(1255), + [anon_sym___fastcall] = ACTIONS(1255), + [anon_sym___thiscall] = ACTIONS(1255), + [anon_sym___vectorcall] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_signed] = ACTIONS(1255), + [anon_sym_unsigned] = ACTIONS(1255), + [anon_sym_long] = ACTIONS(1255), + [anon_sym_short] = ACTIONS(1255), + [anon_sym_static] = ACTIONS(1255), + [anon_sym_auto] = ACTIONS(1255), + [anon_sym_register] = ACTIONS(1255), + [anon_sym_inline] = ACTIONS(1255), + [anon_sym___inline] = ACTIONS(1255), + [anon_sym___inline__] = ACTIONS(1255), + [anon_sym___forceinline] = ACTIONS(1255), + [anon_sym_thread_local] = ACTIONS(1255), + [anon_sym___thread] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_constexpr] = ACTIONS(1255), + [anon_sym_volatile] = ACTIONS(1255), + [anon_sym_restrict] = ACTIONS(1255), + [anon_sym___restrict__] = ACTIONS(1255), + [anon_sym__Atomic] = ACTIONS(1255), + [anon_sym__Noreturn] = ACTIONS(1255), + [anon_sym_noreturn] = ACTIONS(1255), + [anon_sym_alignas] = ACTIONS(1255), + [anon_sym__Alignas] = ACTIONS(1255), + [sym_primitive_type] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_union] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_switch] = ACTIONS(1255), + [anon_sym_case] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_goto] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(1255), + [anon_sym___alignof__] = ACTIONS(1255), + [anon_sym___alignof] = ACTIONS(1255), + [anon_sym__alignof] = ACTIONS(1255), + [anon_sym_alignof] = ACTIONS(1255), + [anon_sym__Alignof] = ACTIONS(1255), + [anon_sym_offsetof] = ACTIONS(1255), + [anon_sym__Generic] = ACTIONS(1255), + [anon_sym_asm] = ACTIONS(1255), + [anon_sym___asm__] = ACTIONS(1255), + [sym_number_literal] = ACTIONS(1257), + [anon_sym_L_SQUOTE] = ACTIONS(1257), + [anon_sym_u_SQUOTE] = ACTIONS(1257), + [anon_sym_U_SQUOTE] = ACTIONS(1257), + [anon_sym_u8_SQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_L_DQUOTE] = ACTIONS(1257), + [anon_sym_u_DQUOTE] = ACTIONS(1257), + [anon_sym_U_DQUOTE] = ACTIONS(1257), + [anon_sym_u8_DQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym_true] = ACTIONS(1255), + [sym_false] = ACTIONS(1255), + [anon_sym_NULL] = ACTIONS(1255), + [anon_sym_nullptr] = ACTIONS(1255), [sym_comment] = ACTIONS(3), }, [422] = { - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(1296), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym___inline] = ACTIONS(1296), - [anon_sym___inline__] = ACTIONS(1296), - [anon_sym___forceinline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym___thread] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym___alignof__] = ACTIONS(1296), - [anon_sym___alignof] = ACTIONS(1296), - [anon_sym__alignof] = ACTIONS(1296), - [anon_sym_alignof] = ACTIONS(1296), - [anon_sym__Alignof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), + [ts_builtin_sym_end] = ACTIONS(1341), + [sym_identifier] = ACTIONS(1339), + [aux_sym_preproc_include_token1] = ACTIONS(1339), + [aux_sym_preproc_def_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), + [sym_preproc_directive] = ACTIONS(1339), + [anon_sym_LPAREN2] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym___extension__] = ACTIONS(1339), + [anon_sym_typedef] = ACTIONS(1339), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym___attribute__] = ACTIONS(1339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), + [anon_sym___declspec] = ACTIONS(1339), + [anon_sym___cdecl] = ACTIONS(1339), + [anon_sym___clrcall] = ACTIONS(1339), + [anon_sym___stdcall] = ACTIONS(1339), + [anon_sym___fastcall] = ACTIONS(1339), + [anon_sym___thiscall] = ACTIONS(1339), + [anon_sym___vectorcall] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_signed] = ACTIONS(1339), + [anon_sym_unsigned] = ACTIONS(1339), + [anon_sym_long] = ACTIONS(1339), + [anon_sym_short] = ACTIONS(1339), + [anon_sym_static] = ACTIONS(1339), + [anon_sym_auto] = ACTIONS(1339), + [anon_sym_register] = ACTIONS(1339), + [anon_sym_inline] = ACTIONS(1339), + [anon_sym___inline] = ACTIONS(1339), + [anon_sym___inline__] = ACTIONS(1339), + [anon_sym___forceinline] = ACTIONS(1339), + [anon_sym_thread_local] = ACTIONS(1339), + [anon_sym___thread] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_constexpr] = ACTIONS(1339), + [anon_sym_volatile] = ACTIONS(1339), + [anon_sym_restrict] = ACTIONS(1339), + [anon_sym___restrict__] = ACTIONS(1339), + [anon_sym__Atomic] = ACTIONS(1339), + [anon_sym__Noreturn] = ACTIONS(1339), + [anon_sym_noreturn] = ACTIONS(1339), + [anon_sym_alignas] = ACTIONS(1339), + [anon_sym__Alignas] = ACTIONS(1339), + [sym_primitive_type] = ACTIONS(1339), + [anon_sym_enum] = ACTIONS(1339), + [anon_sym_struct] = ACTIONS(1339), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1339), + [anon_sym_case] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_do] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_goto] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_sizeof] = ACTIONS(1339), + [anon_sym___alignof__] = ACTIONS(1339), + [anon_sym___alignof] = ACTIONS(1339), + [anon_sym__alignof] = ACTIONS(1339), + [anon_sym_alignof] = ACTIONS(1339), + [anon_sym__Alignof] = ACTIONS(1339), + [anon_sym_offsetof] = ACTIONS(1339), + [anon_sym__Generic] = ACTIONS(1339), + [anon_sym_asm] = ACTIONS(1339), + [anon_sym___asm__] = ACTIONS(1339), + [sym_number_literal] = ACTIONS(1341), + [anon_sym_L_SQUOTE] = ACTIONS(1341), + [anon_sym_u_SQUOTE] = ACTIONS(1341), + [anon_sym_U_SQUOTE] = ACTIONS(1341), + [anon_sym_u8_SQUOTE] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(1341), + [anon_sym_L_DQUOTE] = ACTIONS(1341), + [anon_sym_u_DQUOTE] = ACTIONS(1341), + [anon_sym_U_DQUOTE] = ACTIONS(1341), + [anon_sym_u8_DQUOTE] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym_true] = ACTIONS(1339), + [sym_false] = ACTIONS(1339), + [anon_sym_NULL] = ACTIONS(1339), + [anon_sym_nullptr] = ACTIONS(1339), [sym_comment] = ACTIONS(3), }, [423] = { - [ts_builtin_sym_end] = ACTIONS(1334), - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym___extension__] = ACTIONS(1332), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym___inline] = ACTIONS(1332), - [anon_sym___inline__] = ACTIONS(1332), - [anon_sym___forceinline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym___thread] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym___alignof__] = ACTIONS(1332), - [anon_sym___alignof] = ACTIONS(1332), - [anon_sym__alignof] = ACTIONS(1332), - [anon_sym_alignof] = ACTIONS(1332), - [anon_sym__Alignof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), + [ts_builtin_sym_end] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym___extension__] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym___attribute__] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1327), + [anon_sym___cdecl] = ACTIONS(1327), + [anon_sym___clrcall] = ACTIONS(1327), + [anon_sym___stdcall] = ACTIONS(1327), + [anon_sym___fastcall] = ACTIONS(1327), + [anon_sym___thiscall] = ACTIONS(1327), + [anon_sym___vectorcall] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_auto] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym___inline] = ACTIONS(1327), + [anon_sym___inline__] = ACTIONS(1327), + [anon_sym___forceinline] = ACTIONS(1327), + [anon_sym_thread_local] = ACTIONS(1327), + [anon_sym___thread] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym___restrict__] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [anon_sym__Noreturn] = ACTIONS(1327), + [anon_sym_noreturn] = ACTIONS(1327), + [anon_sym_alignas] = ACTIONS(1327), + [anon_sym__Alignas] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym___alignof__] = ACTIONS(1327), + [anon_sym___alignof] = ACTIONS(1327), + [anon_sym__alignof] = ACTIONS(1327), + [anon_sym_alignof] = ACTIONS(1327), + [anon_sym__Alignof] = ACTIONS(1327), + [anon_sym_offsetof] = ACTIONS(1327), + [anon_sym__Generic] = ACTIONS(1327), + [anon_sym_asm] = ACTIONS(1327), + [anon_sym___asm__] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_L_SQUOTE] = ACTIONS(1329), + [anon_sym_u_SQUOTE] = ACTIONS(1329), + [anon_sym_U_SQUOTE] = ACTIONS(1329), + [anon_sym_u8_SQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_L_DQUOTE] = ACTIONS(1329), + [anon_sym_u_DQUOTE] = ACTIONS(1329), + [anon_sym_U_DQUOTE] = ACTIONS(1329), + [anon_sym_u8_DQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [anon_sym_NULL] = ACTIONS(1327), + [anon_sym_nullptr] = ACTIONS(1327), [sym_comment] = ACTIONS(3), }, [424] = { - [ts_builtin_sym_end] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1340), - [aux_sym_preproc_include_token1] = ACTIONS(1340), - [aux_sym_preproc_def_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), - [sym_preproc_directive] = ACTIONS(1340), - [anon_sym_LPAREN2] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym___extension__] = ACTIONS(1340), - [anon_sym_typedef] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym___attribute__] = ACTIONS(1340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), - [anon_sym___declspec] = ACTIONS(1340), - [anon_sym___cdecl] = ACTIONS(1340), - [anon_sym___clrcall] = ACTIONS(1340), - [anon_sym___stdcall] = ACTIONS(1340), - [anon_sym___fastcall] = ACTIONS(1340), - [anon_sym___thiscall] = ACTIONS(1340), - [anon_sym___vectorcall] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_auto] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1340), - [anon_sym_inline] = ACTIONS(1340), - [anon_sym___inline] = ACTIONS(1340), - [anon_sym___inline__] = ACTIONS(1340), - [anon_sym___forceinline] = ACTIONS(1340), - [anon_sym_thread_local] = ACTIONS(1340), - [anon_sym___thread] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [sym_primitive_type] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_switch] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_goto] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1340), - [anon_sym___alignof__] = ACTIONS(1340), - [anon_sym___alignof] = ACTIONS(1340), - [anon_sym__alignof] = ACTIONS(1340), - [anon_sym_alignof] = ACTIONS(1340), - [anon_sym__Alignof] = ACTIONS(1340), - [anon_sym_offsetof] = ACTIONS(1340), - [anon_sym__Generic] = ACTIONS(1340), - [anon_sym_asm] = ACTIONS(1340), - [anon_sym___asm__] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1342), - [anon_sym_L_SQUOTE] = ACTIONS(1342), - [anon_sym_u_SQUOTE] = ACTIONS(1342), - [anon_sym_U_SQUOTE] = ACTIONS(1342), - [anon_sym_u8_SQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_L_DQUOTE] = ACTIONS(1342), - [anon_sym_u_DQUOTE] = ACTIONS(1342), - [anon_sym_U_DQUOTE] = ACTIONS(1342), - [anon_sym_u8_DQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_true] = ACTIONS(1340), - [sym_false] = ACTIONS(1340), - [anon_sym_NULL] = ACTIONS(1340), - [anon_sym_nullptr] = ACTIONS(1340), + [ts_builtin_sym_end] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1279), + [aux_sym_preproc_include_token1] = ACTIONS(1279), + [aux_sym_preproc_def_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), + [sym_preproc_directive] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym___extension__] = ACTIONS(1279), + [anon_sym_typedef] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym___attribute__] = ACTIONS(1279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), + [anon_sym___declspec] = ACTIONS(1279), + [anon_sym___cdecl] = ACTIONS(1279), + [anon_sym___clrcall] = ACTIONS(1279), + [anon_sym___stdcall] = ACTIONS(1279), + [anon_sym___fastcall] = ACTIONS(1279), + [anon_sym___thiscall] = ACTIONS(1279), + [anon_sym___vectorcall] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_signed] = ACTIONS(1279), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_auto] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_inline] = ACTIONS(1279), + [anon_sym___inline] = ACTIONS(1279), + [anon_sym___inline__] = ACTIONS(1279), + [anon_sym___forceinline] = ACTIONS(1279), + [anon_sym_thread_local] = ACTIONS(1279), + [anon_sym___thread] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_constexpr] = ACTIONS(1279), + [anon_sym_volatile] = ACTIONS(1279), + [anon_sym_restrict] = ACTIONS(1279), + [anon_sym___restrict__] = ACTIONS(1279), + [anon_sym__Atomic] = ACTIONS(1279), + [anon_sym__Noreturn] = ACTIONS(1279), + [anon_sym_noreturn] = ACTIONS(1279), + [anon_sym_alignas] = ACTIONS(1279), + [anon_sym__Alignas] = ACTIONS(1279), + [sym_primitive_type] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_switch] = ACTIONS(1279), + [anon_sym_case] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_goto] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1279), + [anon_sym___alignof__] = ACTIONS(1279), + [anon_sym___alignof] = ACTIONS(1279), + [anon_sym__alignof] = ACTIONS(1279), + [anon_sym_alignof] = ACTIONS(1279), + [anon_sym__Alignof] = ACTIONS(1279), + [anon_sym_offsetof] = ACTIONS(1279), + [anon_sym__Generic] = ACTIONS(1279), + [anon_sym_asm] = ACTIONS(1279), + [anon_sym___asm__] = ACTIONS(1279), + [sym_number_literal] = ACTIONS(1281), + [anon_sym_L_SQUOTE] = ACTIONS(1281), + [anon_sym_u_SQUOTE] = ACTIONS(1281), + [anon_sym_U_SQUOTE] = ACTIONS(1281), + [anon_sym_u8_SQUOTE] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_L_DQUOTE] = ACTIONS(1281), + [anon_sym_u_DQUOTE] = ACTIONS(1281), + [anon_sym_U_DQUOTE] = ACTIONS(1281), + [anon_sym_u8_DQUOTE] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [anon_sym_NULL] = ACTIONS(1279), + [anon_sym_nullptr] = ACTIONS(1279), [sym_comment] = ACTIONS(3), }, [425] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym___extension__] = ACTIONS(1300), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym___inline] = ACTIONS(1300), - [anon_sym___inline__] = ACTIONS(1300), - [anon_sym___forceinline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym___thread] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym___alignof__] = ACTIONS(1300), - [anon_sym___alignof] = ACTIONS(1300), - [anon_sym__alignof] = ACTIONS(1300), - [anon_sym_alignof] = ACTIONS(1300), - [anon_sym__Alignof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), + [ts_builtin_sym_end] = ACTIONS(1289), + [sym_identifier] = ACTIONS(1287), + [aux_sym_preproc_include_token1] = ACTIONS(1287), + [aux_sym_preproc_def_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), + [sym_preproc_directive] = ACTIONS(1287), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym___extension__] = ACTIONS(1287), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym___attribute__] = ACTIONS(1287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), + [anon_sym___declspec] = ACTIONS(1287), + [anon_sym___cdecl] = ACTIONS(1287), + [anon_sym___clrcall] = ACTIONS(1287), + [anon_sym___stdcall] = ACTIONS(1287), + [anon_sym___fastcall] = ACTIONS(1287), + [anon_sym___thiscall] = ACTIONS(1287), + [anon_sym___vectorcall] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_signed] = ACTIONS(1287), + [anon_sym_unsigned] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_auto] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_inline] = ACTIONS(1287), + [anon_sym___inline] = ACTIONS(1287), + [anon_sym___inline__] = ACTIONS(1287), + [anon_sym___forceinline] = ACTIONS(1287), + [anon_sym_thread_local] = ACTIONS(1287), + [anon_sym___thread] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_constexpr] = ACTIONS(1287), + [anon_sym_volatile] = ACTIONS(1287), + [anon_sym_restrict] = ACTIONS(1287), + [anon_sym___restrict__] = ACTIONS(1287), + [anon_sym__Atomic] = ACTIONS(1287), + [anon_sym__Noreturn] = ACTIONS(1287), + [anon_sym_noreturn] = ACTIONS(1287), + [anon_sym_alignas] = ACTIONS(1287), + [anon_sym__Alignas] = ACTIONS(1287), + [sym_primitive_type] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_switch] = ACTIONS(1287), + [anon_sym_case] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_goto] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_sizeof] = ACTIONS(1287), + [anon_sym___alignof__] = ACTIONS(1287), + [anon_sym___alignof] = ACTIONS(1287), + [anon_sym__alignof] = ACTIONS(1287), + [anon_sym_alignof] = ACTIONS(1287), + [anon_sym__Alignof] = ACTIONS(1287), + [anon_sym_offsetof] = ACTIONS(1287), + [anon_sym__Generic] = ACTIONS(1287), + [anon_sym_asm] = ACTIONS(1287), + [anon_sym___asm__] = ACTIONS(1287), + [sym_number_literal] = ACTIONS(1289), + [anon_sym_L_SQUOTE] = ACTIONS(1289), + [anon_sym_u_SQUOTE] = ACTIONS(1289), + [anon_sym_U_SQUOTE] = ACTIONS(1289), + [anon_sym_u8_SQUOTE] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_L_DQUOTE] = ACTIONS(1289), + [anon_sym_u_DQUOTE] = ACTIONS(1289), + [anon_sym_U_DQUOTE] = ACTIONS(1289), + [anon_sym_u8_DQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [anon_sym_NULL] = ACTIONS(1287), + [anon_sym_nullptr] = ACTIONS(1287), [sym_comment] = ACTIONS(3), }, [426] = { - [ts_builtin_sym_end] = ACTIONS(1314), - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym___inline] = ACTIONS(1312), - [anon_sym___inline__] = ACTIONS(1312), - [anon_sym___forceinline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym___alignof__] = ACTIONS(1312), - [anon_sym___alignof] = ACTIONS(1312), - [anon_sym__alignof] = ACTIONS(1312), - [anon_sym_alignof] = ACTIONS(1312), - [anon_sym__Alignof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1283), + [aux_sym_preproc_include_token1] = ACTIONS(1283), + [aux_sym_preproc_def_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), + [sym_preproc_directive] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1285), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym___extension__] = ACTIONS(1283), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1285), + [anon_sym___declspec] = ACTIONS(1283), + [anon_sym___cdecl] = ACTIONS(1283), + [anon_sym___clrcall] = ACTIONS(1283), + [anon_sym___stdcall] = ACTIONS(1283), + [anon_sym___fastcall] = ACTIONS(1283), + [anon_sym___thiscall] = ACTIONS(1283), + [anon_sym___vectorcall] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [anon_sym___inline] = ACTIONS(1283), + [anon_sym___inline__] = ACTIONS(1283), + [anon_sym___forceinline] = ACTIONS(1283), + [anon_sym_thread_local] = ACTIONS(1283), + [anon_sym___thread] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_constexpr] = ACTIONS(1283), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [anon_sym___restrict__] = ACTIONS(1283), + [anon_sym__Atomic] = ACTIONS(1283), + [anon_sym__Noreturn] = ACTIONS(1283), + [anon_sym_noreturn] = ACTIONS(1283), + [anon_sym_alignas] = ACTIONS(1283), + [anon_sym__Alignas] = ACTIONS(1283), + [sym_primitive_type] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_case] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_goto] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym___alignof__] = ACTIONS(1283), + [anon_sym___alignof] = ACTIONS(1283), + [anon_sym__alignof] = ACTIONS(1283), + [anon_sym_alignof] = ACTIONS(1283), + [anon_sym__Alignof] = ACTIONS(1283), + [anon_sym_offsetof] = ACTIONS(1283), + [anon_sym__Generic] = ACTIONS(1283), + [anon_sym_asm] = ACTIONS(1283), + [anon_sym___asm__] = ACTIONS(1283), + [sym_number_literal] = ACTIONS(1285), + [anon_sym_L_SQUOTE] = ACTIONS(1285), + [anon_sym_u_SQUOTE] = ACTIONS(1285), + [anon_sym_U_SQUOTE] = ACTIONS(1285), + [anon_sym_u8_SQUOTE] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1285), + [anon_sym_L_DQUOTE] = ACTIONS(1285), + [anon_sym_u_DQUOTE] = ACTIONS(1285), + [anon_sym_U_DQUOTE] = ACTIONS(1285), + [anon_sym_u8_DQUOTE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [anon_sym_NULL] = ACTIONS(1283), + [anon_sym_nullptr] = ACTIONS(1283), [sym_comment] = ACTIONS(3), }, [427] = { - [ts_builtin_sym_end] = ACTIONS(1306), - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym___extension__] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym___inline] = ACTIONS(1304), - [anon_sym___inline__] = ACTIONS(1304), - [anon_sym___forceinline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym___thread] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym___alignof__] = ACTIONS(1304), - [anon_sym___alignof] = ACTIONS(1304), - [anon_sym__alignof] = ACTIONS(1304), - [anon_sym_alignof] = ACTIONS(1304), - [anon_sym__Alignof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), + [ts_builtin_sym_end] = ACTIONS(1325), + [sym_identifier] = ACTIONS(1323), + [aux_sym_preproc_include_token1] = ACTIONS(1323), + [aux_sym_preproc_def_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), + [sym_preproc_directive] = ACTIONS(1323), + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym___extension__] = ACTIONS(1323), + [anon_sym_typedef] = ACTIONS(1323), + [anon_sym_extern] = ACTIONS(1323), + [anon_sym___attribute__] = ACTIONS(1323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(1323), + [anon_sym___cdecl] = ACTIONS(1323), + [anon_sym___clrcall] = ACTIONS(1323), + [anon_sym___stdcall] = ACTIONS(1323), + [anon_sym___fastcall] = ACTIONS(1323), + [anon_sym___thiscall] = ACTIONS(1323), + [anon_sym___vectorcall] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_signed] = ACTIONS(1323), + [anon_sym_unsigned] = ACTIONS(1323), + [anon_sym_long] = ACTIONS(1323), + [anon_sym_short] = ACTIONS(1323), + [anon_sym_static] = ACTIONS(1323), + [anon_sym_auto] = ACTIONS(1323), + [anon_sym_register] = ACTIONS(1323), + [anon_sym_inline] = ACTIONS(1323), + [anon_sym___inline] = ACTIONS(1323), + [anon_sym___inline__] = ACTIONS(1323), + [anon_sym___forceinline] = ACTIONS(1323), + [anon_sym_thread_local] = ACTIONS(1323), + [anon_sym___thread] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_constexpr] = ACTIONS(1323), + [anon_sym_volatile] = ACTIONS(1323), + [anon_sym_restrict] = ACTIONS(1323), + [anon_sym___restrict__] = ACTIONS(1323), + [anon_sym__Atomic] = ACTIONS(1323), + [anon_sym__Noreturn] = ACTIONS(1323), + [anon_sym_noreturn] = ACTIONS(1323), + [anon_sym_alignas] = ACTIONS(1323), + [anon_sym__Alignas] = ACTIONS(1323), + [sym_primitive_type] = ACTIONS(1323), + [anon_sym_enum] = ACTIONS(1323), + [anon_sym_struct] = ACTIONS(1323), + [anon_sym_union] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_switch] = ACTIONS(1323), + [anon_sym_case] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_do] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_goto] = ACTIONS(1323), + [anon_sym_DASH_DASH] = ACTIONS(1325), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_sizeof] = ACTIONS(1323), + [anon_sym___alignof__] = ACTIONS(1323), + [anon_sym___alignof] = ACTIONS(1323), + [anon_sym__alignof] = ACTIONS(1323), + [anon_sym_alignof] = ACTIONS(1323), + [anon_sym__Alignof] = ACTIONS(1323), + [anon_sym_offsetof] = ACTIONS(1323), + [anon_sym__Generic] = ACTIONS(1323), + [anon_sym_asm] = ACTIONS(1323), + [anon_sym___asm__] = ACTIONS(1323), + [sym_number_literal] = ACTIONS(1325), + [anon_sym_L_SQUOTE] = ACTIONS(1325), + [anon_sym_u_SQUOTE] = ACTIONS(1325), + [anon_sym_U_SQUOTE] = ACTIONS(1325), + [anon_sym_u8_SQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1325), + [anon_sym_L_DQUOTE] = ACTIONS(1325), + [anon_sym_u_DQUOTE] = ACTIONS(1325), + [anon_sym_U_DQUOTE] = ACTIONS(1325), + [anon_sym_u8_DQUOTE] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [anon_sym_NULL] = ACTIONS(1323), + [anon_sym_nullptr] = ACTIONS(1323), [sym_comment] = ACTIONS(3), }, [428] = { - [ts_builtin_sym_end] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym___extension__] = ACTIONS(1328), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym___inline] = ACTIONS(1328), - [anon_sym___inline__] = ACTIONS(1328), - [anon_sym___forceinline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym___thread] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [sym_primitive_type] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym___alignof__] = ACTIONS(1328), - [anon_sym___alignof] = ACTIONS(1328), - [anon_sym__alignof] = ACTIONS(1328), - [anon_sym_alignof] = ACTIONS(1328), - [anon_sym__Alignof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), + [ts_builtin_sym_end] = ACTIONS(1265), + [sym_identifier] = ACTIONS(1263), + [aux_sym_preproc_include_token1] = ACTIONS(1263), + [aux_sym_preproc_def_token1] = ACTIONS(1263), + [aux_sym_preproc_if_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), + [sym_preproc_directive] = ACTIONS(1263), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym___extension__] = ACTIONS(1263), + [anon_sym_typedef] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym___attribute__] = ACTIONS(1263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), + [anon_sym___declspec] = ACTIONS(1263), + [anon_sym___cdecl] = ACTIONS(1263), + [anon_sym___clrcall] = ACTIONS(1263), + [anon_sym___stdcall] = ACTIONS(1263), + [anon_sym___fastcall] = ACTIONS(1263), + [anon_sym___thiscall] = ACTIONS(1263), + [anon_sym___vectorcall] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_signed] = ACTIONS(1263), + [anon_sym_unsigned] = ACTIONS(1263), + [anon_sym_long] = ACTIONS(1263), + [anon_sym_short] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_auto] = ACTIONS(1263), + [anon_sym_register] = ACTIONS(1263), + [anon_sym_inline] = ACTIONS(1263), + [anon_sym___inline] = ACTIONS(1263), + [anon_sym___inline__] = ACTIONS(1263), + [anon_sym___forceinline] = ACTIONS(1263), + [anon_sym_thread_local] = ACTIONS(1263), + [anon_sym___thread] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_constexpr] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym___restrict__] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym__Noreturn] = ACTIONS(1263), + [anon_sym_noreturn] = ACTIONS(1263), + [anon_sym_alignas] = ACTIONS(1263), + [anon_sym__Alignas] = ACTIONS(1263), + [sym_primitive_type] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_goto] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_sizeof] = ACTIONS(1263), + [anon_sym___alignof__] = ACTIONS(1263), + [anon_sym___alignof] = ACTIONS(1263), + [anon_sym__alignof] = ACTIONS(1263), + [anon_sym_alignof] = ACTIONS(1263), + [anon_sym__Alignof] = ACTIONS(1263), + [anon_sym_offsetof] = ACTIONS(1263), + [anon_sym__Generic] = ACTIONS(1263), + [anon_sym_asm] = ACTIONS(1263), + [anon_sym___asm__] = ACTIONS(1263), + [sym_number_literal] = ACTIONS(1265), + [anon_sym_L_SQUOTE] = ACTIONS(1265), + [anon_sym_u_SQUOTE] = ACTIONS(1265), + [anon_sym_U_SQUOTE] = ACTIONS(1265), + [anon_sym_u8_SQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_L_DQUOTE] = ACTIONS(1265), + [anon_sym_u_DQUOTE] = ACTIONS(1265), + [anon_sym_U_DQUOTE] = ACTIONS(1265), + [anon_sym_u8_DQUOTE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_true] = ACTIONS(1263), + [sym_false] = ACTIONS(1263), + [anon_sym_NULL] = ACTIONS(1263), + [anon_sym_nullptr] = ACTIONS(1263), [sym_comment] = ACTIONS(3), }, [429] = { - [ts_builtin_sym_end] = ACTIONS(1246), - [sym_identifier] = ACTIONS(1244), - [aux_sym_preproc_include_token1] = ACTIONS(1244), - [aux_sym_preproc_def_token1] = ACTIONS(1244), - [aux_sym_preproc_if_token1] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), - [sym_preproc_directive] = ACTIONS(1244), - [anon_sym_LPAREN2] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_TILDE] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym___extension__] = ACTIONS(1244), - [anon_sym_typedef] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1244), - [anon_sym___attribute__] = ACTIONS(1244), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), - [anon_sym___declspec] = ACTIONS(1244), - [anon_sym___cdecl] = ACTIONS(1244), - [anon_sym___clrcall] = ACTIONS(1244), - [anon_sym___stdcall] = ACTIONS(1244), - [anon_sym___fastcall] = ACTIONS(1244), - [anon_sym___thiscall] = ACTIONS(1244), - [anon_sym___vectorcall] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = ACTIONS(1244), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_auto] = ACTIONS(1244), - [anon_sym_register] = ACTIONS(1244), - [anon_sym_inline] = ACTIONS(1244), - [anon_sym___inline] = ACTIONS(1244), - [anon_sym___inline__] = ACTIONS(1244), - [anon_sym___forceinline] = ACTIONS(1244), - [anon_sym_thread_local] = ACTIONS(1244), - [anon_sym___thread] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_constexpr] = ACTIONS(1244), - [anon_sym_volatile] = ACTIONS(1244), - [anon_sym_restrict] = ACTIONS(1244), - [anon_sym___restrict__] = ACTIONS(1244), - [anon_sym__Atomic] = ACTIONS(1244), - [anon_sym__Noreturn] = ACTIONS(1244), - [anon_sym_noreturn] = ACTIONS(1244), - [sym_primitive_type] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [anon_sym_union] = ACTIONS(1244), - [anon_sym_if] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1244), - [anon_sym_case] = ACTIONS(1244), - [anon_sym_default] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(1244), - [anon_sym_for] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1244), - [anon_sym_break] = ACTIONS(1244), - [anon_sym_continue] = ACTIONS(1244), - [anon_sym_goto] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_sizeof] = ACTIONS(1244), - [anon_sym___alignof__] = ACTIONS(1244), - [anon_sym___alignof] = ACTIONS(1244), - [anon_sym__alignof] = ACTIONS(1244), - [anon_sym_alignof] = ACTIONS(1244), - [anon_sym__Alignof] = ACTIONS(1244), - [anon_sym_offsetof] = ACTIONS(1244), - [anon_sym__Generic] = ACTIONS(1244), - [anon_sym_asm] = ACTIONS(1244), - [anon_sym___asm__] = ACTIONS(1244), - [sym_number_literal] = ACTIONS(1246), - [anon_sym_L_SQUOTE] = ACTIONS(1246), - [anon_sym_u_SQUOTE] = ACTIONS(1246), - [anon_sym_U_SQUOTE] = ACTIONS(1246), - [anon_sym_u8_SQUOTE] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_L_DQUOTE] = ACTIONS(1246), - [anon_sym_u_DQUOTE] = ACTIONS(1246), - [anon_sym_U_DQUOTE] = ACTIONS(1246), - [anon_sym_u8_DQUOTE] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_true] = ACTIONS(1244), - [sym_false] = ACTIONS(1244), - [anon_sym_NULL] = ACTIONS(1244), - [anon_sym_nullptr] = ACTIONS(1244), + [ts_builtin_sym_end] = ACTIONS(1666), + [sym_identifier] = ACTIONS(1668), + [aux_sym_preproc_include_token1] = ACTIONS(1668), + [aux_sym_preproc_def_token1] = ACTIONS(1668), + [aux_sym_preproc_if_token1] = ACTIONS(1668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1668), + [sym_preproc_directive] = ACTIONS(1668), + [anon_sym_LPAREN2] = ACTIONS(1666), + [anon_sym_BANG] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1668), + [anon_sym_PLUS] = ACTIONS(1668), + [anon_sym_STAR] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym___extension__] = ACTIONS(1668), + [anon_sym_typedef] = ACTIONS(1668), + [anon_sym_extern] = ACTIONS(1668), + [anon_sym___attribute__] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym___declspec] = ACTIONS(1668), + [anon_sym___cdecl] = ACTIONS(1668), + [anon_sym___clrcall] = ACTIONS(1668), + [anon_sym___stdcall] = ACTIONS(1668), + [anon_sym___fastcall] = ACTIONS(1668), + [anon_sym___thiscall] = ACTIONS(1668), + [anon_sym___vectorcall] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_signed] = ACTIONS(1668), + [anon_sym_unsigned] = ACTIONS(1668), + [anon_sym_long] = ACTIONS(1668), + [anon_sym_short] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(1668), + [anon_sym_auto] = ACTIONS(1668), + [anon_sym_register] = ACTIONS(1668), + [anon_sym_inline] = ACTIONS(1668), + [anon_sym___inline] = ACTIONS(1668), + [anon_sym___inline__] = ACTIONS(1668), + [anon_sym___forceinline] = ACTIONS(1668), + [anon_sym_thread_local] = ACTIONS(1668), + [anon_sym___thread] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1668), + [anon_sym_constexpr] = ACTIONS(1668), + [anon_sym_volatile] = ACTIONS(1668), + [anon_sym_restrict] = ACTIONS(1668), + [anon_sym___restrict__] = ACTIONS(1668), + [anon_sym__Atomic] = ACTIONS(1668), + [anon_sym__Noreturn] = ACTIONS(1668), + [anon_sym_noreturn] = ACTIONS(1668), + [anon_sym_alignas] = ACTIONS(1668), + [anon_sym__Alignas] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(1668), + [anon_sym_enum] = ACTIONS(1668), + [anon_sym_struct] = ACTIONS(1668), + [anon_sym_union] = ACTIONS(1668), + [anon_sym_if] = ACTIONS(1668), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1668), + [anon_sym_default] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_do] = ACTIONS(1668), + [anon_sym_for] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_break] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(1668), + [anon_sym_goto] = ACTIONS(1668), + [anon_sym_DASH_DASH] = ACTIONS(1666), + [anon_sym_PLUS_PLUS] = ACTIONS(1666), + [anon_sym_sizeof] = ACTIONS(1668), + [anon_sym___alignof__] = ACTIONS(1668), + [anon_sym___alignof] = ACTIONS(1668), + [anon_sym__alignof] = ACTIONS(1668), + [anon_sym_alignof] = ACTIONS(1668), + [anon_sym__Alignof] = ACTIONS(1668), + [anon_sym_offsetof] = ACTIONS(1668), + [anon_sym__Generic] = ACTIONS(1668), + [anon_sym_asm] = ACTIONS(1668), + [anon_sym___asm__] = ACTIONS(1668), + [sym_number_literal] = ACTIONS(1666), + [anon_sym_L_SQUOTE] = ACTIONS(1666), + [anon_sym_u_SQUOTE] = ACTIONS(1666), + [anon_sym_U_SQUOTE] = ACTIONS(1666), + [anon_sym_u8_SQUOTE] = ACTIONS(1666), + [anon_sym_SQUOTE] = ACTIONS(1666), + [anon_sym_L_DQUOTE] = ACTIONS(1666), + [anon_sym_u_DQUOTE] = ACTIONS(1666), + [anon_sym_U_DQUOTE] = ACTIONS(1666), + [anon_sym_u8_DQUOTE] = ACTIONS(1666), + [anon_sym_DQUOTE] = ACTIONS(1666), + [sym_true] = ACTIONS(1668), + [sym_false] = ACTIONS(1668), + [anon_sym_NULL] = ACTIONS(1668), + [anon_sym_nullptr] = ACTIONS(1668), [sym_comment] = ACTIONS(3), }, [430] = { - [ts_builtin_sym_end] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1240), - [aux_sym_preproc_include_token1] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), - [sym_preproc_directive] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym___extension__] = ACTIONS(1240), - [anon_sym_typedef] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym___attribute__] = ACTIONS(1240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), - [anon_sym___declspec] = ACTIONS(1240), - [anon_sym___cdecl] = ACTIONS(1240), - [anon_sym___clrcall] = ACTIONS(1240), - [anon_sym___stdcall] = ACTIONS(1240), - [anon_sym___fastcall] = ACTIONS(1240), - [anon_sym___thiscall] = ACTIONS(1240), - [anon_sym___vectorcall] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_auto] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1240), - [anon_sym_inline] = ACTIONS(1240), - [anon_sym___inline] = ACTIONS(1240), - [anon_sym___inline__] = ACTIONS(1240), - [anon_sym___forceinline] = ACTIONS(1240), - [anon_sym_thread_local] = ACTIONS(1240), - [anon_sym___thread] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_constexpr] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1240), - [anon_sym___restrict__] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1240), - [anon_sym__Noreturn] = ACTIONS(1240), - [anon_sym_noreturn] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_case] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_goto] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1240), - [anon_sym___alignof__] = ACTIONS(1240), - [anon_sym___alignof] = ACTIONS(1240), - [anon_sym__alignof] = ACTIONS(1240), - [anon_sym_alignof] = ACTIONS(1240), - [anon_sym__Alignof] = ACTIONS(1240), - [anon_sym_offsetof] = ACTIONS(1240), - [anon_sym__Generic] = ACTIONS(1240), - [anon_sym_asm] = ACTIONS(1240), - [anon_sym___asm__] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1242), - [anon_sym_L_SQUOTE] = ACTIONS(1242), - [anon_sym_u_SQUOTE] = ACTIONS(1242), - [anon_sym_U_SQUOTE] = ACTIONS(1242), - [anon_sym_u8_SQUOTE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_L_DQUOTE] = ACTIONS(1242), - [anon_sym_u_DQUOTE] = ACTIONS(1242), - [anon_sym_U_DQUOTE] = ACTIONS(1242), - [anon_sym_u8_DQUOTE] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [anon_sym_NULL] = ACTIONS(1240), - [anon_sym_nullptr] = ACTIONS(1240), + [ts_builtin_sym_end] = ACTIONS(1253), + [sym_identifier] = ACTIONS(1251), + [aux_sym_preproc_include_token1] = ACTIONS(1251), + [aux_sym_preproc_def_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token1] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), + [sym_preproc_directive] = ACTIONS(1251), + [anon_sym_LPAREN2] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_TILDE] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym___extension__] = ACTIONS(1251), + [anon_sym_typedef] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym___attribute__] = ACTIONS(1251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1253), + [anon_sym___declspec] = ACTIONS(1251), + [anon_sym___cdecl] = ACTIONS(1251), + [anon_sym___clrcall] = ACTIONS(1251), + [anon_sym___stdcall] = ACTIONS(1251), + [anon_sym___fastcall] = ACTIONS(1251), + [anon_sym___thiscall] = ACTIONS(1251), + [anon_sym___vectorcall] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_signed] = ACTIONS(1251), + [anon_sym_unsigned] = ACTIONS(1251), + [anon_sym_long] = ACTIONS(1251), + [anon_sym_short] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_auto] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_inline] = ACTIONS(1251), + [anon_sym___inline] = ACTIONS(1251), + [anon_sym___inline__] = ACTIONS(1251), + [anon_sym___forceinline] = ACTIONS(1251), + [anon_sym_thread_local] = ACTIONS(1251), + [anon_sym___thread] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_constexpr] = ACTIONS(1251), + [anon_sym_volatile] = ACTIONS(1251), + [anon_sym_restrict] = ACTIONS(1251), + [anon_sym___restrict__] = ACTIONS(1251), + [anon_sym__Atomic] = ACTIONS(1251), + [anon_sym__Noreturn] = ACTIONS(1251), + [anon_sym_noreturn] = ACTIONS(1251), + [anon_sym_alignas] = ACTIONS(1251), + [anon_sym__Alignas] = ACTIONS(1251), + [sym_primitive_type] = ACTIONS(1251), + [anon_sym_enum] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_switch] = ACTIONS(1251), + [anon_sym_case] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_sizeof] = ACTIONS(1251), + [anon_sym___alignof__] = ACTIONS(1251), + [anon_sym___alignof] = ACTIONS(1251), + [anon_sym__alignof] = ACTIONS(1251), + [anon_sym_alignof] = ACTIONS(1251), + [anon_sym__Alignof] = ACTIONS(1251), + [anon_sym_offsetof] = ACTIONS(1251), + [anon_sym__Generic] = ACTIONS(1251), + [anon_sym_asm] = ACTIONS(1251), + [anon_sym___asm__] = ACTIONS(1251), + [sym_number_literal] = ACTIONS(1253), + [anon_sym_L_SQUOTE] = ACTIONS(1253), + [anon_sym_u_SQUOTE] = ACTIONS(1253), + [anon_sym_U_SQUOTE] = ACTIONS(1253), + [anon_sym_u8_SQUOTE] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1253), + [anon_sym_L_DQUOTE] = ACTIONS(1253), + [anon_sym_u_DQUOTE] = ACTIONS(1253), + [anon_sym_U_DQUOTE] = ACTIONS(1253), + [anon_sym_u8_DQUOTE] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym_true] = ACTIONS(1251), + [sym_false] = ACTIONS(1251), + [anon_sym_NULL] = ACTIONS(1251), + [anon_sym_nullptr] = ACTIONS(1251), [sym_comment] = ACTIONS(3), }, [431] = { - [ts_builtin_sym_end] = ACTIONS(1286), - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym___extension__] = ACTIONS(1284), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym___inline] = ACTIONS(1284), - [anon_sym___inline__] = ACTIONS(1284), - [anon_sym___forceinline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym___thread] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym___alignof__] = ACTIONS(1284), - [anon_sym___alignof] = ACTIONS(1284), - [anon_sym__alignof] = ACTIONS(1284), - [anon_sym_alignof] = ACTIONS(1284), - [anon_sym__Alignof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1319), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), + [sym_preproc_directive] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym___extension__] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym___attribute__] = ACTIONS(1319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___cdecl] = ACTIONS(1319), + [anon_sym___clrcall] = ACTIONS(1319), + [anon_sym___stdcall] = ACTIONS(1319), + [anon_sym___fastcall] = ACTIONS(1319), + [anon_sym___thiscall] = ACTIONS(1319), + [anon_sym___vectorcall] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1319), + [anon_sym_unsigned] = ACTIONS(1319), + [anon_sym_long] = ACTIONS(1319), + [anon_sym_short] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_auto] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1319), + [anon_sym___inline] = ACTIONS(1319), + [anon_sym___inline__] = ACTIONS(1319), + [anon_sym___forceinline] = ACTIONS(1319), + [anon_sym_thread_local] = ACTIONS(1319), + [anon_sym___thread] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_constexpr] = ACTIONS(1319), + [anon_sym_volatile] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1319), + [anon_sym___restrict__] = ACTIONS(1319), + [anon_sym__Atomic] = ACTIONS(1319), + [anon_sym__Noreturn] = ACTIONS(1319), + [anon_sym_noreturn] = ACTIONS(1319), + [anon_sym_alignas] = ACTIONS(1319), + [anon_sym__Alignas] = ACTIONS(1319), + [sym_primitive_type] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_case] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_goto] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_sizeof] = ACTIONS(1319), + [anon_sym___alignof__] = ACTIONS(1319), + [anon_sym___alignof] = ACTIONS(1319), + [anon_sym__alignof] = ACTIONS(1319), + [anon_sym_alignof] = ACTIONS(1319), + [anon_sym__Alignof] = ACTIONS(1319), + [anon_sym_offsetof] = ACTIONS(1319), + [anon_sym__Generic] = ACTIONS(1319), + [anon_sym_asm] = ACTIONS(1319), + [anon_sym___asm__] = ACTIONS(1319), + [sym_number_literal] = ACTIONS(1321), + [anon_sym_L_SQUOTE] = ACTIONS(1321), + [anon_sym_u_SQUOTE] = ACTIONS(1321), + [anon_sym_U_SQUOTE] = ACTIONS(1321), + [anon_sym_u8_SQUOTE] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_L_DQUOTE] = ACTIONS(1321), + [anon_sym_u_DQUOTE] = ACTIONS(1321), + [anon_sym_U_DQUOTE] = ACTIONS(1321), + [anon_sym_u8_DQUOTE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym_true] = ACTIONS(1319), + [sym_false] = ACTIONS(1319), + [anon_sym_NULL] = ACTIONS(1319), + [anon_sym_nullptr] = ACTIONS(1319), [sym_comment] = ACTIONS(3), }, [432] = { - [ts_builtin_sym_end] = ACTIONS(1338), - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym___extension__] = ACTIONS(1336), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym___inline] = ACTIONS(1336), - [anon_sym___inline__] = ACTIONS(1336), - [anon_sym___forceinline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym___alignof__] = ACTIONS(1336), - [anon_sym___alignof] = ACTIONS(1336), - [anon_sym__alignof] = ACTIONS(1336), - [anon_sym_alignof] = ACTIONS(1336), - [anon_sym__Alignof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), + [ts_builtin_sym_end] = ACTIONS(1309), + [sym_identifier] = ACTIONS(1307), + [aux_sym_preproc_include_token1] = ACTIONS(1307), + [aux_sym_preproc_def_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), + [sym_preproc_directive] = ACTIONS(1307), + [anon_sym_LPAREN2] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym___extension__] = ACTIONS(1307), + [anon_sym_typedef] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym___attribute__] = ACTIONS(1307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), + [anon_sym___declspec] = ACTIONS(1307), + [anon_sym___cdecl] = ACTIONS(1307), + [anon_sym___clrcall] = ACTIONS(1307), + [anon_sym___stdcall] = ACTIONS(1307), + [anon_sym___fastcall] = ACTIONS(1307), + [anon_sym___thiscall] = ACTIONS(1307), + [anon_sym___vectorcall] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(1307), + [anon_sym_unsigned] = ACTIONS(1307), + [anon_sym_long] = ACTIONS(1307), + [anon_sym_short] = ACTIONS(1307), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_auto] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_inline] = ACTIONS(1307), + [anon_sym___inline] = ACTIONS(1307), + [anon_sym___inline__] = ACTIONS(1307), + [anon_sym___forceinline] = ACTIONS(1307), + [anon_sym_thread_local] = ACTIONS(1307), + [anon_sym___thread] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_constexpr] = ACTIONS(1307), + [anon_sym_volatile] = ACTIONS(1307), + [anon_sym_restrict] = ACTIONS(1307), + [anon_sym___restrict__] = ACTIONS(1307), + [anon_sym__Atomic] = ACTIONS(1307), + [anon_sym__Noreturn] = ACTIONS(1307), + [anon_sym_noreturn] = ACTIONS(1307), + [anon_sym_alignas] = ACTIONS(1307), + [anon_sym__Alignas] = ACTIONS(1307), + [sym_primitive_type] = ACTIONS(1307), + [anon_sym_enum] = ACTIONS(1307), + [anon_sym_struct] = ACTIONS(1307), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_switch] = ACTIONS(1307), + [anon_sym_case] = ACTIONS(1307), + [anon_sym_default] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_goto] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym___alignof__] = ACTIONS(1307), + [anon_sym___alignof] = ACTIONS(1307), + [anon_sym__alignof] = ACTIONS(1307), + [anon_sym_alignof] = ACTIONS(1307), + [anon_sym__Alignof] = ACTIONS(1307), + [anon_sym_offsetof] = ACTIONS(1307), + [anon_sym__Generic] = ACTIONS(1307), + [anon_sym_asm] = ACTIONS(1307), + [anon_sym___asm__] = ACTIONS(1307), + [sym_number_literal] = ACTIONS(1309), + [anon_sym_L_SQUOTE] = ACTIONS(1309), + [anon_sym_u_SQUOTE] = ACTIONS(1309), + [anon_sym_U_SQUOTE] = ACTIONS(1309), + [anon_sym_u8_SQUOTE] = ACTIONS(1309), + [anon_sym_SQUOTE] = ACTIONS(1309), + [anon_sym_L_DQUOTE] = ACTIONS(1309), + [anon_sym_u_DQUOTE] = ACTIONS(1309), + [anon_sym_U_DQUOTE] = ACTIONS(1309), + [anon_sym_u8_DQUOTE] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1309), + [sym_true] = ACTIONS(1307), + [sym_false] = ACTIONS(1307), + [anon_sym_NULL] = ACTIONS(1307), + [anon_sym_nullptr] = ACTIONS(1307), [sym_comment] = ACTIONS(3), }, [433] = { - [ts_builtin_sym_end] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym___extension__] = ACTIONS(1236), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), - [anon_sym___declspec] = ACTIONS(1236), - [anon_sym___cdecl] = ACTIONS(1236), - [anon_sym___clrcall] = ACTIONS(1236), - [anon_sym___stdcall] = ACTIONS(1236), - [anon_sym___fastcall] = ACTIONS(1236), - [anon_sym___thiscall] = ACTIONS(1236), - [anon_sym___vectorcall] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym___inline] = ACTIONS(1236), - [anon_sym___inline__] = ACTIONS(1236), - [anon_sym___forceinline] = ACTIONS(1236), - [anon_sym_thread_local] = ACTIONS(1236), - [anon_sym___thread] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_constexpr] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym___restrict__] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym__Noreturn] = ACTIONS(1236), - [anon_sym_noreturn] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_case] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1236), - [anon_sym___alignof__] = ACTIONS(1236), - [anon_sym___alignof] = ACTIONS(1236), - [anon_sym__alignof] = ACTIONS(1236), - [anon_sym_alignof] = ACTIONS(1236), - [anon_sym__Alignof] = ACTIONS(1236), - [anon_sym_offsetof] = ACTIONS(1236), - [anon_sym__Generic] = ACTIONS(1236), - [anon_sym_asm] = ACTIONS(1236), - [anon_sym___asm__] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1238), - [anon_sym_u_SQUOTE] = ACTIONS(1238), - [anon_sym_U_SQUOTE] = ACTIONS(1238), - [anon_sym_u8_SQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_L_DQUOTE] = ACTIONS(1238), - [anon_sym_u_DQUOTE] = ACTIONS(1238), - [anon_sym_U_DQUOTE] = ACTIONS(1238), - [anon_sym_u8_DQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [anon_sym_NULL] = ACTIONS(1236), - [anon_sym_nullptr] = ACTIONS(1236), + [sym__expression] = STATE(880), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(725), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(725), + [sym_call_expression] = STATE(725), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(725), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(725), + [sym_initializer_list] = STATE(723), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_identifier] = ACTIONS(1365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1367), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_TILDE] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_SLASH] = ACTIONS(1373), + [anon_sym_PERCENT] = ACTIONS(1373), + [anon_sym_PIPE_PIPE] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1367), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_CARET] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_EQ_EQ] = ACTIONS(1367), + [anon_sym_BANG_EQ] = ACTIONS(1367), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1367), + [anon_sym_LT_EQ] = ACTIONS(1367), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_RBRACK] = ACTIONS(1367), + [anon_sym_EQ] = ACTIONS(1373), + [anon_sym_QMARK] = ACTIONS(1367), + [anon_sym_STAR_EQ] = ACTIONS(1367), + [anon_sym_SLASH_EQ] = ACTIONS(1367), + [anon_sym_PERCENT_EQ] = ACTIONS(1367), + [anon_sym_PLUS_EQ] = ACTIONS(1367), + [anon_sym_DASH_EQ] = ACTIONS(1367), + [anon_sym_LT_LT_EQ] = ACTIONS(1367), + [anon_sym_GT_GT_EQ] = ACTIONS(1367), + [anon_sym_AMP_EQ] = ACTIONS(1367), + [anon_sym_CARET_EQ] = ACTIONS(1367), + [anon_sym_PIPE_EQ] = ACTIONS(1367), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(1674), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1373), + [anon_sym_DASH_GT] = ACTIONS(1367), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [434] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__expression] = STATE(1071), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_type_descriptor] = STATE(1885), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), + [sym_type_qualifier] = STATE(1034), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__expression] = STATE(1080), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_type_descriptor] = STATE(1855), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__type_definition_type_repeat1] = STATE(1034), + [aux_sym_sized_type_specifier_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(1676), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58817,10 +59731,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), + [anon_sym_signed] = ACTIONS(1678), + [anon_sym_unsigned] = ACTIONS(1678), + [anon_sym_long] = ACTIONS(1678), + [anon_sym_short] = ACTIONS(1678), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -58829,76 +59743,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1669), - [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___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [435] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__expression] = STATE(1071), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_type_descriptor] = STATE(1977), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), + [sym_type_qualifier] = STATE(1034), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__expression] = STATE(1080), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_type_descriptor] = STATE(1865), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__type_definition_type_repeat1] = STATE(1034), + [aux_sym_sized_type_specifier_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(1676), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58907,10 +59824,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), + [anon_sym_signed] = ACTIONS(1678), + [anon_sym_unsigned] = ACTIONS(1678), + [anon_sym_long] = ACTIONS(1678), + [anon_sym_short] = ACTIONS(1678), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -58919,76 +59836,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1669), - [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___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [436] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__expression] = STATE(1071), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_type_descriptor] = STATE(1802), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), + [sym_type_qualifier] = STATE(1034), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__expression] = STATE(1080), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_type_descriptor] = STATE(1896), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__type_definition_type_repeat1] = STATE(1034), + [aux_sym_sized_type_specifier_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(1676), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58997,10 +59917,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), + [anon_sym_signed] = ACTIONS(1678), + [anon_sym_unsigned] = ACTIONS(1678), + [anon_sym_long] = ACTIONS(1678), + [anon_sym_short] = ACTIONS(1678), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -59009,76 +59929,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1669), - [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___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [437] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__expression] = STATE(1071), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_type_descriptor] = STATE(1782), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), + [sym_type_qualifier] = STATE(1034), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__expression] = STATE(1080), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_type_descriptor] = STATE(1861), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__type_definition_type_repeat1] = STATE(1034), + [aux_sym_sized_type_specifier_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(1676), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59087,10 +60010,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), + [anon_sym_signed] = ACTIONS(1678), + [anon_sym_unsigned] = ACTIONS(1678), + [anon_sym_long] = ACTIONS(1678), + [anon_sym_short] = ACTIONS(1678), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -59099,76 +60022,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1669), - [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___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [438] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__expression] = STATE(1071), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_type_descriptor] = STATE(1809), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), + [sym_type_qualifier] = STATE(1034), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__expression] = STATE(1080), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_type_descriptor] = STATE(1816), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__type_definition_type_repeat1] = STATE(1034), + [aux_sym_sized_type_specifier_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(1676), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59177,10 +60103,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), + [anon_sym_signed] = ACTIONS(1678), + [anon_sym_unsigned] = ACTIONS(1678), + [anon_sym_long] = ACTIONS(1678), + [anon_sym_short] = ACTIONS(1678), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -59189,76 +60115,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1669), - [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___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [439] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__expression] = STATE(1071), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_type_descriptor] = STATE(1880), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), + [sym_type_qualifier] = STATE(1034), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__expression] = STATE(1080), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_type_descriptor] = STATE(1877), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__type_definition_type_repeat1] = STATE(1034), + [aux_sym_sized_type_specifier_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(1676), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59267,10 +60196,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), + [anon_sym_signed] = ACTIONS(1678), + [anon_sym_unsigned] = ACTIONS(1678), + [anon_sym_long] = ACTIONS(1678), + [anon_sym_short] = ACTIONS(1678), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -59279,76 +60208,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1669), - [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___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [440] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__expression] = STATE(1071), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_type_descriptor] = STATE(1956), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), + [sym_type_qualifier] = STATE(1034), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__expression] = STATE(1080), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_type_descriptor] = STATE(1787), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__type_definition_type_repeat1] = STATE(1034), + [aux_sym_sized_type_specifier_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(1676), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59357,10 +60289,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), + [anon_sym_signed] = ACTIONS(1678), + [anon_sym_unsigned] = ACTIONS(1678), + [anon_sym_long] = ACTIONS(1678), + [anon_sym_short] = ACTIONS(1678), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -59369,76 +60301,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1669), - [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___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [441] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__expression] = STATE(1071), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_type_descriptor] = STATE(1925), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), + [sym_type_qualifier] = STATE(1034), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__expression] = STATE(1080), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_type_descriptor] = STATE(1988), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__type_definition_type_repeat1] = STATE(1034), + [aux_sym_sized_type_specifier_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(1676), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59447,10 +60382,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), + [anon_sym_signed] = ACTIONS(1678), + [anon_sym_unsigned] = ACTIONS(1678), + [anon_sym_long] = ACTIONS(1678), + [anon_sym_short] = ACTIONS(1678), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -59459,76 +60394,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1669), - [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___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [442] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__expression] = STATE(1071), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_type_descriptor] = STATE(1985), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), + [sym_type_qualifier] = STATE(1034), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__expression] = STATE(1080), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_type_descriptor] = STATE(1805), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__type_definition_type_repeat1] = STATE(1034), + [aux_sym_sized_type_specifier_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(1676), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59537,10 +60475,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), + [anon_sym_signed] = ACTIONS(1678), + [anon_sym_unsigned] = ACTIONS(1678), + [anon_sym_long] = ACTIONS(1678), + [anon_sym_short] = ACTIONS(1678), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -59549,76 +60487,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1669), - [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___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [443] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__expression] = STATE(1071), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_type_descriptor] = STATE(1853), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), + [sym_type_qualifier] = STATE(1034), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__expression] = STATE(1080), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_type_descriptor] = STATE(1995), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__type_definition_type_repeat1] = STATE(1034), + [aux_sym_sized_type_specifier_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(1676), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59627,10 +60568,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), + [anon_sym_signed] = ACTIONS(1678), + [anon_sym_unsigned] = ACTIONS(1678), + [anon_sym_long] = ACTIONS(1678), + [anon_sym_short] = ACTIONS(1678), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -59639,76 +60580,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1669), - [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___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [444] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__expression] = STATE(1071), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_type_descriptor] = STATE(1887), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), + [sym_type_qualifier] = STATE(1034), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__expression] = STATE(1080), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_type_descriptor] = STATE(2027), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__type_definition_type_repeat1] = STATE(1034), + [aux_sym_sized_type_specifier_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(1676), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59717,10 +60661,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), + [anon_sym_signed] = ACTIONS(1678), + [anon_sym_unsigned] = ACTIONS(1678), + [anon_sym_long] = ACTIONS(1678), + [anon_sym_short] = ACTIONS(1678), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -59729,76 +60673,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1669), - [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___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [445] = { - [sym_type_qualifier] = STATE(1102), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__expression] = STATE(1071), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_type_descriptor] = STATE(1946), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__type_definition_type_repeat1] = STATE(1102), - [aux_sym_sized_type_specifier_repeat1] = STATE(1139), - [sym_identifier] = ACTIONS(1665), + [sym_type_qualifier] = STATE(1034), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__expression] = STATE(1080), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_type_descriptor] = STATE(1851), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__type_definition_type_repeat1] = STATE(1034), + [aux_sym_sized_type_specifier_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(1676), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59807,10 +60754,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), + [anon_sym_signed] = ACTIONS(1678), + [anon_sym_unsigned] = ACTIONS(1678), + [anon_sym_long] = ACTIONS(1678), + [anon_sym_short] = ACTIONS(1678), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -59819,1513 +60766,1728 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1669), - [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___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [446] = { - [sym_identifier] = ACTIONS(1671), - [anon_sym_COMMA] = ACTIONS(1673), - [anon_sym_RPAREN] = ACTIONS(1673), - [anon_sym_LPAREN2] = ACTIONS(1673), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym___extension__] = ACTIONS(1671), - [anon_sym_extern] = ACTIONS(1671), - [anon_sym___attribute__] = ACTIONS(1671), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1673), - [anon_sym___declspec] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1673), - [anon_sym_signed] = ACTIONS(1671), - [anon_sym_unsigned] = ACTIONS(1671), - [anon_sym_long] = ACTIONS(1671), - [anon_sym_short] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_EQ] = ACTIONS(1673), - [anon_sym_auto] = ACTIONS(1671), - [anon_sym_register] = ACTIONS(1671), - [anon_sym_inline] = ACTIONS(1671), - [anon_sym___inline] = ACTIONS(1671), - [anon_sym___inline__] = ACTIONS(1671), - [anon_sym___forceinline] = ACTIONS(1671), - [anon_sym_thread_local] = ACTIONS(1671), - [anon_sym___thread] = ACTIONS(1671), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_constexpr] = ACTIONS(1671), - [anon_sym_volatile] = ACTIONS(1671), - [anon_sym_restrict] = ACTIONS(1671), - [anon_sym___restrict__] = ACTIONS(1671), - [anon_sym__Atomic] = ACTIONS(1671), - [anon_sym__Noreturn] = ACTIONS(1671), - [anon_sym_noreturn] = ACTIONS(1671), - [sym_primitive_type] = ACTIONS(1671), - [anon_sym_enum] = ACTIONS(1671), - [anon_sym_COLON] = ACTIONS(1673), - [anon_sym_struct] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_if] = ACTIONS(1671), - [anon_sym_switch] = ACTIONS(1671), - [anon_sym_case] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_while] = ACTIONS(1671), - [anon_sym_do] = ACTIONS(1671), - [anon_sym_for] = ACTIONS(1671), - [anon_sym_return] = ACTIONS(1671), - [anon_sym_break] = ACTIONS(1671), - [anon_sym_continue] = ACTIONS(1671), - [anon_sym_goto] = ACTIONS(1671), - [anon_sym___try] = ACTIONS(1671), - [anon_sym___leave] = ACTIONS(1671), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1671), - [anon_sym___alignof__] = ACTIONS(1671), - [anon_sym___alignof] = ACTIONS(1671), - [anon_sym__alignof] = ACTIONS(1671), - [anon_sym_alignof] = ACTIONS(1671), - [anon_sym__Alignof] = ACTIONS(1671), - [anon_sym_offsetof] = ACTIONS(1671), - [anon_sym__Generic] = ACTIONS(1671), - [anon_sym_asm] = ACTIONS(1671), - [anon_sym___asm__] = ACTIONS(1671), - [sym_number_literal] = ACTIONS(1673), - [anon_sym_L_SQUOTE] = ACTIONS(1673), - [anon_sym_u_SQUOTE] = ACTIONS(1673), - [anon_sym_U_SQUOTE] = ACTIONS(1673), - [anon_sym_u8_SQUOTE] = ACTIONS(1673), - [anon_sym_SQUOTE] = ACTIONS(1673), - [anon_sym_L_DQUOTE] = ACTIONS(1673), - [anon_sym_u_DQUOTE] = ACTIONS(1673), - [anon_sym_U_DQUOTE] = ACTIONS(1673), - [anon_sym_u8_DQUOTE] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1673), - [sym_true] = ACTIONS(1671), - [sym_false] = ACTIONS(1671), - [anon_sym_NULL] = ACTIONS(1671), - [anon_sym_nullptr] = ACTIONS(1671), + [sym_type_qualifier] = STATE(1034), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__expression] = STATE(1119), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_type_descriptor] = STATE(1898), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__type_definition_type_repeat1] = STATE(1034), + [aux_sym_sized_type_specifier_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(1676), + [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___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1678), + [anon_sym_unsigned] = ACTIONS(1678), + [anon_sym_long] = ACTIONS(1678), + [anon_sym_short] = ACTIONS(1678), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [447] = { - [sym_identifier] = ACTIONS(1675), - [anon_sym_COMMA] = ACTIONS(1677), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_LPAREN2] = ACTIONS(1677), - [anon_sym_BANG] = ACTIONS(1677), - [anon_sym_TILDE] = ACTIONS(1677), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1677), - [anon_sym_AMP] = ACTIONS(1677), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym___extension__] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(1675), - [anon_sym___attribute__] = ACTIONS(1675), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1677), - [anon_sym___declspec] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_signed] = ACTIONS(1675), - [anon_sym_unsigned] = ACTIONS(1675), - [anon_sym_long] = ACTIONS(1675), - [anon_sym_short] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_EQ] = ACTIONS(1677), - [anon_sym_auto] = ACTIONS(1675), - [anon_sym_register] = ACTIONS(1675), - [anon_sym_inline] = ACTIONS(1675), - [anon_sym___inline] = ACTIONS(1675), - [anon_sym___inline__] = ACTIONS(1675), - [anon_sym___forceinline] = ACTIONS(1675), - [anon_sym_thread_local] = ACTIONS(1675), - [anon_sym___thread] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(1675), - [anon_sym_constexpr] = ACTIONS(1675), - [anon_sym_volatile] = ACTIONS(1675), - [anon_sym_restrict] = ACTIONS(1675), - [anon_sym___restrict__] = ACTIONS(1675), - [anon_sym__Atomic] = ACTIONS(1675), - [anon_sym__Noreturn] = ACTIONS(1675), - [anon_sym_noreturn] = ACTIONS(1675), - [sym_primitive_type] = ACTIONS(1675), - [anon_sym_enum] = ACTIONS(1675), - [anon_sym_COLON] = ACTIONS(1677), - [anon_sym_struct] = ACTIONS(1675), - [anon_sym_union] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1675), - [anon_sym_switch] = ACTIONS(1675), - [anon_sym_case] = ACTIONS(1675), - [anon_sym_default] = ACTIONS(1675), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_do] = ACTIONS(1675), - [anon_sym_for] = ACTIONS(1675), - [anon_sym_return] = ACTIONS(1675), - [anon_sym_break] = ACTIONS(1675), - [anon_sym_continue] = ACTIONS(1675), - [anon_sym_goto] = ACTIONS(1675), - [anon_sym___try] = ACTIONS(1675), - [anon_sym___leave] = ACTIONS(1675), - [anon_sym_DASH_DASH] = ACTIONS(1677), - [anon_sym_PLUS_PLUS] = ACTIONS(1677), - [anon_sym_sizeof] = ACTIONS(1675), - [anon_sym___alignof__] = ACTIONS(1675), - [anon_sym___alignof] = ACTIONS(1675), - [anon_sym__alignof] = ACTIONS(1675), - [anon_sym_alignof] = ACTIONS(1675), - [anon_sym__Alignof] = ACTIONS(1675), - [anon_sym_offsetof] = ACTIONS(1675), - [anon_sym__Generic] = ACTIONS(1675), - [anon_sym_asm] = ACTIONS(1675), - [anon_sym___asm__] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_L_SQUOTE] = ACTIONS(1677), - [anon_sym_u_SQUOTE] = ACTIONS(1677), - [anon_sym_U_SQUOTE] = ACTIONS(1677), - [anon_sym_u8_SQUOTE] = ACTIONS(1677), - [anon_sym_SQUOTE] = ACTIONS(1677), - [anon_sym_L_DQUOTE] = ACTIONS(1677), - [anon_sym_u_DQUOTE] = ACTIONS(1677), - [anon_sym_U_DQUOTE] = ACTIONS(1677), - [anon_sym_u8_DQUOTE] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1677), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [anon_sym_NULL] = ACTIONS(1675), - [anon_sym_nullptr] = ACTIONS(1675), + [sym_type_qualifier] = STATE(1034), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__expression] = STATE(1122), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_type_descriptor] = STATE(1998), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__type_definition_type_repeat1] = STATE(1034), + [aux_sym_sized_type_specifier_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(1676), + [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___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1678), + [anon_sym_unsigned] = ACTIONS(1678), + [anon_sym_long] = ACTIONS(1678), + [anon_sym_short] = ACTIONS(1678), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [448] = { - [sym__expression] = STATE(733), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_initializer_list] = STATE(713), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_identifier] = ACTIONS(1679), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_PIPE_PIPE] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_COLON] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1350), - [anon_sym_DASH_GT] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1682), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LPAREN2] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1684), + [anon_sym_TILDE] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1684), + [anon_sym_AMP] = ACTIONS(1684), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym___extension__] = ACTIONS(1682), + [anon_sym_extern] = ACTIONS(1682), + [anon_sym___attribute__] = ACTIONS(1682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1684), + [anon_sym___declspec] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_signed] = ACTIONS(1682), + [anon_sym_unsigned] = ACTIONS(1682), + [anon_sym_long] = ACTIONS(1682), + [anon_sym_short] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_static] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_auto] = ACTIONS(1682), + [anon_sym_register] = ACTIONS(1682), + [anon_sym_inline] = ACTIONS(1682), + [anon_sym___inline] = ACTIONS(1682), + [anon_sym___inline__] = ACTIONS(1682), + [anon_sym___forceinline] = ACTIONS(1682), + [anon_sym_thread_local] = ACTIONS(1682), + [anon_sym___thread] = ACTIONS(1682), + [anon_sym_const] = ACTIONS(1682), + [anon_sym_constexpr] = ACTIONS(1682), + [anon_sym_volatile] = ACTIONS(1682), + [anon_sym_restrict] = ACTIONS(1682), + [anon_sym___restrict__] = ACTIONS(1682), + [anon_sym__Atomic] = ACTIONS(1682), + [anon_sym__Noreturn] = ACTIONS(1682), + [anon_sym_noreturn] = ACTIONS(1682), + [anon_sym_alignas] = ACTIONS(1682), + [anon_sym__Alignas] = ACTIONS(1682), + [sym_primitive_type] = ACTIONS(1682), + [anon_sym_enum] = ACTIONS(1682), + [anon_sym_COLON] = ACTIONS(1684), + [anon_sym_struct] = ACTIONS(1682), + [anon_sym_union] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_switch] = ACTIONS(1682), + [anon_sym_case] = ACTIONS(1682), + [anon_sym_default] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_do] = ACTIONS(1682), + [anon_sym_for] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_goto] = ACTIONS(1682), + [anon_sym___try] = ACTIONS(1682), + [anon_sym___leave] = ACTIONS(1682), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_sizeof] = ACTIONS(1682), + [anon_sym___alignof__] = ACTIONS(1682), + [anon_sym___alignof] = ACTIONS(1682), + [anon_sym__alignof] = ACTIONS(1682), + [anon_sym_alignof] = ACTIONS(1682), + [anon_sym__Alignof] = ACTIONS(1682), + [anon_sym_offsetof] = ACTIONS(1682), + [anon_sym__Generic] = ACTIONS(1682), + [anon_sym_asm] = ACTIONS(1682), + [anon_sym___asm__] = ACTIONS(1682), + [sym_number_literal] = ACTIONS(1684), + [anon_sym_L_SQUOTE] = ACTIONS(1684), + [anon_sym_u_SQUOTE] = ACTIONS(1684), + [anon_sym_U_SQUOTE] = ACTIONS(1684), + [anon_sym_u8_SQUOTE] = ACTIONS(1684), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_L_DQUOTE] = ACTIONS(1684), + [anon_sym_u_DQUOTE] = ACTIONS(1684), + [anon_sym_U_DQUOTE] = ACTIONS(1684), + [anon_sym_u8_DQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE] = ACTIONS(1684), + [sym_true] = ACTIONS(1682), + [sym_false] = ACTIONS(1682), + [anon_sym_NULL] = ACTIONS(1682), + [anon_sym_nullptr] = ACTIONS(1682), [sym_comment] = ACTIONS(3), }, [449] = { - [sym__expression] = STATE(733), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(801), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(801), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(801), - [sym_initializer_list] = STATE(713), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(736), - [sym_null] = STATE(708), - [sym_identifier] = ACTIONS(1350), - [anon_sym_COMMA] = ACTIONS(1352), - [aux_sym_preproc_if_token2] = ACTIONS(1352), - [aux_sym_preproc_else_token1] = ACTIONS(1352), - [aux_sym_preproc_elif_token1] = ACTIONS(1350), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_PIPE_PIPE] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1685), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1350), - [anon_sym_DASH_GT] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1688), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_BANG] = ACTIONS(1688), + [anon_sym_TILDE] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym___extension__] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym___attribute__] = ACTIONS(1686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1688), + [anon_sym___declspec] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_signed] = ACTIONS(1686), + [anon_sym_unsigned] = ACTIONS(1686), + [anon_sym_long] = ACTIONS(1686), + [anon_sym_short] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_static] = ACTIONS(1686), + [anon_sym_EQ] = ACTIONS(1688), + [anon_sym_auto] = ACTIONS(1686), + [anon_sym_register] = ACTIONS(1686), + [anon_sym_inline] = ACTIONS(1686), + [anon_sym___inline] = ACTIONS(1686), + [anon_sym___inline__] = ACTIONS(1686), + [anon_sym___forceinline] = ACTIONS(1686), + [anon_sym_thread_local] = ACTIONS(1686), + [anon_sym___thread] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [anon_sym_constexpr] = ACTIONS(1686), + [anon_sym_volatile] = ACTIONS(1686), + [anon_sym_restrict] = ACTIONS(1686), + [anon_sym___restrict__] = ACTIONS(1686), + [anon_sym__Atomic] = ACTIONS(1686), + [anon_sym__Noreturn] = ACTIONS(1686), + [anon_sym_noreturn] = ACTIONS(1686), + [anon_sym_alignas] = ACTIONS(1686), + [anon_sym__Alignas] = ACTIONS(1686), + [sym_primitive_type] = ACTIONS(1686), + [anon_sym_enum] = ACTIONS(1686), + [anon_sym_COLON] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_switch] = ACTIONS(1686), + [anon_sym_case] = ACTIONS(1686), + [anon_sym_default] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_goto] = ACTIONS(1686), + [anon_sym___try] = ACTIONS(1686), + [anon_sym___leave] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_PLUS_PLUS] = ACTIONS(1688), + [anon_sym_sizeof] = ACTIONS(1686), + [anon_sym___alignof__] = ACTIONS(1686), + [anon_sym___alignof] = ACTIONS(1686), + [anon_sym__alignof] = ACTIONS(1686), + [anon_sym_alignof] = ACTIONS(1686), + [anon_sym__Alignof] = ACTIONS(1686), + [anon_sym_offsetof] = ACTIONS(1686), + [anon_sym__Generic] = ACTIONS(1686), + [anon_sym_asm] = ACTIONS(1686), + [anon_sym___asm__] = ACTIONS(1686), + [sym_number_literal] = ACTIONS(1688), + [anon_sym_L_SQUOTE] = ACTIONS(1688), + [anon_sym_u_SQUOTE] = ACTIONS(1688), + [anon_sym_U_SQUOTE] = ACTIONS(1688), + [anon_sym_u8_SQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1688), + [anon_sym_L_DQUOTE] = ACTIONS(1688), + [anon_sym_u_DQUOTE] = ACTIONS(1688), + [anon_sym_U_DQUOTE] = ACTIONS(1688), + [anon_sym_u8_DQUOTE] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym_true] = ACTIONS(1686), + [sym_false] = ACTIONS(1686), + [anon_sym_NULL] = ACTIONS(1686), + [anon_sym_nullptr] = ACTIONS(1686), [sym_comment] = ACTIONS(3), }, [450] = { - [sym__expression] = STATE(881), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(894), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(894), - [sym_call_expression] = STATE(894), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(894), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(894), - [sym_initializer_list] = STATE(713), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [sym_identifier] = ACTIONS(1687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_PIPE_PIPE] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_RBRACK] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1693), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1350), - [anon_sym_DASH_GT] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym__expression] = STATE(747), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_initializer_list] = STATE(723), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_identifier] = ACTIONS(1690), + [anon_sym_COMMA] = ACTIONS(1367), + [anon_sym_RPAREN] = ACTIONS(1367), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_SLASH] = ACTIONS(1373), + [anon_sym_PERCENT] = ACTIONS(1367), + [anon_sym_PIPE_PIPE] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1367), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_EQ_EQ] = ACTIONS(1367), + [anon_sym_BANG_EQ] = ACTIONS(1367), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1367), + [anon_sym_LT_EQ] = ACTIONS(1367), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1367), + [anon_sym_GT_GT] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym___attribute__] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_COLON] = ACTIONS(1367), + [anon_sym_QMARK] = ACTIONS(1367), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1373), + [anon_sym_DASH_GT] = ACTIONS(1367), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [451] = { - [sym_else_clause] = STATE(220), - [sym_identifier] = ACTIONS(1106), - [anon_sym_LPAREN2] = ACTIONS(1108), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1108), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym___extension__] = ACTIONS(1106), - [anon_sym_typedef] = ACTIONS(1106), - [anon_sym_extern] = ACTIONS(1106), - [anon_sym___attribute__] = ACTIONS(1106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1108), - [anon_sym___declspec] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_signed] = ACTIONS(1106), - [anon_sym_unsigned] = ACTIONS(1106), - [anon_sym_long] = ACTIONS(1106), - [anon_sym_short] = ACTIONS(1106), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_auto] = ACTIONS(1106), - [anon_sym_register] = ACTIONS(1106), - [anon_sym_inline] = ACTIONS(1106), - [anon_sym___inline] = ACTIONS(1106), - [anon_sym___inline__] = ACTIONS(1106), - [anon_sym___forceinline] = ACTIONS(1106), - [anon_sym_thread_local] = ACTIONS(1106), - [anon_sym___thread] = ACTIONS(1106), - [anon_sym_const] = ACTIONS(1106), - [anon_sym_constexpr] = ACTIONS(1106), - [anon_sym_volatile] = ACTIONS(1106), - [anon_sym_restrict] = ACTIONS(1106), - [anon_sym___restrict__] = ACTIONS(1106), - [anon_sym__Atomic] = ACTIONS(1106), - [anon_sym__Noreturn] = ACTIONS(1106), - [anon_sym_noreturn] = ACTIONS(1106), - [sym_primitive_type] = ACTIONS(1106), - [anon_sym_enum] = ACTIONS(1106), - [anon_sym_struct] = ACTIONS(1106), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_if] = ACTIONS(1106), - [anon_sym_else] = ACTIONS(1695), - [anon_sym_switch] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1106), - [anon_sym_do] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(1106), - [anon_sym_return] = ACTIONS(1106), - [anon_sym_break] = ACTIONS(1106), - [anon_sym_continue] = ACTIONS(1106), - [anon_sym_goto] = ACTIONS(1106), - [anon_sym___try] = ACTIONS(1106), - [anon_sym___leave] = ACTIONS(1106), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_sizeof] = ACTIONS(1106), - [anon_sym___alignof__] = ACTIONS(1106), - [anon_sym___alignof] = ACTIONS(1106), - [anon_sym__alignof] = ACTIONS(1106), - [anon_sym_alignof] = ACTIONS(1106), - [anon_sym__Alignof] = ACTIONS(1106), - [anon_sym_offsetof] = ACTIONS(1106), - [anon_sym__Generic] = ACTIONS(1106), - [anon_sym_asm] = ACTIONS(1106), - [anon_sym___asm__] = ACTIONS(1106), - [sym_number_literal] = ACTIONS(1108), - [anon_sym_L_SQUOTE] = ACTIONS(1108), - [anon_sym_u_SQUOTE] = ACTIONS(1108), - [anon_sym_U_SQUOTE] = ACTIONS(1108), - [anon_sym_u8_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_L_DQUOTE] = ACTIONS(1108), - [anon_sym_u_DQUOTE] = ACTIONS(1108), - [anon_sym_U_DQUOTE] = ACTIONS(1108), - [anon_sym_u8_DQUOTE] = ACTIONS(1108), - [anon_sym_DQUOTE] = ACTIONS(1108), - [sym_true] = ACTIONS(1106), - [sym_false] = ACTIONS(1106), - [anon_sym_NULL] = ACTIONS(1106), - [anon_sym_nullptr] = ACTIONS(1106), + [sym__expression] = STATE(747), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(844), + [sym_initializer_list] = STATE(723), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(732), + [sym_null] = STATE(725), + [sym_identifier] = ACTIONS(1373), + [anon_sym_COMMA] = ACTIONS(1367), + [aux_sym_preproc_if_token2] = ACTIONS(1367), + [aux_sym_preproc_else_token1] = ACTIONS(1367), + [aux_sym_preproc_elif_token1] = ACTIONS(1373), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1367), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1367), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_SLASH] = ACTIONS(1373), + [anon_sym_PERCENT] = ACTIONS(1367), + [anon_sym_PIPE_PIPE] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1367), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_EQ_EQ] = ACTIONS(1367), + [anon_sym_BANG_EQ] = ACTIONS(1367), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1367), + [anon_sym_LT_EQ] = ACTIONS(1367), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1367), + [anon_sym_GT_GT] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_QMARK] = ACTIONS(1367), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(1696), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1373), + [anon_sym_DASH_GT] = ACTIONS(1367), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [452] = { - [sym_string_literal] = STATE(664), - [aux_sym_sized_type_specifier_repeat1] = STATE(810), - [sym_identifier] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_PERCENT] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1699), - [anon_sym_AMP_AMP] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_EQ] = ACTIONS(1699), - [anon_sym_LT_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym___extension__] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym___attribute__] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1710), - [anon_sym___declspec] = ACTIONS(1697), - [anon_sym___based] = ACTIONS(1697), - [anon_sym___cdecl] = ACTIONS(1697), - [anon_sym___clrcall] = ACTIONS(1697), - [anon_sym___stdcall] = ACTIONS(1697), - [anon_sym___fastcall] = ACTIONS(1697), - [anon_sym___thiscall] = ACTIONS(1697), - [anon_sym___vectorcall] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1712), - [anon_sym_unsigned] = ACTIONS(1712), - [anon_sym_long] = ACTIONS(1712), - [anon_sym_short] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_EQ] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym_inline] = ACTIONS(1697), - [anon_sym___inline] = ACTIONS(1697), - [anon_sym___inline__] = ACTIONS(1697), - [anon_sym___forceinline] = ACTIONS(1697), - [anon_sym_thread_local] = ACTIONS(1697), - [anon_sym___thread] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_constexpr] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_restrict] = ACTIONS(1697), - [anon_sym___restrict__] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [anon_sym__Noreturn] = ACTIONS(1697), - [anon_sym_noreturn] = ACTIONS(1697), - [anon_sym_COLON] = ACTIONS(1716), - [anon_sym_QMARK] = ACTIONS(1699), - [anon_sym_STAR_EQ] = ACTIONS(1718), - [anon_sym_SLASH_EQ] = ACTIONS(1718), - [anon_sym_PERCENT_EQ] = ACTIONS(1718), - [anon_sym_PLUS_EQ] = ACTIONS(1718), - [anon_sym_DASH_EQ] = ACTIONS(1718), - [anon_sym_LT_LT_EQ] = ACTIONS(1718), - [anon_sym_GT_GT_EQ] = ACTIONS(1718), - [anon_sym_AMP_EQ] = ACTIONS(1718), - [anon_sym_CARET_EQ] = ACTIONS(1718), - [anon_sym_PIPE_EQ] = ACTIONS(1718), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(1699), - [anon_sym_DASH_GT] = ACTIONS(1699), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), + [sym_else_clause] = STATE(306), + [sym_identifier] = ACTIONS(1117), + [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym___extension__] = ACTIONS(1117), + [anon_sym_typedef] = ACTIONS(1117), + [anon_sym_extern] = ACTIONS(1117), + [anon_sym___attribute__] = ACTIONS(1117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1119), + [anon_sym___declspec] = ACTIONS(1117), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_signed] = ACTIONS(1117), + [anon_sym_unsigned] = ACTIONS(1117), + [anon_sym_long] = ACTIONS(1117), + [anon_sym_short] = ACTIONS(1117), + [anon_sym_static] = ACTIONS(1117), + [anon_sym_auto] = ACTIONS(1117), + [anon_sym_register] = ACTIONS(1117), + [anon_sym_inline] = ACTIONS(1117), + [anon_sym___inline] = ACTIONS(1117), + [anon_sym___inline__] = ACTIONS(1117), + [anon_sym___forceinline] = ACTIONS(1117), + [anon_sym_thread_local] = ACTIONS(1117), + [anon_sym___thread] = ACTIONS(1117), + [anon_sym_const] = ACTIONS(1117), + [anon_sym_constexpr] = ACTIONS(1117), + [anon_sym_volatile] = ACTIONS(1117), + [anon_sym_restrict] = ACTIONS(1117), + [anon_sym___restrict__] = ACTIONS(1117), + [anon_sym__Atomic] = ACTIONS(1117), + [anon_sym__Noreturn] = ACTIONS(1117), + [anon_sym_noreturn] = ACTIONS(1117), + [anon_sym_alignas] = ACTIONS(1117), + [anon_sym__Alignas] = ACTIONS(1117), + [sym_primitive_type] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_union] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1698), + [anon_sym_switch] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_goto] = ACTIONS(1117), + [anon_sym___try] = ACTIONS(1117), + [anon_sym___leave] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_sizeof] = ACTIONS(1117), + [anon_sym___alignof__] = ACTIONS(1117), + [anon_sym___alignof] = ACTIONS(1117), + [anon_sym__alignof] = ACTIONS(1117), + [anon_sym_alignof] = ACTIONS(1117), + [anon_sym__Alignof] = ACTIONS(1117), + [anon_sym_offsetof] = ACTIONS(1117), + [anon_sym__Generic] = ACTIONS(1117), + [anon_sym_asm] = ACTIONS(1117), + [anon_sym___asm__] = ACTIONS(1117), + [sym_number_literal] = ACTIONS(1119), + [anon_sym_L_SQUOTE] = ACTIONS(1119), + [anon_sym_u_SQUOTE] = ACTIONS(1119), + [anon_sym_U_SQUOTE] = ACTIONS(1119), + [anon_sym_u8_SQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_L_DQUOTE] = ACTIONS(1119), + [anon_sym_u_DQUOTE] = ACTIONS(1119), + [anon_sym_U_DQUOTE] = ACTIONS(1119), + [anon_sym_u8_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [anon_sym_NULL] = ACTIONS(1117), + [anon_sym_nullptr] = ACTIONS(1117), [sym_comment] = ACTIONS(3), }, [453] = { - [sym_string_literal] = STATE(664), - [aux_sym_sized_type_specifier_repeat1] = STATE(810), - [sym_identifier] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_PERCENT] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1699), - [anon_sym_AMP_AMP] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_EQ] = ACTIONS(1699), - [anon_sym_LT_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym___extension__] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym___attribute__] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1710), - [anon_sym___declspec] = ACTIONS(1697), - [anon_sym___based] = ACTIONS(1697), - [anon_sym___cdecl] = ACTIONS(1697), - [anon_sym___clrcall] = ACTIONS(1697), - [anon_sym___stdcall] = ACTIONS(1697), - [anon_sym___fastcall] = ACTIONS(1697), - [anon_sym___thiscall] = ACTIONS(1697), - [anon_sym___vectorcall] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1712), - [anon_sym_unsigned] = ACTIONS(1712), - [anon_sym_long] = ACTIONS(1712), - [anon_sym_short] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_EQ] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym_inline] = ACTIONS(1697), - [anon_sym___inline] = ACTIONS(1697), - [anon_sym___inline__] = ACTIONS(1697), - [anon_sym___forceinline] = ACTIONS(1697), - [anon_sym_thread_local] = ACTIONS(1697), - [anon_sym___thread] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_constexpr] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_restrict] = ACTIONS(1697), - [anon_sym___restrict__] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [anon_sym__Noreturn] = ACTIONS(1697), - [anon_sym_noreturn] = ACTIONS(1697), - [anon_sym_COLON] = ACTIONS(1723), - [anon_sym_QMARK] = ACTIONS(1699), - [anon_sym_STAR_EQ] = ACTIONS(1718), - [anon_sym_SLASH_EQ] = ACTIONS(1718), - [anon_sym_PERCENT_EQ] = ACTIONS(1718), - [anon_sym_PLUS_EQ] = ACTIONS(1718), - [anon_sym_DASH_EQ] = ACTIONS(1718), - [anon_sym_LT_LT_EQ] = ACTIONS(1718), - [anon_sym_GT_GT_EQ] = ACTIONS(1718), - [anon_sym_AMP_EQ] = ACTIONS(1718), - [anon_sym_CARET_EQ] = ACTIONS(1718), - [anon_sym_PIPE_EQ] = ACTIONS(1718), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(1699), - [anon_sym_DASH_GT] = ACTIONS(1699), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), + [sym_string_literal] = STATE(670), + [aux_sym_sized_type_specifier_repeat1] = STATE(787), + [sym_identifier] = ACTIONS(1700), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_PERCENT] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_EQ_EQ] = ACTIONS(1702), + [anon_sym_BANG_EQ] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_GT_EQ] = ACTIONS(1702), + [anon_sym_LT_EQ] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym___extension__] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym___attribute__] = ACTIONS(1700), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), + [anon_sym___declspec] = ACTIONS(1700), + [anon_sym___based] = ACTIONS(1700), + [anon_sym___cdecl] = ACTIONS(1700), + [anon_sym___clrcall] = ACTIONS(1700), + [anon_sym___stdcall] = ACTIONS(1700), + [anon_sym___fastcall] = ACTIONS(1700), + [anon_sym___thiscall] = ACTIONS(1700), + [anon_sym___vectorcall] = ACTIONS(1700), + [anon_sym_signed] = ACTIONS(1715), + [anon_sym_unsigned] = ACTIONS(1715), + [anon_sym_long] = ACTIONS(1715), + [anon_sym_short] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_EQ] = ACTIONS(1717), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_inline] = ACTIONS(1700), + [anon_sym___inline] = ACTIONS(1700), + [anon_sym___inline__] = ACTIONS(1700), + [anon_sym___forceinline] = ACTIONS(1700), + [anon_sym_thread_local] = ACTIONS(1700), + [anon_sym___thread] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_constexpr] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym___restrict__] = ACTIONS(1700), + [anon_sym__Atomic] = ACTIONS(1700), + [anon_sym__Noreturn] = ACTIONS(1700), + [anon_sym_noreturn] = ACTIONS(1700), + [anon_sym_alignas] = ACTIONS(1700), + [anon_sym__Alignas] = ACTIONS(1700), + [anon_sym_COLON] = ACTIONS(1719), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_STAR_EQ] = ACTIONS(1721), + [anon_sym_SLASH_EQ] = ACTIONS(1721), + [anon_sym_PERCENT_EQ] = ACTIONS(1721), + [anon_sym_PLUS_EQ] = ACTIONS(1721), + [anon_sym_DASH_EQ] = ACTIONS(1721), + [anon_sym_LT_LT_EQ] = ACTIONS(1721), + [anon_sym_GT_GT_EQ] = ACTIONS(1721), + [anon_sym_AMP_EQ] = ACTIONS(1721), + [anon_sym_CARET_EQ] = ACTIONS(1721), + [anon_sym_PIPE_EQ] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_DOT] = ACTIONS(1702), + [anon_sym_DASH_GT] = ACTIONS(1702), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, [454] = { - [sym_string_literal] = STATE(664), - [aux_sym_sized_type_specifier_repeat1] = STATE(810), - [sym_identifier] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_PERCENT] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1699), - [anon_sym_AMP_AMP] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_EQ] = ACTIONS(1699), - [anon_sym_LT_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym___extension__] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym___attribute__] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1710), - [anon_sym___declspec] = ACTIONS(1697), - [anon_sym___based] = ACTIONS(1697), - [anon_sym___cdecl] = ACTIONS(1697), - [anon_sym___clrcall] = ACTIONS(1697), - [anon_sym___stdcall] = ACTIONS(1697), - [anon_sym___fastcall] = ACTIONS(1697), - [anon_sym___thiscall] = ACTIONS(1697), - [anon_sym___vectorcall] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1712), - [anon_sym_unsigned] = ACTIONS(1712), - [anon_sym_long] = ACTIONS(1712), - [anon_sym_short] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_EQ] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym_inline] = ACTIONS(1697), - [anon_sym___inline] = ACTIONS(1697), - [anon_sym___inline__] = ACTIONS(1697), - [anon_sym___forceinline] = ACTIONS(1697), - [anon_sym_thread_local] = ACTIONS(1697), - [anon_sym___thread] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_constexpr] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_restrict] = ACTIONS(1697), - [anon_sym___restrict__] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [anon_sym__Noreturn] = ACTIONS(1697), - [anon_sym_noreturn] = ACTIONS(1697), - [anon_sym_COLON] = ACTIONS(1716), - [anon_sym_QMARK] = ACTIONS(1699), - [anon_sym_STAR_EQ] = ACTIONS(1718), - [anon_sym_SLASH_EQ] = ACTIONS(1718), - [anon_sym_PERCENT_EQ] = ACTIONS(1718), - [anon_sym_PLUS_EQ] = ACTIONS(1718), - [anon_sym_DASH_EQ] = ACTIONS(1718), - [anon_sym_LT_LT_EQ] = ACTIONS(1718), - [anon_sym_GT_GT_EQ] = ACTIONS(1718), - [anon_sym_AMP_EQ] = ACTIONS(1718), - [anon_sym_CARET_EQ] = ACTIONS(1718), - [anon_sym_PIPE_EQ] = ACTIONS(1718), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(1699), - [anon_sym_DASH_GT] = ACTIONS(1699), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), + [sym_string_literal] = STATE(670), + [aux_sym_sized_type_specifier_repeat1] = STATE(787), + [sym_identifier] = ACTIONS(1700), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_PERCENT] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_EQ_EQ] = ACTIONS(1702), + [anon_sym_BANG_EQ] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_GT_EQ] = ACTIONS(1702), + [anon_sym_LT_EQ] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym___extension__] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym___attribute__] = ACTIONS(1700), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), + [anon_sym___declspec] = ACTIONS(1700), + [anon_sym___based] = ACTIONS(1700), + [anon_sym___cdecl] = ACTIONS(1700), + [anon_sym___clrcall] = ACTIONS(1700), + [anon_sym___stdcall] = ACTIONS(1700), + [anon_sym___fastcall] = ACTIONS(1700), + [anon_sym___thiscall] = ACTIONS(1700), + [anon_sym___vectorcall] = ACTIONS(1700), + [anon_sym_signed] = ACTIONS(1715), + [anon_sym_unsigned] = ACTIONS(1715), + [anon_sym_long] = ACTIONS(1715), + [anon_sym_short] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_EQ] = ACTIONS(1717), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_inline] = ACTIONS(1700), + [anon_sym___inline] = ACTIONS(1700), + [anon_sym___inline__] = ACTIONS(1700), + [anon_sym___forceinline] = ACTIONS(1700), + [anon_sym_thread_local] = ACTIONS(1700), + [anon_sym___thread] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_constexpr] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym___restrict__] = ACTIONS(1700), + [anon_sym__Atomic] = ACTIONS(1700), + [anon_sym__Noreturn] = ACTIONS(1700), + [anon_sym_noreturn] = ACTIONS(1700), + [anon_sym_alignas] = ACTIONS(1700), + [anon_sym__Alignas] = ACTIONS(1700), + [anon_sym_COLON] = ACTIONS(1726), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_STAR_EQ] = ACTIONS(1721), + [anon_sym_SLASH_EQ] = ACTIONS(1721), + [anon_sym_PERCENT_EQ] = ACTIONS(1721), + [anon_sym_PLUS_EQ] = ACTIONS(1721), + [anon_sym_DASH_EQ] = ACTIONS(1721), + [anon_sym_LT_LT_EQ] = ACTIONS(1721), + [anon_sym_GT_GT_EQ] = ACTIONS(1721), + [anon_sym_AMP_EQ] = ACTIONS(1721), + [anon_sym_CARET_EQ] = ACTIONS(1721), + [anon_sym_PIPE_EQ] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_DOT] = ACTIONS(1702), + [anon_sym_DASH_GT] = ACTIONS(1702), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, [455] = { - [sym_string_literal] = STATE(664), - [aux_sym_sized_type_specifier_repeat1] = STATE(810), - [sym_identifier] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_PERCENT] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1699), - [anon_sym_AMP_AMP] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_EQ] = ACTIONS(1699), - [anon_sym_LT_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym___extension__] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym___attribute__] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1710), - [anon_sym___declspec] = ACTIONS(1697), - [anon_sym___based] = ACTIONS(1697), - [anon_sym___cdecl] = ACTIONS(1697), - [anon_sym___clrcall] = ACTIONS(1697), - [anon_sym___stdcall] = ACTIONS(1697), - [anon_sym___fastcall] = ACTIONS(1697), - [anon_sym___thiscall] = ACTIONS(1697), - [anon_sym___vectorcall] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1712), - [anon_sym_unsigned] = ACTIONS(1712), - [anon_sym_long] = ACTIONS(1712), - [anon_sym_short] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_EQ] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym_inline] = ACTIONS(1697), - [anon_sym___inline] = ACTIONS(1697), - [anon_sym___inline__] = ACTIONS(1697), - [anon_sym___forceinline] = ACTIONS(1697), - [anon_sym_thread_local] = ACTIONS(1697), - [anon_sym___thread] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_constexpr] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_restrict] = ACTIONS(1697), - [anon_sym___restrict__] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [anon_sym__Noreturn] = ACTIONS(1697), - [anon_sym_noreturn] = ACTIONS(1697), - [anon_sym_COLON] = ACTIONS(1725), - [anon_sym_QMARK] = ACTIONS(1699), - [anon_sym_STAR_EQ] = ACTIONS(1718), - [anon_sym_SLASH_EQ] = ACTIONS(1718), - [anon_sym_PERCENT_EQ] = ACTIONS(1718), - [anon_sym_PLUS_EQ] = ACTIONS(1718), - [anon_sym_DASH_EQ] = ACTIONS(1718), - [anon_sym_LT_LT_EQ] = ACTIONS(1718), - [anon_sym_GT_GT_EQ] = ACTIONS(1718), - [anon_sym_AMP_EQ] = ACTIONS(1718), - [anon_sym_CARET_EQ] = ACTIONS(1718), - [anon_sym_PIPE_EQ] = ACTIONS(1718), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(1699), - [anon_sym_DASH_GT] = ACTIONS(1699), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), + [sym_identifier] = ACTIONS(1728), + [anon_sym_LPAREN2] = ACTIONS(1731), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1733), + [anon_sym_PLUS] = ACTIONS(1733), + [anon_sym_STAR] = ACTIONS(1731), + [anon_sym_AMP] = ACTIONS(1731), + [anon_sym_SEMI] = ACTIONS(1731), + [anon_sym___extension__] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym___attribute__] = ACTIONS(1735), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1737), + [anon_sym___declspec] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1731), + [anon_sym_signed] = ACTIONS(1735), + [anon_sym_unsigned] = ACTIONS(1735), + [anon_sym_long] = ACTIONS(1735), + [anon_sym_short] = ACTIONS(1735), + [anon_sym_static] = ACTIONS(1735), + [anon_sym_auto] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_inline] = ACTIONS(1735), + [anon_sym___inline] = ACTIONS(1735), + [anon_sym___inline__] = ACTIONS(1735), + [anon_sym___forceinline] = ACTIONS(1735), + [anon_sym_thread_local] = ACTIONS(1735), + [anon_sym___thread] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_constexpr] = ACTIONS(1735), + [anon_sym_volatile] = ACTIONS(1735), + [anon_sym_restrict] = ACTIONS(1735), + [anon_sym___restrict__] = ACTIONS(1735), + [anon_sym__Atomic] = ACTIONS(1735), + [anon_sym__Noreturn] = ACTIONS(1735), + [anon_sym_noreturn] = ACTIONS(1735), + [anon_sym_alignas] = ACTIONS(1735), + [anon_sym__Alignas] = ACTIONS(1735), + [sym_primitive_type] = ACTIONS(1735), + [anon_sym_enum] = ACTIONS(1735), + [anon_sym_struct] = ACTIONS(1735), + [anon_sym_union] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1733), + [anon_sym_switch] = ACTIONS(1733), + [anon_sym_case] = ACTIONS(1733), + [anon_sym_default] = ACTIONS(1733), + [anon_sym_while] = ACTIONS(1733), + [anon_sym_do] = ACTIONS(1733), + [anon_sym_for] = ACTIONS(1733), + [anon_sym_return] = ACTIONS(1733), + [anon_sym_break] = ACTIONS(1733), + [anon_sym_continue] = ACTIONS(1733), + [anon_sym_goto] = ACTIONS(1733), + [anon_sym___try] = ACTIONS(1733), + [anon_sym___leave] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1731), + [anon_sym_sizeof] = ACTIONS(1733), + [anon_sym___alignof__] = ACTIONS(1733), + [anon_sym___alignof] = ACTIONS(1733), + [anon_sym__alignof] = ACTIONS(1733), + [anon_sym_alignof] = ACTIONS(1733), + [anon_sym__Alignof] = ACTIONS(1733), + [anon_sym_offsetof] = ACTIONS(1733), + [anon_sym__Generic] = ACTIONS(1733), + [anon_sym_asm] = ACTIONS(1733), + [anon_sym___asm__] = ACTIONS(1733), + [sym_number_literal] = ACTIONS(1731), + [anon_sym_L_SQUOTE] = ACTIONS(1731), + [anon_sym_u_SQUOTE] = ACTIONS(1731), + [anon_sym_U_SQUOTE] = ACTIONS(1731), + [anon_sym_u8_SQUOTE] = ACTIONS(1731), + [anon_sym_SQUOTE] = ACTIONS(1731), + [anon_sym_L_DQUOTE] = ACTIONS(1731), + [anon_sym_u_DQUOTE] = ACTIONS(1731), + [anon_sym_U_DQUOTE] = ACTIONS(1731), + [anon_sym_u8_DQUOTE] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1731), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [anon_sym_NULL] = ACTIONS(1733), + [anon_sym_nullptr] = ACTIONS(1733), [sym_comment] = ACTIONS(3), }, [456] = { - [sym_identifier] = ACTIONS(1727), - [anon_sym_LPAREN2] = ACTIONS(1730), - [anon_sym_BANG] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1730), - [anon_sym___extension__] = ACTIONS(1734), - [anon_sym_extern] = ACTIONS(1734), - [anon_sym___attribute__] = ACTIONS(1734), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1736), - [anon_sym___declspec] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1730), - [anon_sym_signed] = ACTIONS(1734), - [anon_sym_unsigned] = ACTIONS(1734), - [anon_sym_long] = ACTIONS(1734), - [anon_sym_short] = ACTIONS(1734), - [anon_sym_static] = ACTIONS(1734), - [anon_sym_auto] = ACTIONS(1734), - [anon_sym_register] = ACTIONS(1734), - [anon_sym_inline] = ACTIONS(1734), - [anon_sym___inline] = ACTIONS(1734), - [anon_sym___inline__] = ACTIONS(1734), - [anon_sym___forceinline] = ACTIONS(1734), - [anon_sym_thread_local] = ACTIONS(1734), - [anon_sym___thread] = ACTIONS(1734), - [anon_sym_const] = ACTIONS(1734), - [anon_sym_constexpr] = ACTIONS(1734), - [anon_sym_volatile] = ACTIONS(1734), - [anon_sym_restrict] = ACTIONS(1734), - [anon_sym___restrict__] = ACTIONS(1734), - [anon_sym__Atomic] = ACTIONS(1734), - [anon_sym__Noreturn] = ACTIONS(1734), - [anon_sym_noreturn] = ACTIONS(1734), - [sym_primitive_type] = ACTIONS(1734), - [anon_sym_enum] = ACTIONS(1734), - [anon_sym_struct] = ACTIONS(1734), - [anon_sym_union] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_switch] = ACTIONS(1732), - [anon_sym_case] = ACTIONS(1732), - [anon_sym_default] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_do] = ACTIONS(1732), - [anon_sym_for] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_goto] = ACTIONS(1732), - [anon_sym___try] = ACTIONS(1732), - [anon_sym___leave] = ACTIONS(1732), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [anon_sym_PLUS_PLUS] = ACTIONS(1730), - [anon_sym_sizeof] = ACTIONS(1732), - [anon_sym___alignof__] = ACTIONS(1732), - [anon_sym___alignof] = ACTIONS(1732), - [anon_sym__alignof] = ACTIONS(1732), - [anon_sym_alignof] = ACTIONS(1732), - [anon_sym__Alignof] = ACTIONS(1732), - [anon_sym_offsetof] = ACTIONS(1732), - [anon_sym__Generic] = ACTIONS(1732), - [anon_sym_asm] = ACTIONS(1732), - [anon_sym___asm__] = ACTIONS(1732), - [sym_number_literal] = ACTIONS(1730), - [anon_sym_L_SQUOTE] = ACTIONS(1730), - [anon_sym_u_SQUOTE] = ACTIONS(1730), - [anon_sym_U_SQUOTE] = ACTIONS(1730), - [anon_sym_u8_SQUOTE] = ACTIONS(1730), - [anon_sym_SQUOTE] = ACTIONS(1730), - [anon_sym_L_DQUOTE] = ACTIONS(1730), - [anon_sym_u_DQUOTE] = ACTIONS(1730), - [anon_sym_U_DQUOTE] = ACTIONS(1730), - [anon_sym_u8_DQUOTE] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [sym_true] = ACTIONS(1732), - [sym_false] = ACTIONS(1732), - [anon_sym_NULL] = ACTIONS(1732), - [anon_sym_nullptr] = ACTIONS(1732), + [sym_string_literal] = STATE(670), + [aux_sym_sized_type_specifier_repeat1] = STATE(787), + [sym_identifier] = ACTIONS(1700), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_PERCENT] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_EQ_EQ] = ACTIONS(1702), + [anon_sym_BANG_EQ] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_GT_EQ] = ACTIONS(1702), + [anon_sym_LT_EQ] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym___extension__] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym___attribute__] = ACTIONS(1700), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), + [anon_sym___declspec] = ACTIONS(1700), + [anon_sym___based] = ACTIONS(1700), + [anon_sym___cdecl] = ACTIONS(1700), + [anon_sym___clrcall] = ACTIONS(1700), + [anon_sym___stdcall] = ACTIONS(1700), + [anon_sym___fastcall] = ACTIONS(1700), + [anon_sym___thiscall] = ACTIONS(1700), + [anon_sym___vectorcall] = ACTIONS(1700), + [anon_sym_signed] = ACTIONS(1715), + [anon_sym_unsigned] = ACTIONS(1715), + [anon_sym_long] = ACTIONS(1715), + [anon_sym_short] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_EQ] = ACTIONS(1717), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_inline] = ACTIONS(1700), + [anon_sym___inline] = ACTIONS(1700), + [anon_sym___inline__] = ACTIONS(1700), + [anon_sym___forceinline] = ACTIONS(1700), + [anon_sym_thread_local] = ACTIONS(1700), + [anon_sym___thread] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_constexpr] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym___restrict__] = ACTIONS(1700), + [anon_sym__Atomic] = ACTIONS(1700), + [anon_sym__Noreturn] = ACTIONS(1700), + [anon_sym_noreturn] = ACTIONS(1700), + [anon_sym_alignas] = ACTIONS(1700), + [anon_sym__Alignas] = ACTIONS(1700), + [anon_sym_COLON] = ACTIONS(1719), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_STAR_EQ] = ACTIONS(1721), + [anon_sym_SLASH_EQ] = ACTIONS(1721), + [anon_sym_PERCENT_EQ] = ACTIONS(1721), + [anon_sym_PLUS_EQ] = ACTIONS(1721), + [anon_sym_DASH_EQ] = ACTIONS(1721), + [anon_sym_LT_LT_EQ] = ACTIONS(1721), + [anon_sym_GT_GT_EQ] = ACTIONS(1721), + [anon_sym_AMP_EQ] = ACTIONS(1721), + [anon_sym_CARET_EQ] = ACTIONS(1721), + [anon_sym_PIPE_EQ] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_DOT] = ACTIONS(1702), + [anon_sym_DASH_GT] = ACTIONS(1702), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, [457] = { - [sym_string_literal] = STATE(664), - [aux_sym_sized_type_specifier_repeat1] = STATE(810), - [sym_identifier] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_PERCENT] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1699), - [anon_sym_AMP_AMP] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_EQ] = ACTIONS(1699), - [anon_sym_LT_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym___extension__] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym___attribute__] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1710), - [anon_sym___declspec] = ACTIONS(1697), - [anon_sym___based] = ACTIONS(1697), - [anon_sym___cdecl] = ACTIONS(1697), - [anon_sym___clrcall] = ACTIONS(1697), - [anon_sym___stdcall] = ACTIONS(1697), - [anon_sym___fastcall] = ACTIONS(1697), - [anon_sym___thiscall] = ACTIONS(1697), - [anon_sym___vectorcall] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1712), - [anon_sym_unsigned] = ACTIONS(1712), - [anon_sym_long] = ACTIONS(1712), - [anon_sym_short] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_EQ] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym_inline] = ACTIONS(1697), - [anon_sym___inline] = ACTIONS(1697), - [anon_sym___inline__] = ACTIONS(1697), - [anon_sym___forceinline] = ACTIONS(1697), - [anon_sym_thread_local] = ACTIONS(1697), - [anon_sym___thread] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_constexpr] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_restrict] = ACTIONS(1697), - [anon_sym___restrict__] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [anon_sym__Noreturn] = ACTIONS(1697), - [anon_sym_noreturn] = ACTIONS(1697), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_QMARK] = ACTIONS(1699), - [anon_sym_STAR_EQ] = ACTIONS(1718), - [anon_sym_SLASH_EQ] = ACTIONS(1718), - [anon_sym_PERCENT_EQ] = ACTIONS(1718), - [anon_sym_PLUS_EQ] = ACTIONS(1718), - [anon_sym_DASH_EQ] = ACTIONS(1718), - [anon_sym_LT_LT_EQ] = ACTIONS(1718), - [anon_sym_GT_GT_EQ] = ACTIONS(1718), - [anon_sym_AMP_EQ] = ACTIONS(1718), - [anon_sym_CARET_EQ] = ACTIONS(1718), - [anon_sym_PIPE_EQ] = ACTIONS(1718), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(1699), - [anon_sym_DASH_GT] = ACTIONS(1699), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), + [sym_string_literal] = STATE(670), + [aux_sym_sized_type_specifier_repeat1] = STATE(787), + [sym_identifier] = ACTIONS(1700), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_PERCENT] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_EQ_EQ] = ACTIONS(1702), + [anon_sym_BANG_EQ] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_GT_EQ] = ACTIONS(1702), + [anon_sym_LT_EQ] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym___extension__] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym___attribute__] = ACTIONS(1700), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), + [anon_sym___declspec] = ACTIONS(1700), + [anon_sym___based] = ACTIONS(1700), + [anon_sym___cdecl] = ACTIONS(1700), + [anon_sym___clrcall] = ACTIONS(1700), + [anon_sym___stdcall] = ACTIONS(1700), + [anon_sym___fastcall] = ACTIONS(1700), + [anon_sym___thiscall] = ACTIONS(1700), + [anon_sym___vectorcall] = ACTIONS(1700), + [anon_sym_signed] = ACTIONS(1715), + [anon_sym_unsigned] = ACTIONS(1715), + [anon_sym_long] = ACTIONS(1715), + [anon_sym_short] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_EQ] = ACTIONS(1717), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_inline] = ACTIONS(1700), + [anon_sym___inline] = ACTIONS(1700), + [anon_sym___inline__] = ACTIONS(1700), + [anon_sym___forceinline] = ACTIONS(1700), + [anon_sym_thread_local] = ACTIONS(1700), + [anon_sym___thread] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_constexpr] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym___restrict__] = ACTIONS(1700), + [anon_sym__Atomic] = ACTIONS(1700), + [anon_sym__Noreturn] = ACTIONS(1700), + [anon_sym_noreturn] = ACTIONS(1700), + [anon_sym_alignas] = ACTIONS(1700), + [anon_sym__Alignas] = ACTIONS(1700), + [anon_sym_COLON] = ACTIONS(1726), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_STAR_EQ] = ACTIONS(1721), + [anon_sym_SLASH_EQ] = ACTIONS(1721), + [anon_sym_PERCENT_EQ] = ACTIONS(1721), + [anon_sym_PLUS_EQ] = ACTIONS(1721), + [anon_sym_DASH_EQ] = ACTIONS(1721), + [anon_sym_LT_LT_EQ] = ACTIONS(1721), + [anon_sym_GT_GT_EQ] = ACTIONS(1721), + [anon_sym_AMP_EQ] = ACTIONS(1721), + [anon_sym_CARET_EQ] = ACTIONS(1721), + [anon_sym_PIPE_EQ] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_DOT] = ACTIONS(1702), + [anon_sym_DASH_GT] = ACTIONS(1702), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, [458] = { - [sym_string_literal] = STATE(664), - [aux_sym_sized_type_specifier_repeat1] = STATE(810), - [sym_identifier] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_PERCENT] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1699), - [anon_sym_AMP_AMP] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_EQ] = ACTIONS(1699), - [anon_sym_LT_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym___extension__] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym___attribute__] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1710), - [anon_sym___declspec] = ACTIONS(1697), - [anon_sym___based] = ACTIONS(1697), - [anon_sym___cdecl] = ACTIONS(1697), - [anon_sym___clrcall] = ACTIONS(1697), - [anon_sym___stdcall] = ACTIONS(1697), - [anon_sym___fastcall] = ACTIONS(1697), - [anon_sym___thiscall] = ACTIONS(1697), - [anon_sym___vectorcall] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1712), - [anon_sym_unsigned] = ACTIONS(1712), - [anon_sym_long] = ACTIONS(1712), - [anon_sym_short] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_EQ] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym_inline] = ACTIONS(1697), - [anon_sym___inline] = ACTIONS(1697), - [anon_sym___inline__] = ACTIONS(1697), - [anon_sym___forceinline] = ACTIONS(1697), - [anon_sym_thread_local] = ACTIONS(1697), - [anon_sym___thread] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_constexpr] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_restrict] = ACTIONS(1697), - [anon_sym___restrict__] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [anon_sym__Noreturn] = ACTIONS(1697), - [anon_sym_noreturn] = ACTIONS(1697), - [anon_sym_COLON] = ACTIONS(1739), - [anon_sym_QMARK] = ACTIONS(1699), - [anon_sym_STAR_EQ] = ACTIONS(1718), - [anon_sym_SLASH_EQ] = ACTIONS(1718), - [anon_sym_PERCENT_EQ] = ACTIONS(1718), - [anon_sym_PLUS_EQ] = ACTIONS(1718), - [anon_sym_DASH_EQ] = ACTIONS(1718), - [anon_sym_LT_LT_EQ] = ACTIONS(1718), - [anon_sym_GT_GT_EQ] = ACTIONS(1718), - [anon_sym_AMP_EQ] = ACTIONS(1718), - [anon_sym_CARET_EQ] = ACTIONS(1718), - [anon_sym_PIPE_EQ] = ACTIONS(1718), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(1699), - [anon_sym_DASH_GT] = ACTIONS(1699), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), + [sym_string_literal] = STATE(670), + [aux_sym_sized_type_specifier_repeat1] = STATE(787), + [sym_identifier] = ACTIONS(1700), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_PERCENT] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_EQ_EQ] = ACTIONS(1702), + [anon_sym_BANG_EQ] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_GT_EQ] = ACTIONS(1702), + [anon_sym_LT_EQ] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym___extension__] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym___attribute__] = ACTIONS(1700), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), + [anon_sym___declspec] = ACTIONS(1700), + [anon_sym___based] = ACTIONS(1700), + [anon_sym___cdecl] = ACTIONS(1700), + [anon_sym___clrcall] = ACTIONS(1700), + [anon_sym___stdcall] = ACTIONS(1700), + [anon_sym___fastcall] = ACTIONS(1700), + [anon_sym___thiscall] = ACTIONS(1700), + [anon_sym___vectorcall] = ACTIONS(1700), + [anon_sym_signed] = ACTIONS(1715), + [anon_sym_unsigned] = ACTIONS(1715), + [anon_sym_long] = ACTIONS(1715), + [anon_sym_short] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_EQ] = ACTIONS(1717), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_inline] = ACTIONS(1700), + [anon_sym___inline] = ACTIONS(1700), + [anon_sym___inline__] = ACTIONS(1700), + [anon_sym___forceinline] = ACTIONS(1700), + [anon_sym_thread_local] = ACTIONS(1700), + [anon_sym___thread] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_constexpr] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym___restrict__] = ACTIONS(1700), + [anon_sym__Atomic] = ACTIONS(1700), + [anon_sym__Noreturn] = ACTIONS(1700), + [anon_sym_noreturn] = ACTIONS(1700), + [anon_sym_alignas] = ACTIONS(1700), + [anon_sym__Alignas] = ACTIONS(1700), + [anon_sym_COLON] = ACTIONS(1740), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_STAR_EQ] = ACTIONS(1721), + [anon_sym_SLASH_EQ] = ACTIONS(1721), + [anon_sym_PERCENT_EQ] = ACTIONS(1721), + [anon_sym_PLUS_EQ] = ACTIONS(1721), + [anon_sym_DASH_EQ] = ACTIONS(1721), + [anon_sym_LT_LT_EQ] = ACTIONS(1721), + [anon_sym_GT_GT_EQ] = ACTIONS(1721), + [anon_sym_AMP_EQ] = ACTIONS(1721), + [anon_sym_CARET_EQ] = ACTIONS(1721), + [anon_sym_PIPE_EQ] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_DOT] = ACTIONS(1702), + [anon_sym_DASH_GT] = ACTIONS(1702), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, [459] = { - [sym_string_literal] = STATE(664), - [aux_sym_sized_type_specifier_repeat1] = STATE(810), - [sym_identifier] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_PERCENT] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1699), - [anon_sym_AMP_AMP] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_EQ] = ACTIONS(1699), - [anon_sym_LT_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym___extension__] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym___attribute__] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1710), - [anon_sym___declspec] = ACTIONS(1697), - [anon_sym___based] = ACTIONS(1697), - [anon_sym___cdecl] = ACTIONS(1697), - [anon_sym___clrcall] = ACTIONS(1697), - [anon_sym___stdcall] = ACTIONS(1697), - [anon_sym___fastcall] = ACTIONS(1697), - [anon_sym___thiscall] = ACTIONS(1697), - [anon_sym___vectorcall] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1712), - [anon_sym_unsigned] = ACTIONS(1712), - [anon_sym_long] = ACTIONS(1712), - [anon_sym_short] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_EQ] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym_inline] = ACTIONS(1697), - [anon_sym___inline] = ACTIONS(1697), - [anon_sym___inline__] = ACTIONS(1697), - [anon_sym___forceinline] = ACTIONS(1697), - [anon_sym_thread_local] = ACTIONS(1697), - [anon_sym___thread] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_constexpr] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_restrict] = ACTIONS(1697), - [anon_sym___restrict__] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [anon_sym__Noreturn] = ACTIONS(1697), - [anon_sym_noreturn] = ACTIONS(1697), - [anon_sym_COLON] = ACTIONS(1723), - [anon_sym_QMARK] = ACTIONS(1699), - [anon_sym_STAR_EQ] = ACTIONS(1718), - [anon_sym_SLASH_EQ] = ACTIONS(1718), - [anon_sym_PERCENT_EQ] = ACTIONS(1718), - [anon_sym_PLUS_EQ] = ACTIONS(1718), - [anon_sym_DASH_EQ] = ACTIONS(1718), - [anon_sym_LT_LT_EQ] = ACTIONS(1718), - [anon_sym_GT_GT_EQ] = ACTIONS(1718), - [anon_sym_AMP_EQ] = ACTIONS(1718), - [anon_sym_CARET_EQ] = ACTIONS(1718), - [anon_sym_PIPE_EQ] = ACTIONS(1718), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(1699), - [anon_sym_DASH_GT] = ACTIONS(1699), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), + [sym_string_literal] = STATE(670), + [aux_sym_sized_type_specifier_repeat1] = STATE(787), + [sym_identifier] = ACTIONS(1700), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_PERCENT] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_EQ_EQ] = ACTIONS(1702), + [anon_sym_BANG_EQ] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_GT_EQ] = ACTIONS(1702), + [anon_sym_LT_EQ] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym___extension__] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym___attribute__] = ACTIONS(1700), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), + [anon_sym___declspec] = ACTIONS(1700), + [anon_sym___based] = ACTIONS(1700), + [anon_sym___cdecl] = ACTIONS(1700), + [anon_sym___clrcall] = ACTIONS(1700), + [anon_sym___stdcall] = ACTIONS(1700), + [anon_sym___fastcall] = ACTIONS(1700), + [anon_sym___thiscall] = ACTIONS(1700), + [anon_sym___vectorcall] = ACTIONS(1700), + [anon_sym_signed] = ACTIONS(1715), + [anon_sym_unsigned] = ACTIONS(1715), + [anon_sym_long] = ACTIONS(1715), + [anon_sym_short] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_EQ] = ACTIONS(1717), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_inline] = ACTIONS(1700), + [anon_sym___inline] = ACTIONS(1700), + [anon_sym___inline__] = ACTIONS(1700), + [anon_sym___forceinline] = ACTIONS(1700), + [anon_sym_thread_local] = ACTIONS(1700), + [anon_sym___thread] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_constexpr] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym___restrict__] = ACTIONS(1700), + [anon_sym__Atomic] = ACTIONS(1700), + [anon_sym__Noreturn] = ACTIONS(1700), + [anon_sym_noreturn] = ACTIONS(1700), + [anon_sym_alignas] = ACTIONS(1700), + [anon_sym__Alignas] = ACTIONS(1700), + [anon_sym_COLON] = ACTIONS(1740), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_STAR_EQ] = ACTIONS(1721), + [anon_sym_SLASH_EQ] = ACTIONS(1721), + [anon_sym_PERCENT_EQ] = ACTIONS(1721), + [anon_sym_PLUS_EQ] = ACTIONS(1721), + [anon_sym_DASH_EQ] = ACTIONS(1721), + [anon_sym_LT_LT_EQ] = ACTIONS(1721), + [anon_sym_GT_GT_EQ] = ACTIONS(1721), + [anon_sym_AMP_EQ] = ACTIONS(1721), + [anon_sym_CARET_EQ] = ACTIONS(1721), + [anon_sym_PIPE_EQ] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_DOT] = ACTIONS(1702), + [anon_sym_DASH_GT] = ACTIONS(1702), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, [460] = { - [sym_string_literal] = STATE(664), - [aux_sym_sized_type_specifier_repeat1] = STATE(810), - [sym_identifier] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_PERCENT] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1699), - [anon_sym_AMP_AMP] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_EQ] = ACTIONS(1699), - [anon_sym_LT_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym___extension__] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym___attribute__] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1710), - [anon_sym___declspec] = ACTIONS(1697), - [anon_sym___based] = ACTIONS(1697), - [anon_sym___cdecl] = ACTIONS(1697), - [anon_sym___clrcall] = ACTIONS(1697), - [anon_sym___stdcall] = ACTIONS(1697), - [anon_sym___fastcall] = ACTIONS(1697), - [anon_sym___thiscall] = ACTIONS(1697), - [anon_sym___vectorcall] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1712), - [anon_sym_unsigned] = ACTIONS(1712), - [anon_sym_long] = ACTIONS(1712), - [anon_sym_short] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_EQ] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym_inline] = ACTIONS(1697), - [anon_sym___inline] = ACTIONS(1697), - [anon_sym___inline__] = ACTIONS(1697), - [anon_sym___forceinline] = ACTIONS(1697), - [anon_sym_thread_local] = ACTIONS(1697), - [anon_sym___thread] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_constexpr] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_restrict] = ACTIONS(1697), - [anon_sym___restrict__] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [anon_sym__Noreturn] = ACTIONS(1697), - [anon_sym_noreturn] = ACTIONS(1697), - [anon_sym_COLON] = ACTIONS(1741), - [anon_sym_QMARK] = ACTIONS(1699), - [anon_sym_STAR_EQ] = ACTIONS(1718), - [anon_sym_SLASH_EQ] = ACTIONS(1718), - [anon_sym_PERCENT_EQ] = ACTIONS(1718), - [anon_sym_PLUS_EQ] = ACTIONS(1718), - [anon_sym_DASH_EQ] = ACTIONS(1718), - [anon_sym_LT_LT_EQ] = ACTIONS(1718), - [anon_sym_GT_GT_EQ] = ACTIONS(1718), - [anon_sym_AMP_EQ] = ACTIONS(1718), - [anon_sym_CARET_EQ] = ACTIONS(1718), - [anon_sym_PIPE_EQ] = ACTIONS(1718), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(1699), - [anon_sym_DASH_GT] = ACTIONS(1699), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), + [sym_string_literal] = STATE(670), + [aux_sym_sized_type_specifier_repeat1] = STATE(787), + [sym_identifier] = ACTIONS(1700), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_PERCENT] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_EQ_EQ] = ACTIONS(1702), + [anon_sym_BANG_EQ] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_GT_EQ] = ACTIONS(1702), + [anon_sym_LT_EQ] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym___extension__] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym___attribute__] = ACTIONS(1700), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), + [anon_sym___declspec] = ACTIONS(1700), + [anon_sym___based] = ACTIONS(1700), + [anon_sym___cdecl] = ACTIONS(1700), + [anon_sym___clrcall] = ACTIONS(1700), + [anon_sym___stdcall] = ACTIONS(1700), + [anon_sym___fastcall] = ACTIONS(1700), + [anon_sym___thiscall] = ACTIONS(1700), + [anon_sym___vectorcall] = ACTIONS(1700), + [anon_sym_signed] = ACTIONS(1715), + [anon_sym_unsigned] = ACTIONS(1715), + [anon_sym_long] = ACTIONS(1715), + [anon_sym_short] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_EQ] = ACTIONS(1717), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_inline] = ACTIONS(1700), + [anon_sym___inline] = ACTIONS(1700), + [anon_sym___inline__] = ACTIONS(1700), + [anon_sym___forceinline] = ACTIONS(1700), + [anon_sym_thread_local] = ACTIONS(1700), + [anon_sym___thread] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_constexpr] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym___restrict__] = ACTIONS(1700), + [anon_sym__Atomic] = ACTIONS(1700), + [anon_sym__Noreturn] = ACTIONS(1700), + [anon_sym_noreturn] = ACTIONS(1700), + [anon_sym_alignas] = ACTIONS(1700), + [anon_sym__Alignas] = ACTIONS(1700), + [anon_sym_COLON] = ACTIONS(1742), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_STAR_EQ] = ACTIONS(1721), + [anon_sym_SLASH_EQ] = ACTIONS(1721), + [anon_sym_PERCENT_EQ] = ACTIONS(1721), + [anon_sym_PLUS_EQ] = ACTIONS(1721), + [anon_sym_DASH_EQ] = ACTIONS(1721), + [anon_sym_LT_LT_EQ] = ACTIONS(1721), + [anon_sym_GT_GT_EQ] = ACTIONS(1721), + [anon_sym_AMP_EQ] = ACTIONS(1721), + [anon_sym_CARET_EQ] = ACTIONS(1721), + [anon_sym_PIPE_EQ] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_DOT] = ACTIONS(1702), + [anon_sym_DASH_GT] = ACTIONS(1702), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, [461] = { - [sym_string_literal] = STATE(664), - [aux_sym_sized_type_specifier_repeat1] = STATE(810), - [sym_identifier] = ACTIONS(1697), - [anon_sym_COMMA] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_PERCENT] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1699), - [anon_sym_AMP_AMP] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_EQ] = ACTIONS(1699), - [anon_sym_LT_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym___extension__] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym___attribute__] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1710), - [anon_sym___declspec] = ACTIONS(1697), - [anon_sym___based] = ACTIONS(1697), - [anon_sym___cdecl] = ACTIONS(1697), - [anon_sym___clrcall] = ACTIONS(1697), - [anon_sym___stdcall] = ACTIONS(1697), - [anon_sym___fastcall] = ACTIONS(1697), - [anon_sym___thiscall] = ACTIONS(1697), - [anon_sym___vectorcall] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1712), - [anon_sym_unsigned] = ACTIONS(1712), - [anon_sym_long] = ACTIONS(1712), - [anon_sym_short] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_EQ] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym_inline] = ACTIONS(1697), - [anon_sym___inline] = ACTIONS(1697), - [anon_sym___inline__] = ACTIONS(1697), - [anon_sym___forceinline] = ACTIONS(1697), - [anon_sym_thread_local] = ACTIONS(1697), - [anon_sym___thread] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_constexpr] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_restrict] = ACTIONS(1697), - [anon_sym___restrict__] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [anon_sym__Noreturn] = ACTIONS(1697), - [anon_sym_noreturn] = ACTIONS(1697), - [anon_sym_QMARK] = ACTIONS(1699), - [anon_sym_STAR_EQ] = ACTIONS(1718), - [anon_sym_SLASH_EQ] = ACTIONS(1718), - [anon_sym_PERCENT_EQ] = ACTIONS(1718), - [anon_sym_PLUS_EQ] = ACTIONS(1718), - [anon_sym_DASH_EQ] = ACTIONS(1718), - [anon_sym_LT_LT_EQ] = ACTIONS(1718), - [anon_sym_GT_GT_EQ] = ACTIONS(1718), - [anon_sym_AMP_EQ] = ACTIONS(1718), - [anon_sym_CARET_EQ] = ACTIONS(1718), - [anon_sym_PIPE_EQ] = ACTIONS(1718), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(1699), - [anon_sym_DASH_GT] = ACTIONS(1699), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), + [sym_string_literal] = STATE(670), + [aux_sym_sized_type_specifier_repeat1] = STATE(787), + [sym_identifier] = ACTIONS(1700), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_PERCENT] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_EQ_EQ] = ACTIONS(1702), + [anon_sym_BANG_EQ] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_GT_EQ] = ACTIONS(1702), + [anon_sym_LT_EQ] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym___extension__] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym___attribute__] = ACTIONS(1700), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), + [anon_sym___declspec] = ACTIONS(1700), + [anon_sym___based] = ACTIONS(1700), + [anon_sym___cdecl] = ACTIONS(1700), + [anon_sym___clrcall] = ACTIONS(1700), + [anon_sym___stdcall] = ACTIONS(1700), + [anon_sym___fastcall] = ACTIONS(1700), + [anon_sym___thiscall] = ACTIONS(1700), + [anon_sym___vectorcall] = ACTIONS(1700), + [anon_sym_signed] = ACTIONS(1715), + [anon_sym_unsigned] = ACTIONS(1715), + [anon_sym_long] = ACTIONS(1715), + [anon_sym_short] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_EQ] = ACTIONS(1717), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_inline] = ACTIONS(1700), + [anon_sym___inline] = ACTIONS(1700), + [anon_sym___inline__] = ACTIONS(1700), + [anon_sym___forceinline] = ACTIONS(1700), + [anon_sym_thread_local] = ACTIONS(1700), + [anon_sym___thread] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_constexpr] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym___restrict__] = ACTIONS(1700), + [anon_sym__Atomic] = ACTIONS(1700), + [anon_sym__Noreturn] = ACTIONS(1700), + [anon_sym_noreturn] = ACTIONS(1700), + [anon_sym_alignas] = ACTIONS(1700), + [anon_sym__Alignas] = ACTIONS(1700), + [anon_sym_COLON] = ACTIONS(1744), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_STAR_EQ] = ACTIONS(1721), + [anon_sym_SLASH_EQ] = ACTIONS(1721), + [anon_sym_PERCENT_EQ] = ACTIONS(1721), + [anon_sym_PLUS_EQ] = ACTIONS(1721), + [anon_sym_DASH_EQ] = ACTIONS(1721), + [anon_sym_LT_LT_EQ] = ACTIONS(1721), + [anon_sym_GT_GT_EQ] = ACTIONS(1721), + [anon_sym_AMP_EQ] = ACTIONS(1721), + [anon_sym_CARET_EQ] = ACTIONS(1721), + [anon_sym_PIPE_EQ] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_DOT] = ACTIONS(1702), + [anon_sym_DASH_GT] = ACTIONS(1702), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, [462] = { - [sym_string_literal] = STATE(664), - [aux_sym_sized_type_specifier_repeat1] = STATE(810), - [sym_identifier] = ACTIONS(1697), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_PERCENT] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1699), - [anon_sym_AMP_AMP] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_GT_EQ] = ACTIONS(1699), - [anon_sym_LT_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym___extension__] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym___attribute__] = ACTIONS(1697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1710), - [anon_sym___declspec] = ACTIONS(1697), - [anon_sym___based] = ACTIONS(1697), - [anon_sym___cdecl] = ACTIONS(1697), - [anon_sym___clrcall] = ACTIONS(1697), - [anon_sym___stdcall] = ACTIONS(1697), - [anon_sym___fastcall] = ACTIONS(1697), - [anon_sym___thiscall] = ACTIONS(1697), - [anon_sym___vectorcall] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1712), - [anon_sym_unsigned] = ACTIONS(1712), - [anon_sym_long] = ACTIONS(1712), - [anon_sym_short] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_EQ] = ACTIONS(1714), - [anon_sym_auto] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym_inline] = ACTIONS(1697), - [anon_sym___inline] = ACTIONS(1697), - [anon_sym___inline__] = ACTIONS(1697), - [anon_sym___forceinline] = ACTIONS(1697), - [anon_sym_thread_local] = ACTIONS(1697), - [anon_sym___thread] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_constexpr] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_restrict] = ACTIONS(1697), - [anon_sym___restrict__] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [anon_sym__Noreturn] = ACTIONS(1697), - [anon_sym_noreturn] = ACTIONS(1697), - [anon_sym_COLON] = ACTIONS(1725), - [anon_sym_QMARK] = ACTIONS(1699), - [anon_sym_STAR_EQ] = ACTIONS(1718), - [anon_sym_SLASH_EQ] = ACTIONS(1718), - [anon_sym_PERCENT_EQ] = ACTIONS(1718), - [anon_sym_PLUS_EQ] = ACTIONS(1718), - [anon_sym_DASH_EQ] = ACTIONS(1718), - [anon_sym_LT_LT_EQ] = ACTIONS(1718), - [anon_sym_GT_GT_EQ] = ACTIONS(1718), - [anon_sym_AMP_EQ] = ACTIONS(1718), - [anon_sym_CARET_EQ] = ACTIONS(1718), - [anon_sym_PIPE_EQ] = ACTIONS(1718), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(1699), - [anon_sym_DASH_GT] = ACTIONS(1699), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), + [sym__expression] = STATE(880), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(941), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(941), + [sym_call_expression] = STATE(941), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(941), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(941), + [sym_initializer_list] = STATE(723), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [sym_identifier] = ACTIONS(1746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1367), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1748), + [anon_sym_TILDE] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_SLASH] = ACTIONS(1373), + [anon_sym_PERCENT] = ACTIONS(1367), + [anon_sym_PIPE_PIPE] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1367), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_EQ_EQ] = ACTIONS(1367), + [anon_sym_BANG_EQ] = ACTIONS(1367), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1367), + [anon_sym_LT_EQ] = ACTIONS(1367), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1367), + [anon_sym_GT_GT] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_RBRACK] = ACTIONS(1367), + [anon_sym_QMARK] = ACTIONS(1367), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(1752), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1373), + [anon_sym_DASH_GT] = ACTIONS(1367), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [463] = { - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1184), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_based_modifier] = STATE(1803), - [sym_ms_call_modifier] = STATE(1275), - [sym__declarator] = STATE(1421), - [sym__abstract_declarator] = STATE(1523), - [sym_parenthesized_declarator] = STATE(1354), - [sym_abstract_parenthesized_declarator] = STATE(1487), - [sym_attributed_declarator] = STATE(1354), - [sym_pointer_declarator] = STATE(1354), - [sym_abstract_pointer_declarator] = STATE(1487), - [sym_function_declarator] = STATE(1354), - [sym_abstract_function_declarator] = STATE(1487), - [sym_array_declarator] = STATE(1354), - [sym_abstract_array_declarator] = STATE(1487), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_string_literal] = STATE(670), + [aux_sym_sized_type_specifier_repeat1] = STATE(787), + [sym_identifier] = ACTIONS(1700), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_PERCENT] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_EQ_EQ] = ACTIONS(1702), + [anon_sym_BANG_EQ] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_GT_EQ] = ACTIONS(1702), + [anon_sym_LT_EQ] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym___extension__] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym___attribute__] = ACTIONS(1700), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), + [anon_sym___declspec] = ACTIONS(1700), + [anon_sym___based] = ACTIONS(1700), + [anon_sym___cdecl] = ACTIONS(1700), + [anon_sym___clrcall] = ACTIONS(1700), + [anon_sym___stdcall] = ACTIONS(1700), + [anon_sym___fastcall] = ACTIONS(1700), + [anon_sym___thiscall] = ACTIONS(1700), + [anon_sym___vectorcall] = ACTIONS(1700), + [anon_sym_signed] = ACTIONS(1715), + [anon_sym_unsigned] = ACTIONS(1715), + [anon_sym_long] = ACTIONS(1715), + [anon_sym_short] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_EQ] = ACTIONS(1717), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_inline] = ACTIONS(1700), + [anon_sym___inline] = ACTIONS(1700), + [anon_sym___inline__] = ACTIONS(1700), + [anon_sym___forceinline] = ACTIONS(1700), + [anon_sym_thread_local] = ACTIONS(1700), + [anon_sym___thread] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_constexpr] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym___restrict__] = ACTIONS(1700), + [anon_sym__Atomic] = ACTIONS(1700), + [anon_sym__Noreturn] = ACTIONS(1700), + [anon_sym_noreturn] = ACTIONS(1700), + [anon_sym_alignas] = ACTIONS(1700), + [anon_sym__Alignas] = ACTIONS(1700), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_STAR_EQ] = ACTIONS(1721), + [anon_sym_SLASH_EQ] = ACTIONS(1721), + [anon_sym_PERCENT_EQ] = ACTIONS(1721), + [anon_sym_PLUS_EQ] = ACTIONS(1721), + [anon_sym_DASH_EQ] = ACTIONS(1721), + [anon_sym_LT_LT_EQ] = ACTIONS(1721), + [anon_sym_GT_GT_EQ] = ACTIONS(1721), + [anon_sym_AMP_EQ] = ACTIONS(1721), + [anon_sym_CARET_EQ] = ACTIONS(1721), + [anon_sym_PIPE_EQ] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_DOT] = ACTIONS(1702), + [anon_sym_DASH_GT] = ACTIONS(1702), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [464] = { + [sym_string_literal] = STATE(670), + [aux_sym_sized_type_specifier_repeat1] = STATE(787), + [sym_identifier] = ACTIONS(1700), + [anon_sym_LPAREN2] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_PERCENT] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1702), + [anon_sym_AMP_AMP] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_EQ_EQ] = ACTIONS(1702), + [anon_sym_BANG_EQ] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_GT_EQ] = ACTIONS(1702), + [anon_sym_LT_EQ] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_LT] = ACTIONS(1708), + [anon_sym_GT_GT] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym___extension__] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym___attribute__] = ACTIONS(1700), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1713), + [anon_sym___declspec] = ACTIONS(1700), + [anon_sym___based] = ACTIONS(1700), + [anon_sym___cdecl] = ACTIONS(1700), + [anon_sym___clrcall] = ACTIONS(1700), + [anon_sym___stdcall] = ACTIONS(1700), + [anon_sym___fastcall] = ACTIONS(1700), + [anon_sym___thiscall] = ACTIONS(1700), + [anon_sym___vectorcall] = ACTIONS(1700), + [anon_sym_signed] = ACTIONS(1715), + [anon_sym_unsigned] = ACTIONS(1715), + [anon_sym_long] = ACTIONS(1715), + [anon_sym_short] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_EQ] = ACTIONS(1717), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_inline] = ACTIONS(1700), + [anon_sym___inline] = ACTIONS(1700), + [anon_sym___inline__] = ACTIONS(1700), + [anon_sym___forceinline] = ACTIONS(1700), + [anon_sym_thread_local] = ACTIONS(1700), + [anon_sym___thread] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_constexpr] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym___restrict__] = ACTIONS(1700), + [anon_sym__Atomic] = ACTIONS(1700), + [anon_sym__Noreturn] = ACTIONS(1700), + [anon_sym_noreturn] = ACTIONS(1700), + [anon_sym_alignas] = ACTIONS(1700), + [anon_sym__Alignas] = ACTIONS(1700), + [anon_sym_COLON] = ACTIONS(1744), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_STAR_EQ] = ACTIONS(1721), + [anon_sym_SLASH_EQ] = ACTIONS(1721), + [anon_sym_PERCENT_EQ] = ACTIONS(1721), + [anon_sym_PLUS_EQ] = ACTIONS(1721), + [anon_sym_DASH_EQ] = ACTIONS(1721), + [anon_sym_LT_LT_EQ] = ACTIONS(1721), + [anon_sym_GT_GT_EQ] = ACTIONS(1721), + [anon_sym_AMP_EQ] = ACTIONS(1721), + [anon_sym_CARET_EQ] = ACTIONS(1721), + [anon_sym_PIPE_EQ] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_DOT] = ACTIONS(1702), + [anon_sym_DASH_GT] = ACTIONS(1702), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [465] = { + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1182), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_based_modifier] = STATE(1943), + [sym_ms_call_modifier] = STATE(1279), + [sym__declarator] = STATE(1434), + [sym__abstract_declarator] = STATE(1563), + [sym_parenthesized_declarator] = STATE(1371), + [sym_abstract_parenthesized_declarator] = STATE(1495), + [sym_attributed_declarator] = STATE(1371), + [sym_pointer_declarator] = STATE(1371), + [sym_abstract_pointer_declarator] = STATE(1495), + [sym_function_declarator] = STATE(1371), + [sym_abstract_function_declarator] = STATE(1495), + [sym_array_declarator] = STATE(1371), + [sym_abstract_array_declarator] = STATE(1495), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_variadic_parameter] = STATE(1670), - [sym_parameter_list] = STATE(1488), + [sym_parameter_list] = STATE(1494), [sym_parameter_declaration] = STATE(1670), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1745), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_LPAREN2] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1751), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1754), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1758), + [anon_sym_LPAREN2] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1762), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___based] = ACTIONS(1753), + [anon_sym___based] = ACTIONS(1764), [anon_sym___cdecl] = ACTIONS(39), [anon_sym___clrcall] = ACTIONS(39), [anon_sym___stdcall] = ACTIONS(39), @@ -61336,7 +62498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), [anon_sym_short] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(1755), + [anon_sym_LBRACK] = ACTIONS(1766), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), [anon_sym_register] = ACTIONS(45), @@ -61354,1011 +62516,900 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [sym_comment] = ACTIONS(3), - }, - [464] = { - [sym_type_qualifier] = STATE(739), - [sym__expression] = STATE(1092), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(894), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(894), - [sym_call_expression] = STATE(894), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(894), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(894), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_array_declarator_repeat1] = STATE(739), - [sym_identifier] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1691), - [anon_sym_TILDE] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1765), - [anon_sym_RBRACK] = ACTIONS(1767), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_constexpr] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym___restrict__] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym__Noreturn] = ACTIONS(1763), - [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_sizeof] = ACTIONS(1693), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [465] = { - [sym_type_qualifier] = STATE(469), - [sym__expression] = STATE(1113), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(894), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(894), - [sym_call_expression] = STATE(894), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(894), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(894), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_array_declarator_repeat1] = STATE(469), - [sym_identifier] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1691), - [anon_sym_TILDE] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1771), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1773), - [anon_sym_RBRACK] = ACTIONS(1775), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_constexpr] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym___restrict__] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym__Noreturn] = ACTIONS(1763), - [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_sizeof] = ACTIONS(1693), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, [466] = { - [sym_type_qualifier] = STATE(739), - [sym__expression] = STATE(1086), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(894), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(894), - [sym_call_expression] = STATE(894), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(894), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(894), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_array_declarator_repeat1] = STATE(739), - [sym_identifier] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1691), - [anon_sym_TILDE] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1765), - [anon_sym_RBRACK] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_constexpr] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym___restrict__] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym__Noreturn] = ACTIONS(1763), - [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_sizeof] = ACTIONS(1693), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_type_qualifier] = STATE(475), + [sym_alignas_qualifier] = STATE(751), + [sym__expression] = STATE(1115), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(941), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(941), + [sym_call_expression] = STATE(941), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(941), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(941), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_array_declarator_repeat1] = STATE(475), + [sym_identifier] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym___extension__] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1778), + [anon_sym_const] = ACTIONS(1774), + [anon_sym_constexpr] = ACTIONS(1774), + [anon_sym_volatile] = ACTIONS(1774), + [anon_sym_restrict] = ACTIONS(1774), + [anon_sym___restrict__] = ACTIONS(1774), + [anon_sym__Atomic] = ACTIONS(1774), + [anon_sym__Noreturn] = ACTIONS(1774), + [anon_sym_noreturn] = ACTIONS(1774), + [anon_sym_alignas] = ACTIONS(1780), + [anon_sym__Alignas] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1752), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [467] = { - [sym_type_qualifier] = STATE(739), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(894), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(894), - [sym_call_expression] = STATE(894), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(894), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(894), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_array_declarator_repeat1] = STATE(739), - [sym_identifier] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1691), - [anon_sym_TILDE] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1765), - [anon_sym_RBRACK] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_constexpr] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym___restrict__] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym__Noreturn] = ACTIONS(1763), - [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_sizeof] = ACTIONS(1693), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_type_qualifier] = STATE(473), + [sym_alignas_qualifier] = STATE(751), + [sym__expression] = STATE(1103), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(941), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(941), + [sym_call_expression] = STATE(941), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(941), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(941), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_array_declarator_repeat1] = STATE(473), + [sym_identifier] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym___extension__] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1786), + [anon_sym_RBRACK] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1774), + [anon_sym_constexpr] = ACTIONS(1774), + [anon_sym_volatile] = ACTIONS(1774), + [anon_sym_restrict] = ACTIONS(1774), + [anon_sym___restrict__] = ACTIONS(1774), + [anon_sym__Atomic] = ACTIONS(1774), + [anon_sym__Noreturn] = ACTIONS(1774), + [anon_sym_noreturn] = ACTIONS(1774), + [anon_sym_alignas] = ACTIONS(1780), + [anon_sym__Alignas] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1752), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [468] = { - [sym_type_qualifier] = STATE(466), - [sym__expression] = STATE(1101), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(894), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(894), - [sym_call_expression] = STATE(894), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(894), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(894), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_array_declarator_repeat1] = STATE(466), - [sym_identifier] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1691), - [anon_sym_TILDE] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1787), - [anon_sym_RBRACK] = ACTIONS(1789), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_constexpr] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym___restrict__] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym__Noreturn] = ACTIONS(1763), - [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_sizeof] = ACTIONS(1693), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_type_qualifier] = STATE(706), + [sym_alignas_qualifier] = STATE(751), + [sym__expression] = STATE(1121), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(941), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(941), + [sym_call_expression] = STATE(941), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(941), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(941), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_array_declarator_repeat1] = STATE(706), + [sym_identifier] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym___extension__] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1774), + [anon_sym_constexpr] = ACTIONS(1774), + [anon_sym_volatile] = ACTIONS(1774), + [anon_sym_restrict] = ACTIONS(1774), + [anon_sym___restrict__] = ACTIONS(1774), + [anon_sym__Atomic] = ACTIONS(1774), + [anon_sym__Noreturn] = ACTIONS(1774), + [anon_sym_noreturn] = ACTIONS(1774), + [anon_sym_alignas] = ACTIONS(1780), + [anon_sym__Alignas] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1752), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [469] = { - [sym_type_qualifier] = STATE(739), - [sym__expression] = STATE(1091), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(894), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(894), - [sym_call_expression] = STATE(894), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(894), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(894), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_array_declarator_repeat1] = STATE(739), - [sym_identifier] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1691), - [anon_sym_TILDE] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1765), - [anon_sym_RBRACK] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_constexpr] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym___restrict__] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym__Noreturn] = ACTIONS(1763), - [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_sizeof] = ACTIONS(1693), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_type_qualifier] = STATE(468), + [sym_alignas_qualifier] = STATE(751), + [sym__expression] = STATE(1111), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(941), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(941), + [sym_call_expression] = STATE(941), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(941), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(941), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_array_declarator_repeat1] = STATE(468), + [sym_identifier] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym___extension__] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1774), + [anon_sym_constexpr] = ACTIONS(1774), + [anon_sym_volatile] = ACTIONS(1774), + [anon_sym_restrict] = ACTIONS(1774), + [anon_sym___restrict__] = ACTIONS(1774), + [anon_sym__Atomic] = ACTIONS(1774), + [anon_sym__Noreturn] = ACTIONS(1774), + [anon_sym_noreturn] = ACTIONS(1774), + [anon_sym_alignas] = ACTIONS(1780), + [anon_sym__Alignas] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1752), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [470] = { - [sym_type_qualifier] = STATE(467), - [sym__expression] = STATE(1096), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(894), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(894), - [sym_call_expression] = STATE(894), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(894), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(894), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_array_declarator_repeat1] = STATE(467), - [sym_identifier] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1691), - [anon_sym_TILDE] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1797), - [anon_sym_RBRACK] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_constexpr] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym___restrict__] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym__Noreturn] = ACTIONS(1763), - [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_sizeof] = ACTIONS(1693), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_type_qualifier] = STATE(706), + [sym_alignas_qualifier] = STATE(751), + [sym__expression] = STATE(1112), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(941), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(941), + [sym_call_expression] = STATE(941), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(941), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(941), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_array_declarator_repeat1] = STATE(706), + [sym_identifier] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym___extension__] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1774), + [anon_sym_constexpr] = ACTIONS(1774), + [anon_sym_volatile] = ACTIONS(1774), + [anon_sym_restrict] = ACTIONS(1774), + [anon_sym___restrict__] = ACTIONS(1774), + [anon_sym__Atomic] = ACTIONS(1774), + [anon_sym__Noreturn] = ACTIONS(1774), + [anon_sym_noreturn] = ACTIONS(1774), + [anon_sym_alignas] = ACTIONS(1780), + [anon_sym__Alignas] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1752), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [471] = { - [sym_type_qualifier] = STATE(473), - [sym__expression] = STATE(1094), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(894), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(894), - [sym_call_expression] = STATE(894), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(894), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(894), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_array_declarator_repeat1] = STATE(473), - [sym_identifier] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1691), - [anon_sym_TILDE] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_RBRACK] = ACTIONS(1805), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_constexpr] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym___restrict__] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym__Noreturn] = ACTIONS(1763), - [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_sizeof] = ACTIONS(1693), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_type_qualifier] = STATE(706), + [sym_alignas_qualifier] = STATE(751), + [sym__expression] = STATE(1113), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(941), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(941), + [sym_call_expression] = STATE(941), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(941), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(941), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_array_declarator_repeat1] = STATE(706), + [sym_identifier] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym___extension__] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1808), + [anon_sym_const] = ACTIONS(1774), + [anon_sym_constexpr] = ACTIONS(1774), + [anon_sym_volatile] = ACTIONS(1774), + [anon_sym_restrict] = ACTIONS(1774), + [anon_sym___restrict__] = ACTIONS(1774), + [anon_sym__Atomic] = ACTIONS(1774), + [anon_sym__Noreturn] = ACTIONS(1774), + [anon_sym_noreturn] = ACTIONS(1774), + [anon_sym_alignas] = ACTIONS(1780), + [anon_sym__Alignas] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1752), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [472] = { - [sym_type_qualifier] = STATE(464), - [sym__expression] = STATE(1088), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(894), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(894), - [sym_call_expression] = STATE(894), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(894), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(894), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_array_declarator_repeat1] = STATE(464), - [sym_identifier] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1691), - [anon_sym_TILDE] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_RBRACK] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_constexpr] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym___restrict__] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym__Noreturn] = ACTIONS(1763), - [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_sizeof] = ACTIONS(1693), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_type_qualifier] = STATE(470), + [sym_alignas_qualifier] = STATE(751), + [sym__expression] = STATE(1104), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(941), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(941), + [sym_call_expression] = STATE(941), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(941), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(941), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_array_declarator_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym___extension__] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1812), + [anon_sym_RBRACK] = ACTIONS(1814), + [anon_sym_const] = ACTIONS(1774), + [anon_sym_constexpr] = ACTIONS(1774), + [anon_sym_volatile] = ACTIONS(1774), + [anon_sym_restrict] = ACTIONS(1774), + [anon_sym___restrict__] = ACTIONS(1774), + [anon_sym__Atomic] = ACTIONS(1774), + [anon_sym__Noreturn] = ACTIONS(1774), + [anon_sym_noreturn] = ACTIONS(1774), + [anon_sym_alignas] = ACTIONS(1780), + [anon_sym__Alignas] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1752), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [473] = { - [sym_type_qualifier] = STATE(739), - [sym__expression] = STATE(1090), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(894), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(894), - [sym_call_expression] = STATE(894), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(894), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(894), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_array_declarator_repeat1] = STATE(739), - [sym_identifier] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1691), - [anon_sym_TILDE] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1765), - [anon_sym_RBRACK] = ACTIONS(1815), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_constexpr] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym___restrict__] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym__Noreturn] = ACTIONS(1763), - [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_sizeof] = ACTIONS(1693), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_type_qualifier] = STATE(706), + [sym_alignas_qualifier] = STATE(751), + [sym__expression] = STATE(1102), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(941), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(941), + [sym_call_expression] = STATE(941), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(941), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(941), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_array_declarator_repeat1] = STATE(706), + [sym_identifier] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym___extension__] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1774), + [anon_sym_constexpr] = ACTIONS(1774), + [anon_sym_volatile] = ACTIONS(1774), + [anon_sym_restrict] = ACTIONS(1774), + [anon_sym___restrict__] = ACTIONS(1774), + [anon_sym__Atomic] = ACTIONS(1774), + [anon_sym__Noreturn] = ACTIONS(1774), + [anon_sym_noreturn] = ACTIONS(1774), + [anon_sym_alignas] = ACTIONS(1780), + [anon_sym__Alignas] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1752), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [474] = { - [sym__expression] = STATE(1025), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_initializer_list] = STATE(1586), - [sym_initializer_pair] = STATE(1586), - [sym_subscript_designator] = STATE(1429), - [sym_subscript_range_designator] = STATE(1429), - [sym_field_designator] = STATE(1429), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_initializer_pair_repeat1] = STATE(1429), - [sym_identifier] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1819), - [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_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1825), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_type_qualifier] = STATE(471), + [sym_alignas_qualifier] = STATE(751), + [sym__expression] = STATE(1118), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(941), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(941), + [sym_call_expression] = STATE(941), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(941), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(941), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_array_declarator_repeat1] = STATE(471), + [sym_identifier] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym___extension__] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1822), + [anon_sym_RBRACK] = ACTIONS(1824), + [anon_sym_const] = ACTIONS(1774), + [anon_sym_constexpr] = ACTIONS(1774), + [anon_sym_volatile] = ACTIONS(1774), + [anon_sym_restrict] = ACTIONS(1774), + [anon_sym___restrict__] = ACTIONS(1774), + [anon_sym__Atomic] = ACTIONS(1774), + [anon_sym__Noreturn] = ACTIONS(1774), + [anon_sym_noreturn] = ACTIONS(1774), + [anon_sym_alignas] = ACTIONS(1780), + [anon_sym__Alignas] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1752), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [475] = { - [sym__expression] = STATE(1059), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_initializer_list] = STATE(1751), - [sym_initializer_pair] = STATE(1751), - [sym_subscript_designator] = STATE(1429), - [sym_subscript_range_designator] = STATE(1429), - [sym_field_designator] = STATE(1429), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_initializer_pair_repeat1] = STATE(1429), - [sym_identifier] = ACTIONS(1817), - [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_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1825), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_type_qualifier] = STATE(706), + [sym_alignas_qualifier] = STATE(751), + [sym__expression] = STATE(1105), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(941), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(941), + [sym_call_expression] = STATE(941), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(941), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(941), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_array_declarator_repeat1] = STATE(706), + [sym_identifier] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym___extension__] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1828), + [anon_sym_const] = ACTIONS(1774), + [anon_sym_constexpr] = ACTIONS(1774), + [anon_sym_volatile] = ACTIONS(1774), + [anon_sym_restrict] = ACTIONS(1774), + [anon_sym___restrict__] = ACTIONS(1774), + [anon_sym__Atomic] = ACTIONS(1774), + [anon_sym__Noreturn] = ACTIONS(1774), + [anon_sym_noreturn] = ACTIONS(1774), + [anon_sym_alignas] = ACTIONS(1780), + [anon_sym__Alignas] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1752), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [476] = { - [sym__expression] = STATE(1059), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_initializer_list] = STATE(1751), - [sym_initializer_pair] = STATE(1751), - [sym_subscript_designator] = STATE(1429), - [sym_subscript_range_designator] = STATE(1429), - [sym_field_designator] = STATE(1429), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_initializer_pair_repeat1] = STATE(1429), - [sym_identifier] = ACTIONS(1817), - [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_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1825), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_preproc_def] = STATE(479), + [sym_preproc_function_def] = STATE(479), + [sym_preproc_call] = STATE(479), + [sym_preproc_if_in_field_declaration_list] = STATE(479), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(479), + [sym_preproc_else_in_field_declaration_list] = STATE(1937), + [sym_preproc_elif_in_field_declaration_list] = STATE(1937), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1937), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1301), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__field_declaration_list_item] = STATE(479), + [sym_field_declaration] = STATE(479), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(479), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1830), + [aux_sym_preproc_def_token1] = ACTIONS(1832), + [aux_sym_preproc_if_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token2] = ACTIONS(1836), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), + [aux_sym_preproc_else_token1] = ACTIONS(1840), + [aux_sym_preproc_elif_token1] = ACTIONS(1842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1846), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, [477] = { - [sym__expression] = STATE(1059), - [sym__expression_not_binary] = STATE(708), - [sym__string] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(844), - [sym_unary_expression] = STATE(708), - [sym_binary_expression] = STATE(708), - [sym_update_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_alignof_expression] = STATE(708), - [sym_offsetof_expression] = STATE(708), - [sym_generic_expression] = STATE(708), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_gnu_asm_expression] = STATE(708), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(844), - [sym_initializer_list] = STATE(1751), - [sym_initializer_pair] = STATE(1751), - [sym_subscript_designator] = STATE(1429), - [sym_subscript_range_designator] = STATE(1429), - [sym_field_designator] = STATE(1429), - [sym_char_literal] = STATE(708), - [sym_concatenated_string] = STATE(708), - [sym_string_literal] = STATE(687), - [sym_null] = STATE(708), - [aux_sym_initializer_pair_repeat1] = STATE(1429), - [sym_identifier] = ACTIONS(1817), + [sym__expression] = STATE(1049), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_initializer_list] = STATE(1593), + [sym_initializer_pair] = STATE(1593), + [sym_subscript_designator] = STATE(1426), + [sym_subscript_range_designator] = STATE(1426), + [sym_field_designator] = STATE(1426), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_initializer_pair_repeat1] = STATE(1426), + [sym_identifier] = ACTIONS(1848), + [anon_sym_COMMA] = ACTIONS(1850), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62366,80 +63417,82 @@ 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_LBRACE] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1825), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_LBRACK] = ACTIONS(1854), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1856), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [478] = { - [sym_preproc_def] = STATE(488), - [sym_preproc_function_def] = STATE(488), - [sym_preproc_call] = STATE(488), - [sym_preproc_if_in_field_declaration_list] = STATE(488), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(488), - [sym_preproc_else_in_field_declaration_list] = STATE(1978), - [sym_preproc_elif_in_field_declaration_list] = STATE(1978), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1978), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__field_declaration_list_item] = STATE(488), - [sym_field_declaration] = STATE(488), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(488), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1833), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1837), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [aux_sym_preproc_else_token1] = ACTIONS(1841), - [aux_sym_preproc_elif_token1] = ACTIONS(1843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), - [sym_preproc_directive] = ACTIONS(1847), + [sym_preproc_def] = STATE(490), + [sym_preproc_function_def] = STATE(490), + [sym_preproc_call] = STATE(490), + [sym_preproc_if_in_field_declaration_list] = STATE(490), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(490), + [sym_preproc_else_in_field_declaration_list] = STATE(1945), + [sym_preproc_elif_in_field_declaration_list] = STATE(1945), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1945), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1301), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__field_declaration_list_item] = STATE(490), + [sym_field_declaration] = STATE(490), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(490), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1830), + [aux_sym_preproc_def_token1] = ACTIONS(1832), + [aux_sym_preproc_if_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token2] = ACTIONS(1858), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), + [aux_sym_preproc_else_token1] = ACTIONS(1840), + [aux_sym_preproc_elif_token1] = ACTIONS(1842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1846), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -62462,54 +63515,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, [479] = { - [sym_preproc_def] = STATE(493), - [sym_preproc_function_def] = STATE(493), - [sym_preproc_call] = STATE(493), - [sym_preproc_if_in_field_declaration_list] = STATE(493), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(493), - [sym_preproc_else_in_field_declaration_list] = STATE(1984), - [sym_preproc_elif_in_field_declaration_list] = STATE(1984), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1984), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__field_declaration_list_item] = STATE(493), - [sym_field_declaration] = STATE(493), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(493), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1833), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1849), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [aux_sym_preproc_else_token1] = ACTIONS(1841), - [aux_sym_preproc_elif_token1] = ACTIONS(1843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), - [sym_preproc_directive] = ACTIONS(1847), + [sym_preproc_def] = STATE(497), + [sym_preproc_function_def] = STATE(497), + [sym_preproc_call] = STATE(497), + [sym_preproc_if_in_field_declaration_list] = STATE(497), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(497), + [sym_preproc_else_in_field_declaration_list] = STATE(1955), + [sym_preproc_elif_in_field_declaration_list] = STATE(1955), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1955), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1301), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__field_declaration_list_item] = STATE(497), + [sym_field_declaration] = STATE(497), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(497), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1830), + [aux_sym_preproc_def_token1] = ACTIONS(1832), + [aux_sym_preproc_if_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token2] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), + [aux_sym_preproc_else_token1] = ACTIONS(1840), + [aux_sym_preproc_elif_token1] = ACTIONS(1842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1846), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -62532,54 +63588,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, [480] = { - [sym_preproc_def] = STATE(495), - [sym_preproc_function_def] = STATE(495), - [sym_preproc_call] = STATE(495), - [sym_preproc_if_in_field_declaration_list] = STATE(495), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), - [sym_preproc_else_in_field_declaration_list] = STATE(1866), - [sym_preproc_elif_in_field_declaration_list] = STATE(1866), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1866), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1833), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1851), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [aux_sym_preproc_else_token1] = ACTIONS(1841), - [aux_sym_preproc_elif_token1] = ACTIONS(1843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), - [sym_preproc_directive] = ACTIONS(1847), + [sym_preproc_def] = STATE(497), + [sym_preproc_function_def] = STATE(497), + [sym_preproc_call] = STATE(497), + [sym_preproc_if_in_field_declaration_list] = STATE(497), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(497), + [sym_preproc_else_in_field_declaration_list] = STATE(1972), + [sym_preproc_elif_in_field_declaration_list] = STATE(1972), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1972), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1301), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__field_declaration_list_item] = STATE(497), + [sym_field_declaration] = STATE(497), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(497), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1830), + [aux_sym_preproc_def_token1] = ACTIONS(1832), + [aux_sym_preproc_if_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token2] = ACTIONS(1862), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), + [aux_sym_preproc_else_token1] = ACTIONS(1840), + [aux_sym_preproc_elif_token1] = ACTIONS(1842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1846), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -62602,54 +63661,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, [481] = { - [sym_preproc_def] = STATE(495), - [sym_preproc_function_def] = STATE(495), - [sym_preproc_call] = STATE(495), - [sym_preproc_if_in_field_declaration_list] = STATE(495), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), - [sym_preproc_else_in_field_declaration_list] = STATE(1821), - [sym_preproc_elif_in_field_declaration_list] = STATE(1821), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1821), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1833), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [aux_sym_preproc_else_token1] = ACTIONS(1841), - [aux_sym_preproc_elif_token1] = ACTIONS(1843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), - [sym_preproc_directive] = ACTIONS(1847), + [sym_preproc_def] = STATE(497), + [sym_preproc_function_def] = STATE(497), + [sym_preproc_call] = STATE(497), + [sym_preproc_if_in_field_declaration_list] = STATE(497), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(497), + [sym_preproc_else_in_field_declaration_list] = STATE(1789), + [sym_preproc_elif_in_field_declaration_list] = STATE(1789), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1789), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1301), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__field_declaration_list_item] = STATE(497), + [sym_field_declaration] = STATE(497), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(497), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1830), + [aux_sym_preproc_def_token1] = ACTIONS(1832), + [aux_sym_preproc_if_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token2] = ACTIONS(1864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), + [aux_sym_preproc_else_token1] = ACTIONS(1840), + [aux_sym_preproc_elif_token1] = ACTIONS(1842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1846), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -62672,54 +63734,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, [482] = { - [sym_preproc_def] = STATE(480), - [sym_preproc_function_def] = STATE(480), - [sym_preproc_call] = STATE(480), - [sym_preproc_if_in_field_declaration_list] = STATE(480), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(480), - [sym_preproc_else_in_field_declaration_list] = STATE(1798), - [sym_preproc_elif_in_field_declaration_list] = STATE(1798), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1798), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__field_declaration_list_item] = STATE(480), - [sym_field_declaration] = STATE(480), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(480), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1833), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1855), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [aux_sym_preproc_else_token1] = ACTIONS(1841), - [aux_sym_preproc_elif_token1] = ACTIONS(1843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), - [sym_preproc_directive] = ACTIONS(1847), + [sym_preproc_def] = STATE(497), + [sym_preproc_function_def] = STATE(497), + [sym_preproc_call] = STATE(497), + [sym_preproc_if_in_field_declaration_list] = STATE(497), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(497), + [sym_preproc_else_in_field_declaration_list] = STATE(1938), + [sym_preproc_elif_in_field_declaration_list] = STATE(1938), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1938), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1301), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__field_declaration_list_item] = STATE(497), + [sym_field_declaration] = STATE(497), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(497), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1830), + [aux_sym_preproc_def_token1] = ACTIONS(1832), + [aux_sym_preproc_if_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token2] = ACTIONS(1866), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), + [aux_sym_preproc_else_token1] = ACTIONS(1840), + [aux_sym_preproc_elif_token1] = ACTIONS(1842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1846), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -62742,54 +63807,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, [483] = { - [sym_preproc_def] = STATE(481), - [sym_preproc_function_def] = STATE(481), - [sym_preproc_call] = STATE(481), - [sym_preproc_if_in_field_declaration_list] = STATE(481), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(481), - [sym_preproc_else_in_field_declaration_list] = STATE(1831), - [sym_preproc_elif_in_field_declaration_list] = STATE(1831), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1831), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__field_declaration_list_item] = STATE(481), - [sym_field_declaration] = STATE(481), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(481), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1833), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1857), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [aux_sym_preproc_else_token1] = ACTIONS(1841), - [aux_sym_preproc_elif_token1] = ACTIONS(1843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), - [sym_preproc_directive] = ACTIONS(1847), + [sym_preproc_def] = STATE(480), + [sym_preproc_function_def] = STATE(480), + [sym_preproc_call] = STATE(480), + [sym_preproc_if_in_field_declaration_list] = STATE(480), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(480), + [sym_preproc_else_in_field_declaration_list] = STATE(1994), + [sym_preproc_elif_in_field_declaration_list] = STATE(1994), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1994), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1301), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__field_declaration_list_item] = STATE(480), + [sym_field_declaration] = STATE(480), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(480), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1830), + [aux_sym_preproc_def_token1] = ACTIONS(1832), + [aux_sym_preproc_if_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token2] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), + [aux_sym_preproc_else_token1] = ACTIONS(1840), + [aux_sym_preproc_elif_token1] = ACTIONS(1842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1846), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -62812,54 +63880,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, [484] = { - [sym_preproc_def] = STATE(485), - [sym_preproc_function_def] = STATE(485), - [sym_preproc_call] = STATE(485), - [sym_preproc_if_in_field_declaration_list] = STATE(485), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(485), - [sym_preproc_else_in_field_declaration_list] = STATE(1873), - [sym_preproc_elif_in_field_declaration_list] = STATE(1873), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1873), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__field_declaration_list_item] = STATE(485), - [sym_field_declaration] = STATE(485), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(485), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1833), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [aux_sym_preproc_else_token1] = ACTIONS(1841), - [aux_sym_preproc_elif_token1] = ACTIONS(1843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), - [sym_preproc_directive] = ACTIONS(1847), + [sym_preproc_def] = STATE(497), + [sym_preproc_function_def] = STATE(497), + [sym_preproc_call] = STATE(497), + [sym_preproc_if_in_field_declaration_list] = STATE(497), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(497), + [sym_preproc_else_in_field_declaration_list] = STATE(1973), + [sym_preproc_elif_in_field_declaration_list] = STATE(1973), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1973), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1301), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__field_declaration_list_item] = STATE(497), + [sym_field_declaration] = STATE(497), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(497), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1830), + [aux_sym_preproc_def_token1] = ACTIONS(1832), + [aux_sym_preproc_if_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token2] = ACTIONS(1870), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), + [aux_sym_preproc_else_token1] = ACTIONS(1840), + [aux_sym_preproc_elif_token1] = ACTIONS(1842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1846), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -62882,124 +63953,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, [485] = { - [sym_preproc_def] = STATE(495), - [sym_preproc_function_def] = STATE(495), - [sym_preproc_call] = STATE(495), - [sym_preproc_if_in_field_declaration_list] = STATE(495), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), - [sym_preproc_else_in_field_declaration_list] = STATE(1981), - [sym_preproc_elif_in_field_declaration_list] = STATE(1981), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1981), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1833), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1861), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [aux_sym_preproc_else_token1] = ACTIONS(1841), - [aux_sym_preproc_elif_token1] = ACTIONS(1843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), - [sym_preproc_directive] = ACTIONS(1847), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [sym_comment] = ACTIONS(3), - }, - [486] = { [sym_preproc_def] = STATE(489), [sym_preproc_function_def] = STATE(489), [sym_preproc_call] = STATE(489), [sym_preproc_if_in_field_declaration_list] = STATE(489), [sym_preproc_ifdef_in_field_declaration_list] = STATE(489), - [sym_preproc_else_in_field_declaration_list] = STATE(1840), - [sym_preproc_elif_in_field_declaration_list] = STATE(1840), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1840), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [sym_preproc_else_in_field_declaration_list] = STATE(1788), + [sym_preproc_elif_in_field_declaration_list] = STATE(1788), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1788), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1301), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym__field_declaration_list_item] = STATE(489), [sym_field_declaration] = STATE(489), - [sym_macro_type_specifier] = STATE(825), + [sym_macro_type_specifier] = STATE(822), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(489), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1833), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [aux_sym_preproc_else_token1] = ACTIONS(1841), - [aux_sym_preproc_elif_token1] = ACTIONS(1843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), - [sym_preproc_directive] = ACTIONS(1847), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1830), + [aux_sym_preproc_def_token1] = ACTIONS(1832), + [aux_sym_preproc_if_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token2] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), + [aux_sym_preproc_else_token1] = ACTIONS(1840), + [aux_sym_preproc_elif_token1] = ACTIONS(1842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1846), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -63022,54 +64026,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [487] = { - [sym_preproc_def] = STATE(492), - [sym_preproc_function_def] = STATE(492), - [sym_preproc_call] = STATE(492), - [sym_preproc_if_in_field_declaration_list] = STATE(492), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), - [sym_preproc_else_in_field_declaration_list] = STATE(1830), - [sym_preproc_elif_in_field_declaration_list] = STATE(1830), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1830), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__field_declaration_list_item] = STATE(492), - [sym_field_declaration] = STATE(492), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1833), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1865), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [aux_sym_preproc_else_token1] = ACTIONS(1841), - [aux_sym_preproc_elif_token1] = ACTIONS(1843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), - [sym_preproc_directive] = ACTIONS(1847), + [486] = { + [sym_preproc_def] = STATE(487), + [sym_preproc_function_def] = STATE(487), + [sym_preproc_call] = STATE(487), + [sym_preproc_if_in_field_declaration_list] = STATE(487), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(487), + [sym_preproc_else_in_field_declaration_list] = STATE(1975), + [sym_preproc_elif_in_field_declaration_list] = STATE(1975), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1975), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1301), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__field_declaration_list_item] = STATE(487), + [sym_field_declaration] = STATE(487), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(487), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1830), + [aux_sym_preproc_def_token1] = ACTIONS(1832), + [aux_sym_preproc_if_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token2] = ACTIONS(1874), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), + [aux_sym_preproc_else_token1] = ACTIONS(1840), + [aux_sym_preproc_elif_token1] = ACTIONS(1842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1846), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -63092,54 +64099,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [488] = { - [sym_preproc_def] = STATE(495), - [sym_preproc_function_def] = STATE(495), - [sym_preproc_call] = STATE(495), - [sym_preproc_if_in_field_declaration_list] = STATE(495), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), - [sym_preproc_else_in_field_declaration_list] = STATE(1843), - [sym_preproc_elif_in_field_declaration_list] = STATE(1843), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1843), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1833), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1867), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [aux_sym_preproc_else_token1] = ACTIONS(1841), - [aux_sym_preproc_elif_token1] = ACTIONS(1843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), - [sym_preproc_directive] = ACTIONS(1847), + [487] = { + [sym_preproc_def] = STATE(497), + [sym_preproc_function_def] = STATE(497), + [sym_preproc_call] = STATE(497), + [sym_preproc_if_in_field_declaration_list] = STATE(497), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(497), + [sym_preproc_else_in_field_declaration_list] = STATE(1967), + [sym_preproc_elif_in_field_declaration_list] = STATE(1967), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1967), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1301), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__field_declaration_list_item] = STATE(497), + [sym_field_declaration] = STATE(497), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(497), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1830), + [aux_sym_preproc_def_token1] = ACTIONS(1832), + [aux_sym_preproc_if_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token2] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), + [aux_sym_preproc_else_token1] = ACTIONS(1840), + [aux_sym_preproc_elif_token1] = ACTIONS(1842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1846), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -63162,54 +64172,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [489] = { - [sym_preproc_def] = STATE(495), - [sym_preproc_function_def] = STATE(495), - [sym_preproc_call] = STATE(495), - [sym_preproc_if_in_field_declaration_list] = STATE(495), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), - [sym_preproc_else_in_field_declaration_list] = STATE(1829), - [sym_preproc_elif_in_field_declaration_list] = STATE(1829), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1829), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1833), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1869), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [aux_sym_preproc_else_token1] = ACTIONS(1841), - [aux_sym_preproc_elif_token1] = ACTIONS(1843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), - [sym_preproc_directive] = ACTIONS(1847), + [488] = { + [sym_preproc_def] = STATE(484), + [sym_preproc_function_def] = STATE(484), + [sym_preproc_call] = STATE(484), + [sym_preproc_if_in_field_declaration_list] = STATE(484), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(484), + [sym_preproc_else_in_field_declaration_list] = STATE(2002), + [sym_preproc_elif_in_field_declaration_list] = STATE(2002), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2002), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1301), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__field_declaration_list_item] = STATE(484), + [sym_field_declaration] = STATE(484), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(484), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1830), + [aux_sym_preproc_def_token1] = ACTIONS(1832), + [aux_sym_preproc_if_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token2] = ACTIONS(1878), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), + [aux_sym_preproc_else_token1] = ACTIONS(1840), + [aux_sym_preproc_elif_token1] = ACTIONS(1842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1846), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -63232,54 +64245,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [490] = { - [sym_preproc_def] = STATE(491), - [sym_preproc_function_def] = STATE(491), - [sym_preproc_call] = STATE(491), - [sym_preproc_if_in_field_declaration_list] = STATE(491), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(491), - [sym_preproc_else_in_field_declaration_list] = STATE(1987), - [sym_preproc_elif_in_field_declaration_list] = STATE(1987), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1987), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__field_declaration_list_item] = STATE(491), - [sym_field_declaration] = STATE(491), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(491), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1833), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1871), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [aux_sym_preproc_else_token1] = ACTIONS(1841), - [aux_sym_preproc_elif_token1] = ACTIONS(1843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), - [sym_preproc_directive] = ACTIONS(1847), + [489] = { + [sym_preproc_def] = STATE(497), + [sym_preproc_function_def] = STATE(497), + [sym_preproc_call] = STATE(497), + [sym_preproc_if_in_field_declaration_list] = STATE(497), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(497), + [sym_preproc_else_in_field_declaration_list] = STATE(1783), + [sym_preproc_elif_in_field_declaration_list] = STATE(1783), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1783), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1301), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__field_declaration_list_item] = STATE(497), + [sym_field_declaration] = STATE(497), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(497), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1830), + [aux_sym_preproc_def_token1] = ACTIONS(1832), + [aux_sym_preproc_if_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token2] = ACTIONS(1880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), + [aux_sym_preproc_else_token1] = ACTIONS(1840), + [aux_sym_preproc_elif_token1] = ACTIONS(1842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1846), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -63302,54 +64318,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [491] = { - [sym_preproc_def] = STATE(495), - [sym_preproc_function_def] = STATE(495), - [sym_preproc_call] = STATE(495), - [sym_preproc_if_in_field_declaration_list] = STATE(495), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), - [sym_preproc_else_in_field_declaration_list] = STATE(1983), - [sym_preproc_elif_in_field_declaration_list] = STATE(1983), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1983), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1833), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1873), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [aux_sym_preproc_else_token1] = ACTIONS(1841), - [aux_sym_preproc_elif_token1] = ACTIONS(1843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), - [sym_preproc_directive] = ACTIONS(1847), + [490] = { + [sym_preproc_def] = STATE(497), + [sym_preproc_function_def] = STATE(497), + [sym_preproc_call] = STATE(497), + [sym_preproc_if_in_field_declaration_list] = STATE(497), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(497), + [sym_preproc_else_in_field_declaration_list] = STATE(1977), + [sym_preproc_elif_in_field_declaration_list] = STATE(1977), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1977), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1301), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__field_declaration_list_item] = STATE(497), + [sym_field_declaration] = STATE(497), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(497), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1830), + [aux_sym_preproc_def_token1] = ACTIONS(1832), + [aux_sym_preproc_if_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token2] = ACTIONS(1882), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), + [aux_sym_preproc_else_token1] = ACTIONS(1840), + [aux_sym_preproc_elif_token1] = ACTIONS(1842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1846), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -63372,54 +64391,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [492] = { - [sym_preproc_def] = STATE(495), - [sym_preproc_function_def] = STATE(495), - [sym_preproc_call] = STATE(495), - [sym_preproc_if_in_field_declaration_list] = STATE(495), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), - [sym_preproc_else_in_field_declaration_list] = STATE(1828), - [sym_preproc_elif_in_field_declaration_list] = STATE(1828), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1828), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1833), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1875), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [aux_sym_preproc_else_token1] = ACTIONS(1841), - [aux_sym_preproc_elif_token1] = ACTIONS(1843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), - [sym_preproc_directive] = ACTIONS(1847), + [491] = { + [sym_preproc_def] = STATE(481), + [sym_preproc_function_def] = STATE(481), + [sym_preproc_call] = STATE(481), + [sym_preproc_if_in_field_declaration_list] = STATE(481), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(481), + [sym_preproc_else_in_field_declaration_list] = STATE(1971), + [sym_preproc_elif_in_field_declaration_list] = STATE(1971), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1971), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1301), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__field_declaration_list_item] = STATE(481), + [sym_field_declaration] = STATE(481), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(481), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1830), + [aux_sym_preproc_def_token1] = ACTIONS(1832), + [aux_sym_preproc_if_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token2] = ACTIONS(1884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), + [aux_sym_preproc_else_token1] = ACTIONS(1840), + [aux_sym_preproc_elif_token1] = ACTIONS(1842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1846), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -63442,54 +64464,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [493] = { - [sym_preproc_def] = STATE(495), - [sym_preproc_function_def] = STATE(495), - [sym_preproc_call] = STATE(495), - [sym_preproc_if_in_field_declaration_list] = STATE(495), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), - [sym_preproc_else_in_field_declaration_list] = STATE(1982), - [sym_preproc_elif_in_field_declaration_list] = STATE(1982), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1982), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1831), - [aux_sym_preproc_def_token1] = ACTIONS(1833), - [aux_sym_preproc_if_token1] = ACTIONS(1835), - [aux_sym_preproc_if_token2] = ACTIONS(1877), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), - [aux_sym_preproc_else_token1] = ACTIONS(1841), - [aux_sym_preproc_elif_token1] = ACTIONS(1843), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), - [sym_preproc_directive] = ACTIONS(1847), + [492] = { + [sym_preproc_def] = STATE(482), + [sym_preproc_function_def] = STATE(482), + [sym_preproc_call] = STATE(482), + [sym_preproc_if_in_field_declaration_list] = STATE(482), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(482), + [sym_preproc_else_in_field_declaration_list] = STATE(1897), + [sym_preproc_elif_in_field_declaration_list] = STATE(1897), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1897), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1301), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__field_declaration_list_item] = STATE(482), + [sym_field_declaration] = STATE(482), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(482), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1830), + [aux_sym_preproc_def_token1] = ACTIONS(1832), + [aux_sym_preproc_if_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token2] = ACTIONS(1886), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), + [aux_sym_preproc_else_token1] = ACTIONS(1840), + [aux_sym_preproc_elif_token1] = ACTIONS(1842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1846), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -63512,46 +64537,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, - [494] = { - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1184), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_ms_call_modifier] = STATE(1390), - [sym__abstract_declarator] = STATE(1523), - [sym_abstract_parenthesized_declarator] = STATE(1487), - [sym_abstract_pointer_declarator] = STATE(1487), - [sym_abstract_function_declarator] = STATE(1487), - [sym_abstract_array_declarator] = STATE(1487), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), + [493] = { + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1182), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_ms_call_modifier] = STATE(1384), + [sym__abstract_declarator] = STATE(1563), + [sym_abstract_parenthesized_declarator] = STATE(1495), + [sym_abstract_pointer_declarator] = STATE(1495), + [sym_abstract_function_declarator] = STATE(1495), + [sym_abstract_array_declarator] = STATE(1495), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), [sym_variadic_parameter] = STATE(1670), - [sym_parameter_list] = STATE(1488), + [sym_parameter_list] = STATE(1494), [sym_parameter_declaration] = STATE(1670), - [sym_macro_type_specifier] = STATE(825), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1745), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_LPAREN2] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1881), + [sym_macro_type_specifier] = STATE(822), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1830), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1758), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1890), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), [anon_sym___declspec] = ACTIONS(37), [anon_sym___cdecl] = ACTIONS(39), [anon_sym___clrcall] = ACTIONS(39), @@ -63563,7 +64591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), [anon_sym_short] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(1755), + [anon_sym_LBRACK] = ACTIONS(1766), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), [anon_sym_register] = ACTIONS(45), @@ -63581,77 +64609,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = ACTIONS(49), + [sym_primitive_type] = ACTIONS(51), + [anon_sym_enum] = ACTIONS(53), + [anon_sym_struct] = ACTIONS(55), + [anon_sym_union] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + }, + [494] = { + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_initializer_list] = STATE(1745), + [sym_initializer_pair] = STATE(1745), + [sym_subscript_designator] = STATE(1426), + [sym_subscript_range_designator] = STATE(1426), + [sym_field_designator] = STATE(1426), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_initializer_pair_repeat1] = STATE(1426), + [sym_identifier] = ACTIONS(1848), + [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_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1854), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1856), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [495] = { - [sym_preproc_def] = STATE(495), - [sym_preproc_function_def] = STATE(495), - [sym_preproc_call] = STATE(495), - [sym_preproc_if_in_field_declaration_list] = STATE(495), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), - [sym__declaration_modifiers] = STATE(750), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(750), - [sym_attribute_declaration] = STATE(750), - [sym_ms_declspec_modifier] = STATE(750), - [sym_storage_class_specifier] = STATE(750), - [sym_type_qualifier] = STATE(750), - [sym__type_specifier] = STATE(793), - [sym_sized_type_specifier] = STATE(825), - [sym_enum_specifier] = STATE(825), - [sym_struct_specifier] = STATE(825), - [sym_union_specifier] = STATE(825), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(750), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1883), - [aux_sym_preproc_def_token1] = ACTIONS(1886), - [aux_sym_preproc_if_token1] = ACTIONS(1889), - [aux_sym_preproc_if_token2] = ACTIONS(1892), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1894), - [aux_sym_preproc_else_token1] = ACTIONS(1892), - [aux_sym_preproc_elif_token1] = ACTIONS(1892), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1892), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1892), - [sym_preproc_directive] = ACTIONS(1897), - [anon_sym___extension__] = ACTIONS(1900), - [anon_sym_extern] = ACTIONS(1903), - [anon_sym___attribute__] = ACTIONS(1906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1909), - [anon_sym___declspec] = ACTIONS(1912), - [anon_sym_signed] = ACTIONS(1915), - [anon_sym_unsigned] = ACTIONS(1915), - [anon_sym_long] = ACTIONS(1915), - [anon_sym_short] = ACTIONS(1915), - [anon_sym_static] = ACTIONS(1903), - [anon_sym_auto] = ACTIONS(1903), - [anon_sym_register] = ACTIONS(1903), - [anon_sym_inline] = ACTIONS(1903), - [anon_sym___inline] = ACTIONS(1903), - [anon_sym___inline__] = ACTIONS(1903), - [anon_sym___forceinline] = ACTIONS(1903), - [anon_sym_thread_local] = ACTIONS(1903), - [anon_sym___thread] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(1900), - [anon_sym_constexpr] = ACTIONS(1900), - [anon_sym_volatile] = ACTIONS(1900), - [anon_sym_restrict] = ACTIONS(1900), - [anon_sym___restrict__] = ACTIONS(1900), - [anon_sym__Atomic] = ACTIONS(1900), - [anon_sym__Noreturn] = ACTIONS(1900), - [anon_sym_noreturn] = ACTIONS(1900), - [sym_primitive_type] = ACTIONS(1918), - [anon_sym_enum] = ACTIONS(1921), - [anon_sym_struct] = ACTIONS(1924), - [anon_sym_union] = ACTIONS(1927), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_initializer_list] = STATE(1745), + [sym_initializer_pair] = STATE(1745), + [sym_subscript_designator] = STATE(1426), + [sym_subscript_range_designator] = STATE(1426), + [sym_field_designator] = STATE(1426), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_initializer_pair_repeat1] = STATE(1426), + [sym_identifier] = ACTIONS(1848), + [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_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1854), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1856), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [496] = { + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(725), + [sym__string] = STATE(725), + [sym_conditional_expression] = STATE(725), + [sym_assignment_expression] = STATE(725), + [sym_pointer_expression] = STATE(870), + [sym_unary_expression] = STATE(725), + [sym_binary_expression] = STATE(725), + [sym_update_expression] = STATE(725), + [sym_cast_expression] = STATE(725), + [sym_sizeof_expression] = STATE(725), + [sym_alignof_expression] = STATE(725), + [sym_offsetof_expression] = STATE(725), + [sym_generic_expression] = STATE(725), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_gnu_asm_expression] = STATE(725), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(725), + [sym_parenthesized_expression] = STATE(870), + [sym_initializer_list] = STATE(1745), + [sym_initializer_pair] = STATE(1745), + [sym_subscript_designator] = STATE(1426), + [sym_subscript_range_designator] = STATE(1426), + [sym_field_designator] = STATE(1426), + [sym_char_literal] = STATE(725), + [sym_concatenated_string] = STATE(725), + [sym_string_literal] = STATE(707), + [sym_null] = STATE(725), + [aux_sym_initializer_pair_repeat1] = STATE(1426), + [sym_identifier] = ACTIONS(1848), + [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_LBRACE] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1854), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym___alignof__] = ACTIONS(85), + [anon_sym___alignof] = ACTIONS(85), + [anon_sym__alignof] = ACTIONS(85), + [anon_sym_alignof] = ACTIONS(85), + [anon_sym__Alignof] = ACTIONS(85), + [anon_sym_offsetof] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1856), + [sym_number_literal] = ACTIONS(159), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [497] = { + [sym_preproc_def] = STATE(497), + [sym_preproc_function_def] = STATE(497), + [sym_preproc_call] = STATE(497), + [sym_preproc_if_in_field_declaration_list] = STATE(497), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(497), + [sym__declaration_modifiers] = STATE(752), + [sym__declaration_specifiers] = STATE(1301), + [sym_attribute_specifier] = STATE(752), + [sym_attribute_declaration] = STATE(752), + [sym_ms_declspec_modifier] = STATE(752), + [sym_storage_class_specifier] = STATE(752), + [sym_type_qualifier] = STATE(752), + [sym_alignas_qualifier] = STATE(754), + [sym__type_specifier] = STATE(763), + [sym_sized_type_specifier] = STATE(822), + [sym_enum_specifier] = STATE(822), + [sym_struct_specifier] = STATE(822), + [sym_union_specifier] = STATE(822), + [sym__field_declaration_list_item] = STATE(497), + [sym_field_declaration] = STATE(497), + [sym_macro_type_specifier] = STATE(822), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(497), + [aux_sym__declaration_specifiers_repeat1] = STATE(752), + [aux_sym_sized_type_specifier_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1896), + [aux_sym_preproc_def_token1] = ACTIONS(1899), + [aux_sym_preproc_if_token1] = ACTIONS(1902), + [aux_sym_preproc_if_token2] = ACTIONS(1905), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1907), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1907), + [aux_sym_preproc_else_token1] = ACTIONS(1905), + [aux_sym_preproc_elif_token1] = ACTIONS(1905), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1905), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1905), + [sym_preproc_directive] = ACTIONS(1910), + [anon_sym___extension__] = ACTIONS(1913), + [anon_sym_extern] = ACTIONS(1916), + [anon_sym___attribute__] = ACTIONS(1919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1922), + [anon_sym___declspec] = ACTIONS(1925), + [anon_sym_signed] = ACTIONS(1928), + [anon_sym_unsigned] = ACTIONS(1928), + [anon_sym_long] = ACTIONS(1928), + [anon_sym_short] = ACTIONS(1928), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_auto] = ACTIONS(1916), + [anon_sym_register] = ACTIONS(1916), + [anon_sym_inline] = ACTIONS(1916), + [anon_sym___inline] = ACTIONS(1916), + [anon_sym___inline__] = ACTIONS(1916), + [anon_sym___forceinline] = ACTIONS(1916), + [anon_sym_thread_local] = ACTIONS(1916), + [anon_sym___thread] = ACTIONS(1916), + [anon_sym_const] = ACTIONS(1913), + [anon_sym_constexpr] = ACTIONS(1913), + [anon_sym_volatile] = ACTIONS(1913), + [anon_sym_restrict] = ACTIONS(1913), + [anon_sym___restrict__] = ACTIONS(1913), + [anon_sym__Atomic] = ACTIONS(1913), + [anon_sym__Noreturn] = ACTIONS(1913), + [anon_sym_noreturn] = ACTIONS(1913), + [anon_sym_alignas] = ACTIONS(1931), + [anon_sym__Alignas] = ACTIONS(1931), + [sym_primitive_type] = ACTIONS(1934), + [anon_sym_enum] = ACTIONS(1937), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1943), [sym_comment] = ACTIONS(3), }, }; @@ -63664,25 +64912,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1930), 1, + ACTIONS(1946), 1, anon_sym_RPAREN, - ACTIONS(1932), 1, + ACTIONS(1948), 1, anon_sym___extension__, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1021), 1, + STATE(1044), 1, sym__expression, - STATE(1640), 1, + STATE(1652), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -63693,43 +64941,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -63750,117 +64998,389 @@ static const uint16_t ts_small_parse_table[] = { [115] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1830), 1, + sym_identifier, + ACTIONS(1950), 1, + aux_sym_preproc_def_token1, + ACTIONS(1952), 1, + aux_sym_preproc_if_token1, + ACTIONS(1954), 1, + aux_sym_preproc_if_token2, + ACTIONS(1958), 1, + sym_preproc_directive, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1295), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1956), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(752), 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(502), 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, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [230] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1896), 1, sym_identifier, + ACTIONS(1919), 1, + anon_sym___attribute__, + ACTIONS(1922), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1925), 1, + anon_sym___declspec, ACTIONS(1934), 1, - anon_sym_RPAREN, - ACTIONS(1936), 1, + sym_primitive_type, + ACTIONS(1937), 1, + anon_sym_enum, + ACTIONS(1940), 1, + anon_sym_struct, + ACTIONS(1943), 1, + anon_sym_union, + ACTIONS(1960), 1, + aux_sym_preproc_def_token1, + ACTIONS(1963), 1, + aux_sym_preproc_if_token1, + ACTIONS(1969), 1, + sym_preproc_directive, + ACTIONS(1972), 1, + anon_sym_RBRACE, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1306), 1, + sym__declaration_specifiers, + ACTIONS(1931), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1966), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1928), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(752), 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(500), 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, + ACTIONS(1913), 9, anon_sym___extension__, - STATE(687), 1, - sym_string_literal, - STATE(1024), 1, - sym__expression, - STATE(1659), 1, - sym_compound_statement, - 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(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(844), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [230] = 24, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(1916), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [345] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1830), 1, + sym_identifier, + ACTIONS(1974), 1, + aux_sym_preproc_def_token1, + ACTIONS(1976), 1, + aux_sym_preproc_if_token1, + ACTIONS(1980), 1, + sym_preproc_directive, + ACTIONS(1982), 1, + anon_sym_RBRACE, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1306), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1978), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(752), 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(500), 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, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [460] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1896), 1, + sym_identifier, + ACTIONS(1905), 1, + aux_sym_preproc_if_token2, + ACTIONS(1919), 1, + anon_sym___attribute__, + ACTIONS(1922), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1925), 1, + anon_sym___declspec, + ACTIONS(1934), 1, + sym_primitive_type, + ACTIONS(1937), 1, + anon_sym_enum, + ACTIONS(1940), 1, + anon_sym_struct, + ACTIONS(1943), 1, + anon_sym_union, + ACTIONS(1984), 1, + aux_sym_preproc_def_token1, + ACTIONS(1987), 1, + aux_sym_preproc_if_token1, + ACTIONS(1993), 1, + sym_preproc_directive, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1295), 1, + sym__declaration_specifiers, + ACTIONS(1931), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1990), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1928), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(752), 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(502), 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, + ACTIONS(1913), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(1916), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [575] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1938), 1, + ACTIONS(1996), 1, + anon_sym_RPAREN, + ACTIONS(1998), 1, anon_sym___extension__, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1046), 1, + STATE(1045), 1, sym__expression, - STATE(1704), 1, + STATE(1671), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -63871,43 +65391,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -63925,115 +65445,211 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [342] = 23, + [690] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1830), 1, sym_identifier, - STATE(687), 1, - sym_string_literal, - STATE(713), 1, - sym_initializer_list, - STATE(733), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(844), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [451] = 23, + ACTIONS(1974), 1, + aux_sym_preproc_def_token1, + ACTIONS(1976), 1, + aux_sym_preproc_if_token1, + ACTIONS(1980), 1, + sym_preproc_directive, + ACTIONS(2000), 1, + anon_sym_RBRACE, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1306), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1978), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(752), 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(501), 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, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [805] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1830), 1, + sym_identifier, + ACTIONS(1950), 1, + aux_sym_preproc_def_token1, + ACTIONS(1952), 1, + aux_sym_preproc_if_token1, + ACTIONS(1958), 1, + sym_preproc_directive, + ACTIONS(2002), 1, + aux_sym_preproc_if_token2, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1295), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1956), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(752), 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(499), 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, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [920] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1940), 1, - anon_sym_COLON, - STATE(687), 1, + ACTIONS(2004), 1, + anon_sym___extension__, + STATE(707), 1, sym_string_literal, - STATE(1078), 1, + STATE(1065), 1, sym__expression, - STATE(1914), 1, - sym_comma_expression, + STATE(1766), 1, + sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -64043,43 +65659,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -64097,29 +65713,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [560] = 23, + [1032] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1375), 1, + anon_sym_LBRACE, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1942), 1, - anon_sym_COLON, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1067), 1, + STATE(723), 1, + sym_initializer_list, + STATE(747), 1, sym__expression, - STATE(2016), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -64129,43 +65745,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -64183,79 +65799,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [669] = 23, + [1141] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1944), 1, - anon_sym_SEMI, - STATE(687), 1, + ACTIONS(1375), 1, + anon_sym_LBRACE, + ACTIONS(1383), 1, + anon_sym_sizeof, + ACTIONS(2006), 1, + anon_sym_LPAREN2, + STATE(723), 1, + sym_initializer_list, + STATE(732), 1, sym_string_literal, - STATE(1073), 1, + STATE(747), 1, sym__expression, - STATE(1861), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2008), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2010), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -64264,33 +65875,37 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [778] = 23, + [1248] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1946), 1, + ACTIONS(2012), 1, anon_sym_SEMI, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1049), 1, + STATE(1082), 1, sym__expression, - STATE(1863), 1, + STATE(1944), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64301,43 +65916,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -64355,28 +65970,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [887] = 23, + [1357] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1948), 1, - anon_sym_SEMI, - STATE(687), 1, + ACTIONS(2014), 1, + anon_sym_RPAREN, + STATE(707), 1, sym_string_literal, - STATE(1034), 1, + STATE(1084), 1, sym__expression, - STATE(1801), 1, + STATE(1985), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64387,43 +66002,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -64441,75 +66056,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [996] = 23, + [1466] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1358), 1, + ACTIONS(1375), 1, anon_sym_LBRACE, - ACTIONS(1685), 1, + ACTIONS(1696), 1, anon_sym_sizeof, - ACTIONS(1950), 1, + ACTIONS(2016), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2018), 1, anon_sym_LPAREN2, - STATE(713), 1, + STATE(723), 1, sym_initializer_list, - STATE(733), 1, - sym__expression, - STATE(736), 1, + STATE(732), 1, sym_string_literal, - ACTIONS(89), 2, + STATE(747), 1, + sym__expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1681), 2, + ACTIONS(1692), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1694), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1956), 2, + ACTIONS(2020), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(801), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -64527,28 +66142,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1105] = 23, + [1575] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1958), 1, - anon_sym_COLON, - STATE(687), 1, + ACTIONS(2022), 1, + anon_sym_RPAREN, + STATE(707), 1, sym_string_literal, - STATE(1075), 1, + STATE(1095), 1, sym__expression, - STATE(1892), 1, + STATE(2003), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64559,43 +66174,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -64613,74 +66228,79 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1214] = 22, + [1684] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1364), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1370), 1, - anon_sym_sizeof, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - STATE(687), 1, + ACTIONS(2024), 1, + anon_sym_SEMI, + STATE(707), 1, sym_string_literal, - STATE(713), 1, - sym_initializer_list, - STATE(733), 1, + STATE(1055), 1, sym__expression, + STATE(1847), 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(89), 2, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1368), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1962), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(870), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -64689,83 +66309,84 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [1321] = 22, + [1793] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1964), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_initializer_list, - STATE(733), 1, - sym__expression, - STATE(736), 1, + ACTIONS(2026), 1, + anon_sym_SEMI, + STATE(707), 1, sym_string_literal, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1354), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1356), 2, + STATE(1083), 1, + sym__expression, + STATE(1922), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1966), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(870), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -64774,37 +66395,33 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [1428] = 23, + [1902] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1968), 1, - anon_sym_COLON, - STATE(687), 1, + ACTIONS(2028), 1, + anon_sym_RPAREN, + STATE(707), 1, sym_string_literal, - STATE(1045), 1, + STATE(1076), 1, sym__expression, - STATE(1860), 1, + STATE(1813), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64815,43 +66432,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -64869,28 +66486,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1537] = 23, + [2011] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1970), 1, - anon_sym_COLON, - STATE(687), 1, + ACTIONS(2030), 1, + anon_sym_SEMI, + STATE(707), 1, sym_string_literal, - STATE(1041), 1, + STATE(1059), 1, sym__expression, - STATE(1997), 1, + STATE(1948), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64901,43 +66518,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -64955,79 +66572,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1646] = 23, + [2120] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1972), 1, - anon_sym_SEMI, - STATE(687), 1, + ACTIONS(1375), 1, + anon_sym_LBRACE, + ACTIONS(1674), 1, + anon_sym_sizeof, + ACTIONS(2032), 1, + anon_sym_LPAREN2, + STATE(707), 1, sym_string_literal, - STATE(1026), 1, + STATE(723), 1, + sym_initializer_list, + STATE(880), 1, sym__expression, - STATE(1808), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1670), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1672), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1772), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2034), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -65036,34 +66648,38 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [1755] = 23, + [2227] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1375), 1, + anon_sym_LBRACE, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1974), 1, - anon_sym_RPAREN, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1063), 1, + STATE(1091), 1, sym__expression, - STATE(1790), 1, - sym_comma_expression, + STATE(1777), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -65073,43 +66689,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65127,28 +66743,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1864] = 23, + [2336] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1976), 1, + ACTIONS(2036), 1, anon_sym_SEMI, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1069), 1, + STATE(1052), 1, sym__expression, - STATE(1911), 1, + STATE(1941), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -65159,43 +66775,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65213,28 +66829,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1973] = 23, + [2445] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1978), 1, - anon_sym_RPAREN, - STATE(687), 1, + ACTIONS(2038), 1, + anon_sym_COLON, + STATE(707), 1, sym_string_literal, - STATE(1064), 1, + STATE(1098), 1, sym__expression, - STATE(1906), 1, + STATE(1923), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -65245,43 +66861,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65299,74 +66915,79 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2082] = 22, + [2554] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1364), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1980), 1, - anon_sym_LPAREN2, - STATE(687), 1, + ACTIONS(2040), 1, + anon_sym_COLON, + STATE(707), 1, sym_string_literal, - STATE(713), 1, - sym_initializer_list, - STATE(881), 1, + STATE(1057), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1651), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1653), 2, + STATE(1803), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(870), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -65375,84 +66996,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [2189] = 23, + [2663] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1375), 1, + anon_sym_LBRACE, + ACTIONS(1746), 1, sym_identifier, - ACTIONS(1984), 1, - anon_sym_RPAREN, - STATE(687), 1, + ACTIONS(1752), 1, + anon_sym_sizeof, + ACTIONS(1768), 1, + anon_sym_LPAREN2, + STATE(707), 1, sym_string_literal, - STATE(1029), 1, + STATE(723), 1, + sym_initializer_list, + STATE(880), 1, sym__expression, - STATE(1804), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1748), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1750), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1772), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1782), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(941), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65470,28 +67087,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2298] = 23, + [2772] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1986), 1, - anon_sym_RPAREN, - STATE(687), 1, + ACTIONS(2042), 1, + anon_sym_COLON, + STATE(707), 1, sym_string_literal, - STATE(1047), 1, + STATE(1090), 1, sym__expression, - STATE(1797), 1, + STATE(1901), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -65502,43 +67119,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65556,29 +67173,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2407] = 23, + [2881] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1375), 1, + anon_sym_LBRACE, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1988), 1, - anon_sym_SEMI, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1082), 1, + STATE(1099), 1, sym__expression, - STATE(1786), 1, - sym_comma_expression, + STATE(1743), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -65588,43 +67205,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65642,29 +67259,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2516] = 23, + [2990] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1375), 1, + anon_sym_LBRACE, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1990), 1, - anon_sym_RPAREN, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1058), 1, + STATE(1087), 1, sym__expression, - STATE(1844), 1, - sym_comma_expression, + STATE(1746), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -65674,43 +67291,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65728,29 +67345,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2625] = 23, + [3099] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - STATE(687), 1, + ACTIONS(2044), 1, + anon_sym_COLON, + STATE(707), 1, sym_string_literal, - STATE(1080), 1, + STATE(1075), 1, sym__expression, - STATE(1753), 1, - sym_initializer_list, + STATE(1802), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -65760,43 +67377,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65814,28 +67431,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2734] = 23, + [3208] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1992), 1, + ACTIONS(2046), 1, anon_sym_SEMI, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1054), 1, + STATE(1094), 1, sym__expression, - STATE(1920), 1, + STATE(1832), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -65846,43 +67463,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65900,75 +67517,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2843] = 23, + [3317] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1687), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1693), 1, - anon_sym_sizeof, - ACTIONS(1757), 1, - anon_sym_LPAREN2, - STATE(687), 1, + ACTIONS(2048), 1, + anon_sym_RPAREN, + STATE(707), 1, sym_string_literal, - STATE(713), 1, - sym_initializer_list, - STATE(881), 1, + STATE(1086), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1691), 2, + STATE(1899), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1769), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65986,29 +67603,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2952] = 23, + [3426] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - STATE(687), 1, + ACTIONS(2050), 1, + anon_sym_COLON, + STATE(707), 1, sym_string_literal, - STATE(1044), 1, + STATE(1060), 1, sym__expression, - STATE(1693), 1, - sym_initializer_list, + STATE(2006), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -66018,47 +67635,128 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [3535] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1365), 1, + sym_identifier, + ACTIONS(1375), 1, + anon_sym_LBRACE, + ACTIONS(1377), 1, + anon_sym_sizeof, + ACTIONS(2052), 1, + anon_sym_LPAREN2, + STATE(707), 1, + sym_string_literal, + STATE(723), 1, + sym_initializer_list, + STATE(747), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1369), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1371), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2054), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -66067,33 +67765,37 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [3061] = 23, + [3642] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1994), 1, - anon_sym_RPAREN, - STATE(687), 1, + ACTIONS(2056), 1, + anon_sym_SEMI, + STATE(707), 1, sym_string_literal, - STATE(1053), 1, + STATE(1092), 1, sym__expression, - STATE(1827), 1, + STATE(1964), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -66104,43 +67806,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -66158,29 +67860,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3170] = 23, + [3751] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - STATE(687), 1, + ACTIONS(2058), 1, + anon_sym_COLON, + STATE(707), 1, sym_string_literal, - STATE(1068), 1, + STATE(1062), 1, sym__expression, - STATE(1748), 1, - sym_initializer_list, + STATE(1858), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -66190,43 +67892,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -66244,28 +67946,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3279] = 23, + [3860] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1996), 1, - anon_sym_COLON, - STATE(687), 1, + ACTIONS(2060), 1, + anon_sym_RPAREN, + STATE(707), 1, sym_string_literal, - STATE(1052), 1, + STATE(1073), 1, sym__expression, - STATE(1996), 1, + STATE(1812), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -66276,43 +67978,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -66330,157 +68032,79 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3388] = 23, - 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(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, - ACTIONS(1998), 1, - aux_sym_preproc_def_token1, - ACTIONS(2000), 1, - aux_sym_preproc_if_token1, - ACTIONS(2004), 1, - sym_preproc_directive, - ACTIONS(2006), 1, - anon_sym_RBRACE, - STATE(793), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1299), 1, - sym__declaration_specifiers, - ACTIONS(2002), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(750), 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(535), 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, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [3496] = 21, + [3969] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1980), 1, - anon_sym_LPAREN2, - ACTIONS(2008), 1, - anon_sym_RBRACK, - STATE(687), 1, + ACTIONS(2062), 1, + anon_sym_RPAREN, + STATE(707), 1, sym_string_literal, - STATE(887), 1, + STATE(1064), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1651), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1653), 2, + STATE(1810), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(870), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -66489,161 +68113,72 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [3600] = 23, - 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(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, - ACTIONS(2010), 1, - aux_sym_preproc_def_token1, - ACTIONS(2012), 1, - aux_sym_preproc_if_token1, - ACTIONS(2014), 1, - aux_sym_preproc_if_token2, - ACTIONS(2018), 1, - sym_preproc_directive, - STATE(793), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1295), 1, - sym__declaration_specifiers, - ACTIONS(2016), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(750), 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(543), 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, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [3708] = 21, + [4078] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1674), 1, anon_sym_sizeof, - ACTIONS(1980), 1, + ACTIONS(2032), 1, anon_sym_LPAREN2, - ACTIONS(2020), 1, + ACTIONS(2064), 1, anon_sym_RBRACK, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(887), 1, + STATE(925), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1651), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -66666,111 +68201,110 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3812] = 23, + [4182] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1883), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1906), 1, - anon_sym___attribute__, - ACTIONS(1909), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1912), 1, - anon_sym___declspec, - ACTIONS(1918), 1, - sym_primitive_type, - ACTIONS(1921), 1, - anon_sym_enum, - ACTIONS(1924), 1, - anon_sym_struct, - ACTIONS(1927), 1, - anon_sym_union, - ACTIONS(2022), 1, - aux_sym_preproc_def_token1, - ACTIONS(2025), 1, - aux_sym_preproc_if_token1, - ACTIONS(2031), 1, - sym_preproc_directive, - ACTIONS(2034), 1, - anon_sym_RBRACE, - STATE(793), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1299), 1, - sym__declaration_specifiers, - ACTIONS(2028), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1915), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(750), 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(531), 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, - ACTIONS(1900), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(1903), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [3920] = 22, + STATE(707), 1, + sym_string_literal, + STATE(1038), 1, + sym__expression, + STATE(1677), 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(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(870), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4288] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1071), 1, + STATE(1058), 1, sym__expression, - STATE(1945), 1, + STATE(1850), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -66781,43 +68315,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -66835,67 +68369,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4026] = 21, + [4394] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1674), 1, anon_sym_sizeof, - ACTIONS(1980), 1, + ACTIONS(2032), 1, anon_sym_LPAREN2, - ACTIONS(2036), 1, + ACTIONS(2066), 1, anon_sym_RBRACK, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(887), 1, + STATE(925), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1651), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -66918,67 +68452,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4130] = 21, + [4498] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1674), 1, anon_sym_sizeof, - ACTIONS(1980), 1, + ACTIONS(2032), 1, anon_sym_LPAREN2, - ACTIONS(2038), 1, + ACTIONS(2068), 1, anon_sym_RBRACK, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(887), 1, + STATE(925), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1651), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -67001,320 +68535,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4234] = 23, + [4602] = 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(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1998), 1, - aux_sym_preproc_def_token1, - ACTIONS(2000), 1, - aux_sym_preproc_if_token1, - ACTIONS(2004), 1, - sym_preproc_directive, - ACTIONS(2040), 1, - anon_sym_RBRACE, - STATE(793), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1299), 1, - sym__declaration_specifiers, - ACTIONS(2002), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(750), 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(531), 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, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [4342] = 23, - 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(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, - ACTIONS(2010), 1, - aux_sym_preproc_def_token1, - ACTIONS(2012), 1, - aux_sym_preproc_if_token1, - ACTIONS(2018), 1, - sym_preproc_directive, - ACTIONS(2042), 1, - aux_sym_preproc_if_token2, - STATE(793), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1295), 1, - sym__declaration_specifiers, - ACTIONS(2016), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(750), 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(529), 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, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [4450] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1674), 1, anon_sym_sizeof, - ACTIONS(1980), 1, + ACTIONS(2032), 1, anon_sym_LPAREN2, - ACTIONS(2044), 1, + ACTIONS(2070), 1, anon_sym_RBRACK, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(887), 1, + STATE(925), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1651), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(708), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [4554] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1980), 1, - anon_sym_LPAREN2, - ACTIONS(2046), 1, - anon_sym_RBRACK, - STATE(687), 1, - sym_string_literal, - STATE(887), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1651), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1653), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1982), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -67337,26 +68618,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4658] = 22, + [4706] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1018), 1, + STATE(1080), 1, sym__expression, - STATE(1685), 1, + STATE(1991), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67367,43 +68648,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -67421,67 +68702,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4764] = 21, + [4812] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1674), 1, anon_sym_sizeof, - ACTIONS(1980), 1, + ACTIONS(2032), 1, anon_sym_LPAREN2, - ACTIONS(2048), 1, + ACTIONS(2072), 1, anon_sym_RBRACK, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(887), 1, + STATE(925), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1651), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -67504,67 +68785,313 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4868] = 21, + [4916] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1830), 1, + sym_identifier, + ACTIONS(2074), 1, + anon_sym_LBRACE, + STATE(748), 1, + sym_ms_call_modifier, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1178), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(426), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 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, + STATE(752), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [5024] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1830), 1, + sym_identifier, + ACTIONS(2076), 1, + anon_sym_LBRACE, + STATE(736), 1, + sym_ms_call_modifier, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1155), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(361), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 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, + STATE(752), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [5132] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1700), 1, + anon_sym_const, + ACTIONS(1704), 1, + anon_sym_LPAREN2, + ACTIONS(1710), 1, + anon_sym_STAR, + ACTIONS(1717), 1, + anon_sym_EQ, + STATE(670), 1, + sym_string_literal, + STATE(787), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1723), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2078), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1713), 10, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1721), 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(1708), 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(1702), 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, + [5222] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1674), 1, anon_sym_sizeof, - ACTIONS(1980), 1, + ACTIONS(2032), 1, anon_sym_LPAREN2, - ACTIONS(2050), 1, + ACTIONS(2080), 1, anon_sym_RBRACK, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(887), 1, + STATE(925), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1651), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -67587,67 +69114,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4972] = 21, + [5326] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1674), 1, anon_sym_sizeof, - ACTIONS(1980), 1, + ACTIONS(2032), 1, anon_sym_LPAREN2, - ACTIONS(2052), 1, + ACTIONS(2082), 1, anon_sym_RBRACK, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(887), 1, + STATE(925), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1651), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -67670,54 +69197,63 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5076] = 23, + [5430] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1883), 1, - sym_identifier, - ACTIONS(1892), 1, - aux_sym_preproc_if_token2, - ACTIONS(1906), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1909), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1912), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1918), 1, + ACTIONS(51), 1, sym_primitive_type, - ACTIONS(1921), 1, + ACTIONS(53), 1, anon_sym_enum, - ACTIONS(1924), 1, + ACTIONS(55), 1, anon_sym_struct, - ACTIONS(1927), 1, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(2054), 1, - aux_sym_preproc_def_token1, - ACTIONS(2057), 1, - aux_sym_preproc_if_token1, - ACTIONS(2063), 1, - sym_preproc_directive, - STATE(793), 1, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1830), 1, + sym_identifier, + ACTIONS(2084), 1, + anon_sym_LBRACE, + STATE(744), 1, + sym_ms_call_modifier, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1295), 1, + STATE(1175), 1, sym__declaration_specifiers, - ACTIONS(2060), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1915), 4, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(137), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67725,16 +69261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(543), 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, - ACTIONS(1900), 9, + ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -67744,7 +69271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(1903), 10, + ACTIONS(45), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -67755,67 +69282,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5184] = 21, + [5538] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1674), 1, anon_sym_sizeof, - ACTIONS(1980), 1, + ACTIONS(2032), 1, anon_sym_LPAREN2, - ACTIONS(2066), 1, + ACTIONS(2086), 1, anon_sym_RBRACK, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(887), 1, + STATE(925), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1651), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -67838,77 +69365,72 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5288] = 22, + [5642] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1365), 1, sym_identifier, - STATE(687), 1, + ACTIONS(1674), 1, + anon_sym_sizeof, + ACTIONS(2032), 1, + anon_sym_LPAREN2, + ACTIONS(2088), 1, + anon_sym_RBRACK, + STATE(707), 1, sym_string_literal, - STATE(1081), 1, + STATE(925), 1, sym__expression, - STATE(1883), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1670), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1672), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1772), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2034), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -67917,152 +69439,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [5394] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1950), 1, - sym_identifier, - ACTIONS(1952), 1, - anon_sym_LPAREN2, - STATE(736), 1, - sym_string_literal, - STATE(969), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1681), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1683), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1954), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1956), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(801), 5, - sym_pointer_expression, sym_subscript_expression, sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5497] = 20, + [5746] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1674), 1, + anon_sym_sizeof, + ACTIONS(2032), 1, anon_sym_LPAREN2, - STATE(736), 1, + ACTIONS(2090), 1, + anon_sym_RBRACK, + STATE(707), 1, sym_string_literal, - STATE(775), 1, + STATE(925), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1354), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1966), 2, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68085,71 +69531,156 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5598] = 21, + [5850] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1830), 1, + sym_identifier, + ACTIONS(2092), 1, + anon_sym_LBRACE, + STATE(735), 1, + sym_ms_call_modifier, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1169), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(356), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 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, + STATE(752), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [5958] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1685), 1, + ACTIONS(1696), 1, anon_sym_sizeof, - ACTIONS(1950), 1, + ACTIONS(2016), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2018), 1, anon_sym_LPAREN2, - STATE(736), 1, + STATE(732), 1, sym_string_literal, - STATE(971), 1, + STATE(993), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1681), 2, + ACTIONS(1692), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1694), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1956), 2, + ACTIONS(2020), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(801), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68167,71 +69698,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5701] = 21, + [6061] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1950), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1952), 1, - anon_sym_LPAREN2, - STATE(736), 1, + STATE(707), 1, sym_string_literal, - STATE(737), 1, + STATE(1011), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1681), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1956), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(801), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68249,71 +69780,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5804] = 21, + [6164] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1685), 1, + ACTIONS(1696), 1, anon_sym_sizeof, - ACTIONS(1950), 1, + ACTIONS(2016), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2018), 1, anon_sym_LPAREN2, - STATE(736), 1, + STATE(732), 1, sym_string_literal, - STATE(959), 1, + STATE(996), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1681), 2, + ACTIONS(1692), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1694), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1956), 2, + ACTIONS(2020), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(801), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68331,71 +69862,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5907] = 21, + [6267] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1685), 1, + ACTIONS(1696), 1, anon_sym_sizeof, - ACTIONS(1950), 1, + ACTIONS(2016), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2018), 1, anon_sym_LPAREN2, - STATE(736), 1, - sym_string_literal, - STATE(968), 1, + STATE(729), 1, sym__expression, - ACTIONS(89), 2, + STATE(732), 1, + sym_string_literal, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1681), 2, + ACTIONS(1692), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1694), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1956), 2, + ACTIONS(2020), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(801), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68413,71 +69944,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6010] = 21, + [6370] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1950), 1, + ACTIONS(1746), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(1752), 1, + anon_sym_sizeof, + ACTIONS(1768), 1, anon_sym_LPAREN2, - STATE(736), 1, + STATE(707), 1, sym_string_literal, - STATE(967), 1, + STATE(1072), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1681), 2, + ACTIONS(1748), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1750), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1956), 2, + ACTIONS(1782), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(801), 5, + STATE(941), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68495,71 +70026,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6113] = 21, + [6473] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1950), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1952), 1, - anon_sym_LPAREN2, - STATE(736), 1, + STATE(707), 1, sym_string_literal, - STATE(966), 1, + STATE(1010), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1681), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1956), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(801), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68577,71 +70108,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6216] = 21, + [6576] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1950), 1, + ACTIONS(1746), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(1752), 1, + anon_sym_sizeof, + ACTIONS(1768), 1, anon_sym_LPAREN2, - STATE(736), 1, + STATE(707), 1, sym_string_literal, - STATE(965), 1, + STATE(1071), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1681), 2, + ACTIONS(1748), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1750), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1956), 2, + ACTIONS(1782), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(801), 5, + STATE(941), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68659,71 +70190,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6319] = 21, + [6679] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1950), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1952), 1, - anon_sym_LPAREN2, - STATE(736), 1, + STATE(707), 1, sym_string_literal, - STATE(964), 1, + STATE(1006), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1681), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1956), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(801), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68741,71 +70272,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6422] = 21, + [6782] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1950), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1952), 1, - anon_sym_LPAREN2, - STATE(736), 1, + STATE(707), 1, sym_string_literal, - STATE(960), 1, + STATE(1117), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1681), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1956), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(801), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68823,75 +70354,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6525] = 21, + [6885] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1950), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(1674), 1, + anon_sym_sizeof, + ACTIONS(2032), 1, anon_sym_LPAREN2, - STATE(736), 1, + STATE(707), 1, sym_string_literal, - STATE(963), 1, + STATE(883), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1681), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1956), 2, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(801), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -68900,76 +70426,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6628] = 21, + [6986] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1685), 1, + ACTIONS(1696), 1, anon_sym_sizeof, - ACTIONS(1950), 1, + ACTIONS(2016), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(2018), 1, anon_sym_LPAREN2, - STATE(736), 1, + STATE(732), 1, sym_string_literal, - STATE(962), 1, + STATE(997), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1681), 2, + ACTIONS(1692), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1694), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1956), 2, + ACTIONS(2020), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(801), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68987,71 +70517,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6731] = 21, + [7089] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1687), 1, - sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1696), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(2016), 1, + sym_identifier, + ACTIONS(2018), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(732), 1, sym_string_literal, - STATE(1097), 1, + STATE(995), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1689), 2, + ACTIONS(1692), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1694), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1769), 2, + ACTIONS(2020), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -69069,141 +70599,59 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6834] = 21, + [7192] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1696), 1, + anon_sym_sizeof, + ACTIONS(2016), 1, sym_identifier, - STATE(687), 1, + ACTIONS(2018), 1, + anon_sym_LPAREN2, + STATE(732), 1, sym_string_literal, - STATE(982), 1, + STATE(994), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(844), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [6937] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1679), 1, - sym_identifier, - STATE(687), 1, - sym_string_literal, - STATE(984), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1692), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1694), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2020), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -69215,7 +70663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -69233,70 +70681,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7040] = 20, + [7295] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1746), 1, sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1752), 1, anon_sym_sizeof, - ACTIONS(2068), 1, + ACTIONS(1768), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(728), 1, + STATE(1070), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(1748), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1750), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1962), 2, + ACTIONS(1772), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1782), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(941), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -69305,68 +70758,64 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7141] = 21, + [7398] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1696), 1, + anon_sym_sizeof, + ACTIONS(2016), 1, sym_identifier, - STATE(687), 1, + ACTIONS(2018), 1, + anon_sym_LPAREN2, + STATE(732), 1, sym_string_literal, - STATE(724), 1, + STATE(998), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1692), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1694), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2008), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2020), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -69378,7 +70827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -69396,70 +70845,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7244] = 20, + [7501] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1746), 1, sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1752), 1, anon_sym_sizeof, - ACTIONS(1960), 1, + ACTIONS(1768), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(796), 1, + STATE(1106), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(1748), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1750), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1962), 2, + ACTIONS(1772), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1782), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(941), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -69468,79 +70922,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7345] = 20, + [7604] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1696), 1, anon_sym_sizeof, - ACTIONS(1960), 1, + ACTIONS(2016), 1, + sym_identifier, + ACTIONS(2018), 1, anon_sym_LPAREN2, - STATE(687), 1, - sym_string_literal, STATE(732), 1, + sym_string_literal, + STATE(991), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(1692), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1694), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1962), 2, + ACTIONS(2008), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2020), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(844), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -69549,79 +71004,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7446] = 20, + [7707] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1360), 1, + ACTIONS(1696), 1, anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(2016), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(2094), 1, anon_sym_LPAREN2, - STATE(725), 1, - sym__expression, - STATE(736), 1, + STATE(732), 1, sym_string_literal, - ACTIONS(89), 2, + STATE(739), 1, + sym__expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1354), 2, + ACTIONS(1692), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1694), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1966), 2, + ACTIONS(2020), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(844), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -69630,79 +71086,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7547] = 20, + [7810] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1696), 1, anon_sym_sizeof, - ACTIONS(1960), 1, + ACTIONS(2016), 1, + sym_identifier, + ACTIONS(2018), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(732), 1, sym_string_literal, - STATE(724), 1, + STATE(740), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(1692), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1694), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1962), 2, + ACTIONS(2008), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2020), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(844), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -69711,68 +71168,64 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7648] = 21, + [7913] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1696), 1, + anon_sym_sizeof, + ACTIONS(2016), 1, sym_identifier, - STATE(687), 1, + ACTIONS(2018), 1, + anon_sym_LPAREN2, + STATE(732), 1, sym_string_literal, - STATE(1111), 1, + STATE(989), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1692), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1694), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2008), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2020), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -69784,7 +71237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -69802,65 +71255,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7751] = 20, + [8016] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1383), 1, anon_sym_sizeof, - ACTIONS(1960), 1, + ACTIONS(2096), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(732), 1, sym_string_literal, - STATE(725), 1, + STATE(739), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1962), 2, + ACTIONS(2008), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2010), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -69883,24 +71336,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7852] = 21, + [8117] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1023), 1, + STATE(1047), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -69911,43 +71364,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -69965,59 +71418,59 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7955] = 21, + [8220] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1696), 1, + anon_sym_sizeof, + ACTIONS(2016), 1, sym_identifier, - STATE(687), 1, - sym_string_literal, - STATE(1106), 1, + ACTIONS(2018), 1, + anon_sym_LPAREN2, + STATE(731), 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(89), 2, + STATE(732), 1, + sym_string_literal, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1692), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1694), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2008), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2020), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -70029,7 +71482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70047,71 +71500,153 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8058] = 21, + [8323] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1950), 1, + ACTIONS(1746), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(1752), 1, + anon_sym_sizeof, + ACTIONS(1768), 1, anon_sym_LPAREN2, - STATE(736), 1, + STATE(707), 1, sym_string_literal, - STATE(970), 1, + STATE(1078), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1681), 2, + ACTIONS(1748), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1750), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1956), 2, + ACTIONS(1782), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(941), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [8426] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1690), 1, + sym_identifier, + STATE(707), 1, + sym_string_literal, + STATE(1120), 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(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(801), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70129,59 +71664,59 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8161] = 21, + [8529] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1696), 1, + anon_sym_sizeof, + ACTIONS(2016), 1, sym_identifier, - STATE(687), 1, + ACTIONS(2018), 1, + anon_sym_LPAREN2, + STATE(732), 1, sym_string_literal, - STATE(999), 1, + STATE(986), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1692), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1694), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2008), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2020), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -70193,7 +71728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70211,71 +71746,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8264] = 21, + [8632] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1950), 1, + ACTIONS(1746), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(1752), 1, + anon_sym_sizeof, + ACTIONS(1768), 1, anon_sym_LPAREN2, - STATE(736), 1, + STATE(707), 1, sym_string_literal, - STATE(961), 1, + STATE(1069), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1681), 2, + ACTIONS(1748), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1750), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1956), 2, + ACTIONS(1782), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(801), 5, + STATE(941), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70293,71 +71828,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8367] = 21, + [8735] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1746), 1, sym_identifier, - STATE(687), 1, + ACTIONS(1752), 1, + anon_sym_sizeof, + ACTIONS(1768), 1, + anon_sym_LPAREN2, + STATE(707), 1, sym_string_literal, - STATE(979), 1, + STATE(1096), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1748), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1750), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1772), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1782), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(941), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70375,71 +71910,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8470] = 21, + [8838] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1746), 1, sym_identifier, - STATE(687), 1, + ACTIONS(1752), 1, + anon_sym_sizeof, + ACTIONS(1768), 1, + anon_sym_LPAREN2, + STATE(707), 1, sym_string_literal, - STATE(737), 1, + STATE(1068), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1748), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1750), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1772), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1782), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(941), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70457,24 +71992,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8573] = 21, + [8941] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(972), 1, + STATE(1077), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70485,43 +72020,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70539,71 +72074,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8676] = 21, + [9044] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1687), 1, - sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1696), 1, anon_sym_sizeof, - ACTIONS(2070), 1, + ACTIONS(2016), 1, + sym_identifier, + ACTIONS(2018), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(732), 1, sym_string_literal, - STATE(883), 1, + STATE(988), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1689), 2, + ACTIONS(1692), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1694), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1769), 2, + ACTIONS(2020), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70621,75 +72156,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8779] = 21, + [9147] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1674), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(2032), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(886), 1, + STATE(885), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1689), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1769), 2, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -70698,29 +72228,33 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8882] = 21, + [9248] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(975), 1, + STATE(1007), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70731,43 +72265,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70785,65 +72319,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8985] = 20, + [9351] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1383), 1, anon_sym_sizeof, - ACTIONS(1980), 1, + ACTIONS(2006), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(732), 1, sym_string_literal, - STATE(887), 1, + STATE(811), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1651), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(2010), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70866,75 +72400,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9086] = 21, + [9452] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1383), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(2006), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(732), 1, sym_string_literal, - STATE(888), 1, + STATE(740), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1689), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1769), 2, + ACTIONS(2010), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -70943,158 +72472,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9189] = 21, + [9553] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1746), 1, sym_identifier, - STATE(687), 1, + ACTIONS(1752), 1, + anon_sym_sizeof, + ACTIONS(1768), 1, + anon_sym_LPAREN2, + STATE(707), 1, sym_string_literal, - STATE(1000), 1, + STATE(1085), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(844), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [9292] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1679), 1, - sym_identifier, - STATE(687), 1, - sym_string_literal, - STATE(993), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1748), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1750), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1782), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(941), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -71112,65 +72563,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9395] = 20, + [9656] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1377), 1, + anon_sym_sizeof, + ACTIONS(2052), 1, anon_sym_LPAREN2, - STATE(736), 1, + STATE(707), 1, sym_string_literal, - STATE(777), 1, + STATE(841), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1354), 2, + ACTIONS(1369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1371), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1966), 2, + ACTIONS(2054), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -71193,70 +72644,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9496] = 20, + [9757] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1980), 1, - anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(868), 1, + STATE(1109), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1651), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(870), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -71265,33 +72721,29 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9597] = 21, + [9860] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1110), 1, + STATE(1056), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71302,43 +72754,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -71356,70 +72808,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9700] = 20, + [9963] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1746), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1752), 1, + anon_sym_sizeof, + ACTIONS(1768), 1, anon_sym_LPAREN2, - STATE(736), 1, + STATE(707), 1, sym_string_literal, - STATE(763), 1, + STATE(1067), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1354), 2, + ACTIONS(1748), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1750), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1966), 2, + ACTIONS(1782), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(941), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -71428,80 +72885,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9801] = 21, + [10066] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1693), 1, - anon_sym_sizeof, - ACTIONS(1757), 1, - anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1083), 1, + STATE(1107), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1769), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -71519,24 +72972,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9904] = 21, + [10169] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1104), 1, + STATE(1009), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71547,43 +73000,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -71601,70 +73054,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10007] = 20, + [10272] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1360), 1, + ACTIONS(1696), 1, anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(2016), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(2018), 1, anon_sym_LPAREN2, - STATE(736), 1, + STATE(732), 1, sym_string_literal, - STATE(776), 1, + STATE(999), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1354), 2, + ACTIONS(1692), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1694), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1966), 2, + ACTIONS(2020), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(844), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -71673,74 +73131,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10108] = 20, + [10375] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1674), 1, + anon_sym_sizeof, + ACTIONS(2032), 1, anon_sym_LPAREN2, - STATE(736), 1, + STATE(707), 1, sym_string_literal, - STATE(773), 1, + STATE(879), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1354), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1966), 2, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -71763,151 +73217,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10209] = 20, + [10476] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1964), 1, - anon_sym_LPAREN2, - STATE(736), 1, + STATE(707), 1, sym_string_literal, - STATE(771), 1, + STATE(740), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1354), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1966), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(708), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [10310] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1964), 1, - anon_sym_LPAREN2, - STATE(736), 1, - sym_string_literal, - STATE(770), 1, - sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1354), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1356), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1954), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1966), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(870), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -71916,74 +73294,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10411] = 20, + [10579] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1383), 1, + anon_sym_sizeof, + ACTIONS(2006), 1, anon_sym_LPAREN2, - STATE(736), 1, + STATE(732), 1, sym_string_literal, - STATE(769), 1, + STATE(786), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1354), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1966), 2, + ACTIONS(2010), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -72006,65 +73380,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10512] = 20, + [10680] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1377), 1, + anon_sym_sizeof, + ACTIONS(2052), 1, anon_sym_LPAREN2, - STATE(736), 1, + STATE(707), 1, sym_string_literal, - STATE(768), 1, + STATE(849), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1354), 2, + ACTIONS(1369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1371), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1966), 2, + ACTIONS(2054), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -72087,71 +73461,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10613] = 21, + [10781] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1746), 1, sym_identifier, - STATE(687), 1, + ACTIONS(1752), 1, + anon_sym_sizeof, + ACTIONS(1768), 1, + anon_sym_LPAREN2, + STATE(707), 1, sym_string_literal, - STATE(1095), 1, + STATE(1066), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1748), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1750), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1772), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1782), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(941), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -72169,24 +73543,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10716] = 21, + [10884] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(992), 1, + STATE(1013), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72197,43 +73571,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -72251,75 +73625,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10819] = 21, + [10987] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1365), 1, sym_identifier, - STATE(687), 1, - sym_string_literal, - STATE(991), 1, + ACTIONS(1383), 1, + anon_sym_sizeof, + ACTIONS(2006), 1, + anon_sym_LPAREN2, + STATE(731), 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(89), 2, + STATE(732), 1, + sym_string_literal, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2008), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2010), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -72328,80 +73697,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10922] = 21, + [11088] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1365), 1, sym_identifier, - STATE(687), 1, + ACTIONS(1377), 1, + anon_sym_sizeof, + ACTIONS(2052), 1, + anon_sym_LPAREN2, + STATE(707), 1, sym_string_literal, - STATE(1022), 1, + STATE(853), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1369), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1371), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2054), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -72410,29 +73778,33 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11025] = 21, + [11189] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(973), 1, + STATE(1016), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72443,43 +73815,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -72497,75 +73869,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11128] = 21, + [11292] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1365), 1, sym_identifier, - STATE(687), 1, + ACTIONS(1377), 1, + anon_sym_sizeof, + ACTIONS(2098), 1, + anon_sym_LPAREN2, + STATE(707), 1, sym_string_literal, - STATE(986), 1, + STATE(739), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1369), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1371), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2054), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -72574,75 +73941,84 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11231] = 20, + [11393] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(2072), 1, - anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(883), 1, + STATE(729), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1651), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(870), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -72651,79 +74027,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11332] = 20, + [11496] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1980), 1, - anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(886), 1, + STATE(1101), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1651), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(870), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -72732,80 +74109,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11433] = 21, + [11599] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1746), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1752), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(1768), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1112), 1, + STATE(911), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1689), 2, + ACTIONS(1748), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1750), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1769), 2, + ACTIONS(1782), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(941), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -72823,70 +74196,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11536] = 20, + [11702] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1980), 1, - anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(888), 1, + STATE(1005), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1651), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(870), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -72895,79 +74273,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11637] = 20, + [11805] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1746), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1752), 1, anon_sym_sizeof, - ACTIONS(1980), 1, + ACTIONS(1768), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(871), 1, + STATE(1063), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1651), 2, + ACTIONS(1748), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1750), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(1782), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(941), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -72976,79 +74355,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11738] = 20, + [11908] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1980), 1, - anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(884), 1, + STATE(1017), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1651), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(870), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -73057,74 +74437,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11839] = 20, + [12011] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1377), 1, anon_sym_sizeof, - ACTIONS(1980), 1, + ACTIONS(2052), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(873), 1, + STATE(740), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1651), 2, + ACTIONS(1369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1371), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(2054), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -73147,70 +74523,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11940] = 20, + [12112] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1980), 1, - anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(874), 1, + STATE(1015), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1651), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(870), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -73219,74 +74600,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12041] = 20, + [12215] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1674), 1, anon_sym_sizeof, - ACTIONS(1980), 1, + ACTIONS(2032), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(875), 1, + STATE(882), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1651), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -73309,70 +74686,157 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12142] = 20, + [12316] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1980), 1, - anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(876), 1, + STATE(1014), 1, sym__expression, - ACTIONS(89), 2, + 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(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1651), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(870), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [12419] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1690), 1, + sym_identifier, + STATE(707), 1, + sym_string_literal, + STATE(1012), 1, + sym__expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(870), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -73381,74 +74845,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12243] = 20, + [12522] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1674), 1, anon_sym_sizeof, - ACTIONS(1980), 1, + ACTIONS(2032), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(877), 1, + STATE(907), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1651), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -73471,70 +74931,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12344] = 20, + [12623] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1746), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1752), 1, anon_sym_sizeof, - ACTIONS(1980), 1, + ACTIONS(1768), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(878), 1, + STATE(1074), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1651), 2, + ACTIONS(1748), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1750), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(1782), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(941), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -73543,74 +75008,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12445] = 20, + [12726] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1674), 1, anon_sym_sizeof, - ACTIONS(1980), 1, + ACTIONS(2032), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(879), 1, + STATE(921), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1651), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -73633,70 +75094,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12546] = 20, + [12827] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1746), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1752), 1, anon_sym_sizeof, - ACTIONS(1980), 1, + ACTIONS(1768), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(880), 1, + STATE(1061), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1651), 2, + ACTIONS(1748), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1750), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(1782), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(941), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -73705,74 +75171,152 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [12930] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1690), 1, + sym_identifier, + STATE(707), 1, + sym_string_literal, + STATE(1114), 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(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(870), 5, + sym_pointer_expression, sym_subscript_expression, sym_call_expression, - sym_gnu_asm_expression, sym_field_expression, - sym_compound_literal_expression, sym_parenthesized_expression, + STATE(725), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12647] = 20, + [13033] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1655), 1, + ACTIONS(1383), 1, anon_sym_sizeof, - ACTIONS(1980), 1, + ACTIONS(2006), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(732), 1, sym_string_literal, - STATE(869), 1, + STATE(809), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1651), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1982), 2, + ACTIONS(2010), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -73795,75 +75339,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12748] = 21, + [13134] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1383), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(2006), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(732), 1, sym_string_literal, - STATE(1055), 1, + STATE(806), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1689), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1769), 2, + ACTIONS(2010), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -73872,70 +75411,74 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12851] = 20, + [13235] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1383), 1, + anon_sym_sizeof, + ACTIONS(2006), 1, anon_sym_LPAREN2, - STATE(736), 1, + STATE(732), 1, sym_string_literal, - STATE(767), 1, + STATE(804), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1354), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1966), 2, + ACTIONS(2010), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -73958,65 +75501,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12952] = 20, + [13336] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1674), 1, + anon_sym_sizeof, + ACTIONS(2032), 1, anon_sym_LPAREN2, - STATE(736), 1, + STATE(707), 1, sym_string_literal, - STATE(765), 1, + STATE(923), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1354), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1966), 2, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -74039,75 +75582,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13053] = 21, + [13437] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1365), 1, sym_identifier, - STATE(687), 1, + ACTIONS(1383), 1, + anon_sym_sizeof, + ACTIONS(2006), 1, + anon_sym_LPAREN2, + STATE(732), 1, sym_string_literal, - STATE(1076), 1, + STATE(799), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2008), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2010), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74116,80 +75654,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13156] = 21, + [13538] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1383), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(2006), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(732), 1, sym_string_literal, - STATE(1030), 1, + STATE(831), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1689), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1769), 2, + ACTIONS(2010), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74198,80 +75735,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13259] = 21, + [13639] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1365), 1, sym_identifier, - STATE(687), 1, + ACTIONS(1377), 1, + anon_sym_sizeof, + ACTIONS(2052), 1, + anon_sym_LPAREN2, + STATE(707), 1, sym_string_literal, - STATE(1019), 1, + STATE(857), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1369), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1371), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2054), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74280,80 +75816,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13362] = 21, + [13740] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1377), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(2052), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1056), 1, + STATE(837), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1689), 2, + ACTIONS(1369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1371), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1769), 2, + ACTIONS(2054), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74362,80 +75897,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13465] = 21, + [13841] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1950), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(1383), 1, + anon_sym_sizeof, + ACTIONS(2006), 1, anon_sym_LPAREN2, - STATE(724), 1, - sym__expression, - STATE(736), 1, + STATE(732), 1, sym_string_literal, - ACTIONS(89), 2, + STATE(789), 1, + sym__expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1681), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1956), 2, + ACTIONS(2010), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(801), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74444,80 +75978,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13568] = 21, + [13942] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1950), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1952), 1, + ACTIONS(1383), 1, + anon_sym_sizeof, + ACTIONS(2006), 1, anon_sym_LPAREN2, STATE(732), 1, - sym__expression, - STATE(736), 1, sym_string_literal, - ACTIONS(89), 2, + STATE(798), 1, + sym__expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1681), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1956), 2, + ACTIONS(2010), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(801), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74526,76 +76059,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13671] = 21, + [14043] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1693), 1, - anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(2100), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1048), 1, + STATE(739), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1769), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -74613,65 +76150,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13774] = 20, + [14146] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1383), 1, anon_sym_sizeof, - ACTIONS(1960), 1, + ACTIONS(2006), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(732), 1, sym_string_literal, - STATE(798), 1, + STATE(794), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1962), 2, + ACTIONS(2008), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2010), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -74694,75 +76231,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13875] = 21, + [14247] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1674), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(2032), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1040), 1, + STATE(911), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1689), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1769), 2, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74771,80 +76303,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13978] = 21, + [14348] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1383), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(2006), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(732), 1, sym_string_literal, - STATE(1035), 1, + STATE(802), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1689), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1769), 2, + ACTIONS(2010), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74853,76 +76384,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14081] = 21, + [14449] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1687), 1, - sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1696), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(2016), 1, + sym_identifier, + ACTIONS(2018), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(732), 1, sym_string_literal, - STATE(1074), 1, + STATE(987), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1689), 2, + ACTIONS(1692), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1694), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1769), 2, + ACTIONS(2020), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -74940,75 +76475,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14184] = 21, + [14552] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1383), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(2006), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(732), 1, sym_string_literal, - STATE(1037), 1, + STATE(734), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1689), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(2008), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1769), 2, + ACTIONS(2010), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75017,80 +76547,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14287] = 21, + [14653] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1377), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(2052), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1051), 1, + STATE(734), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1689), 2, + ACTIONS(1369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1371), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1769), 2, + ACTIONS(2054), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75099,80 +76628,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14390] = 21, + [14754] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1377), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(2052), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1060), 1, + STATE(731), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1689), 2, + ACTIONS(1369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1371), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1769), 2, + ACTIONS(2054), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75181,158 +76709,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14493] = 21, + [14855] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1693), 1, - anon_sym_sizeof, - ACTIONS(1757), 1, - anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(868), 1, + STATE(1046), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1769), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(894), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [14596] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1687), 1, - sym_identifier, - ACTIONS(1693), 1, - anon_sym_sizeof, - ACTIONS(1757), 1, - anon_sym_LPAREN2, - STATE(687), 1, - sym_string_literal, - STATE(1062), 1, - sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1691), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1769), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75350,153 +76800,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14699] = 21, + [14958] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1693), 1, - anon_sym_sizeof, - ACTIONS(1757), 1, - anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(1066), 1, + STATE(731), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1769), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(894), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [14802] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1950), 1, - sym_identifier, - ACTIONS(2074), 1, - anon_sym_LPAREN2, - STATE(728), 1, - sym__expression, - STATE(736), 1, - sym_string_literal, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1681), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1683), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1954), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1956), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(801), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75514,75 +76882,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14905] = 21, + [15061] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1365), 1, sym_identifier, - STATE(687), 1, + ACTIONS(1377), 1, + anon_sym_sizeof, + ACTIONS(2052), 1, + anon_sym_LPAREN2, + STATE(707), 1, sym_string_literal, - STATE(1087), 1, + STATE(839), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1369), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1371), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2054), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75591,80 +76954,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15008] = 21, + [15162] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1365), 1, sym_identifier, - STATE(687), 1, + ACTIONS(1377), 1, + anon_sym_sizeof, + ACTIONS(2052), 1, + anon_sym_LPAREN2, + STATE(707), 1, sym_string_literal, - STATE(1027), 1, + STATE(842), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1369), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1371), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2054), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75673,70 +77035,74 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15111] = 20, + [15263] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1377), 1, anon_sym_sizeof, - ACTIONS(1960), 1, + ACTIONS(2052), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(787), 1, + STATE(846), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(1369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1371), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1962), 2, + ACTIONS(2054), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75759,65 +77125,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15212] = 20, + [15364] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1674), 1, anon_sym_sizeof, - ACTIONS(1960), 1, + ACTIONS(2032), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(737), 1, + STATE(933), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1962), 2, + ACTIONS(1772), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75840,75 +77206,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15313] = 21, + [15465] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1365), 1, sym_identifier, - STATE(687), 1, + ACTIONS(1674), 1, + anon_sym_sizeof, + ACTIONS(2032), 1, + anon_sym_LPAREN2, + STATE(707), 1, sym_string_literal, - STATE(1020), 1, + STATE(935), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1670), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1672), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1772), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2034), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75917,70 +77278,74 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15416] = 20, + [15566] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1674), 1, anon_sym_sizeof, - ACTIONS(1960), 1, + ACTIONS(2032), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(788), 1, + STATE(927), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1962), 2, + ACTIONS(1772), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76003,65 +77368,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15517] = 20, + [15667] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1377), 1, anon_sym_sizeof, - ACTIONS(1960), 1, + ACTIONS(2052), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(789), 1, + STATE(847), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(1369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1371), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1962), 2, + ACTIONS(2054), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76084,65 +77449,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15618] = 20, + [15768] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1377), 1, anon_sym_sizeof, - ACTIONS(1960), 1, + ACTIONS(2052), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(790), 1, + STATE(729), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(1369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1371), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1962), 2, + ACTIONS(2054), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76165,70 +77530,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15719] = 20, + [15869] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1370), 1, - anon_sym_sizeof, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(779), 1, + STATE(1043), 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(89), 2, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1368), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1962), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(870), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76237,79 +77607,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15820] = 20, + [15972] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1746), 1, sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1752), 1, anon_sym_sizeof, - ACTIONS(1960), 1, + ACTIONS(2102), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(794), 1, + STATE(900), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(1748), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1750), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1962), 2, + ACTIONS(1772), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1782), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(941), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76318,79 +77689,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15921] = 20, + [16075] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(1370), 1, - anon_sym_sizeof, - ACTIONS(1960), 1, - anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(800), 1, + STATE(1116), 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(89), 2, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1368), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1962), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(870), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76399,79 +77771,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16022] = 20, + [16178] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1746), 1, sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1752), 1, anon_sym_sizeof, - ACTIONS(1960), 1, + ACTIONS(1768), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(797), 1, + STATE(901), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(1748), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1750), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1962), 2, + ACTIONS(1772), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1782), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(941), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76480,74 +77853,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16123] = 20, + [16281] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1674), 1, anon_sym_sizeof, - ACTIONS(1960), 1, + ACTIONS(2032), 1, anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(786), 1, + STATE(920), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1962), 2, + ACTIONS(1772), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76570,75 +77939,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16224] = 21, + [16382] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1365), 1, sym_identifier, - STATE(687), 1, + ACTIONS(1674), 1, + anon_sym_sizeof, + ACTIONS(2032), 1, + anon_sym_LPAREN2, + STATE(707), 1, sym_string_literal, - STATE(1070), 1, + STATE(930), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1670), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1672), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1772), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2034), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76647,70 +78011,74 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16327] = 20, + [16483] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1674), 1, + anon_sym_sizeof, + ACTIONS(2032), 1, anon_sym_LPAREN2, - STATE(736), 1, + STATE(707), 1, sym_string_literal, - STATE(737), 1, + STATE(925), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1354), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1966), 2, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76733,65 +78101,147 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16428] = 20, + [16584] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, + anon_sym_sizeof, + ACTIONS(87), 1, anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1690), 1, + sym_identifier, + STATE(707), 1, + sym_string_literal, + STATE(1050), 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(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(870), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [16687] = 20, + ACTIONS(3), 1, + sym_comment, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1377), 1, + anon_sym_sizeof, + ACTIONS(2052), 1, anon_sym_LPAREN2, - STATE(724), 1, - sym__expression, - STATE(736), 1, + STATE(707), 1, sym_string_literal, - ACTIONS(89), 2, + STATE(848), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1354), 2, + ACTIONS(1369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1371), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1966), 2, + ACTIONS(2054), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76814,65 +78264,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16529] = 20, + [16788] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1365), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1674), 1, + anon_sym_sizeof, + ACTIONS(2032), 1, anon_sym_LPAREN2, - STATE(732), 1, - sym__expression, - STATE(736), 1, + STATE(707), 1, sym_string_literal, - ACTIONS(89), 2, + STATE(901), 1, + sym__expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1354), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1672), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1966), 2, + ACTIONS(2034), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76895,75 +78345,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16630] = 21, + [16889] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1365), 1, sym_identifier, - STATE(687), 1, + ACTIONS(1674), 1, + anon_sym_sizeof, + ACTIONS(2104), 1, + anon_sym_LPAREN2, + STATE(707), 1, sym_string_literal, - STATE(1093), 1, + STATE(900), 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(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1670), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1672), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1772), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2034), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76972,80 +78417,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16733] = 21, + [16990] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1365), 1, sym_identifier, - STATE(687), 1, - sym_string_literal, - STATE(1098), 1, + ACTIONS(1383), 1, + anon_sym_sizeof, + ACTIONS(2006), 1, + anon_sym_LPAREN2, + STATE(729), 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(89), 2, + STATE(732), 1, + sym_string_literal, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2008), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2010), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77054,75 +78498,84 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16836] = 20, + [17091] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1746), 1, sym_identifier, - ACTIONS(2076), 1, + ACTIONS(1752), 1, + anon_sym_sizeof, + ACTIONS(1768), 1, anon_sym_LPAREN2, - STATE(728), 1, - sym__expression, - STATE(736), 1, + STATE(707), 1, sym_string_literal, - ACTIONS(89), 2, + STATE(1108), 1, + sym__expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1354), 2, + ACTIONS(1748), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1356), 2, + ACTIONS(1750), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1954), 2, + ACTIONS(1772), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1966), 2, + ACTIONS(1782), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(708), 22, + STATE(941), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77131,33 +78584,29 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16937] = 21, + [17194] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - ACTIONS(2078), 1, - anon_sym_LPAREN2, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(728), 1, + STATE(1100), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77168,43 +78617,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(870), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77222,24 +78671,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17040] = 21, + [17297] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(159), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1690), 1, sym_identifier, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - STATE(732), 1, + STATE(1110), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77250,43 +78699,125 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(870), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [17400] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1746), 1, + sym_identifier, + ACTIONS(1752), 1, + anon_sym_sizeof, + ACTIONS(1768), 1, + anon_sym_LPAREN2, + STATE(707), 1, + sym_string_literal, + STATE(930), 1, + sym__expression, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1748), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1750), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1772), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1782), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(844), 5, + STATE(941), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(708), 17, + STATE(725), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77304,45 +78835,221 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17143] = 14, + [17503] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 1, - anon_sym_const, - ACTIONS(1701), 1, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1696), 1, + anon_sym_sizeof, + ACTIONS(2016), 1, + sym_identifier, + ACTIONS(2018), 1, anon_sym_LPAREN2, - ACTIONS(1707), 1, + STATE(732), 1, + sym_string_literal, + STATE(1000), 1, + sym__expression, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1692), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1694), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2008), 2, anon_sym_STAR, - ACTIONS(1714), 1, - anon_sym_EQ, - STATE(664), 1, + anon_sym_AMP, + ACTIONS(2020), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(844), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(725), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [17606] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1365), 1, + sym_identifier, + ACTIONS(1377), 1, + anon_sym_sizeof, + ACTIONS(2052), 1, + anon_sym_LPAREN2, + STATE(707), 1, sym_string_literal, - STATE(810), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1720), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2080), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + STATE(840), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1369), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1371), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2054), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1710), 8, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(1718), 10, + STATE(725), 22, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [17707] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2106), 1, + sym_identifier, + STATE(669), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2110), 16, + aux_sym_preproc_elif_token1, + 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___attribute__, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2108), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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, @@ -77353,9 +79060,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1705), 11, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [17778] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2112), 1, + sym_identifier, + STATE(669), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2117), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -77365,34 +79091,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1699), 12, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2115), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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, - [17231] = 6, + [17849] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2082), 1, + ACTIONS(2122), 1, sym_identifier, STATE(668), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2086), 16, + ACTIONS(2126), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77409,7 +79159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2084), 33, + ACTIONS(2124), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77443,101 +79193,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [17302] = 21, + [17920] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + STATE(670), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1708), 17, + aux_sym_preproc_elif_token1, + 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___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(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2088), 1, - anon_sym_LBRACE, - STATE(747), 1, - sym_ms_call_modifier, - STATE(793), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1143), 1, - sym__declaration_specifiers, - STATE(132), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 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, - STATE(750), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [17403] = 6, + ACTIONS(1702), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_DASH_GT, + [17988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2090), 1, + ACTIONS(2128), 17, + aux_sym_preproc_elif_token1, + 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___attribute__, + anon_sym_EQ, + anon_sym_DOT, sym_identifier, - STATE(662), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(95), 5, + ACTIONS(2130), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_DASH_GT, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2094), 16, + [18051] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2132), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77554,7 +79336,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2092), 33, + sym_identifier, + ACTIONS(2134), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77588,58 +79371,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [17474] = 21, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [18114] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2146), 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(1104), 1, + ACTIONS(2149), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, - ACTIONS(2096), 1, - anon_sym_LBRACE, - STATE(748), 1, - sym_ms_call_modifier, - STATE(793), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1156), 1, - sym__declaration_specifiers, - STATE(412), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 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, - STATE(750), 7, + ACTIONS(2152), 1, + anon_sym___declspec, + STATE(754), 1, + sym_alignas_qualifier, + ACTIONS(2155), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2138), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(674), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -77647,7 +79404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + ACTIONS(2140), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -77657,7 +79414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(2143), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -77668,181 +79425,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [17575] = 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(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, - ACTIONS(2098), 1, - anon_sym_LBRACE, - STATE(744), 1, - sym_ms_call_modifier, - STATE(793), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1154), 1, - sym__declaration_specifiers, - STATE(341), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, + ACTIONS(2136), 17, + anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(750), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [17676] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, sym_primitive_type, - ACTIONS(51), 1, anon_sym_enum, - ACTIONS(53), 1, anon_sym_struct, - ACTIONS(55), 1, anon_sym_union, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, sym_identifier, - ACTIONS(2100), 1, - anon_sym_LBRACE, - STATE(741), 1, - sym_ms_call_modifier, - STATE(793), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1155), 1, - sym__declaration_specifiers, - STATE(385), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 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, - STATE(750), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [17777] = 6, + [18192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2102), 1, - sym_identifier, - STATE(668), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2109), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2107), 16, + ACTIONS(2158), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77857,72 +79461,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2105), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [17848] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(664), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1705), 17, - aux_sym_preproc_elif_token1, - 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___attribute__, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(1699), 33, + ACTIONS(2160), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77938,8 +79483,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -77956,10 +79502,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [17916] = 3, + [18254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2112), 17, + ACTIONS(2162), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77974,70 +79520,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2114), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [17979] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2116), 17, - aux_sym_preproc_elif_token1, - 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___attribute__, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2118), 38, + ACTIONS(2164), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78053,8 +79542,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -78071,15 +79561,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [18042] = 3, + [18316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2120), 20, + ACTIONS(2166), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78100,7 +79585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2122), 34, + ACTIONS(2168), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78135,10 +79620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18104] = 3, + [18378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2124), 20, + ACTIONS(2170), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78159,7 +79644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2126), 34, + ACTIONS(2172), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78194,10 +79679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18166] = 3, + [18440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2128), 20, + ACTIONS(2174), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78218,7 +79703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2130), 34, + ACTIONS(2176), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78253,10 +79738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18228] = 3, + [18502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2132), 20, + ACTIONS(2178), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78277,7 +79762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2134), 34, + ACTIONS(2180), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78312,10 +79797,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18290] = 3, + [18564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2136), 20, + ACTIONS(2182), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78336,7 +79821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2138), 34, + ACTIONS(2184), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78371,10 +79856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18352] = 3, + [18626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2140), 20, + ACTIONS(2186), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78395,7 +79880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2142), 34, + ACTIONS(2188), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78430,10 +79915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18414] = 3, + [18688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2144), 20, + ACTIONS(2190), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78454,7 +79939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2146), 34, + ACTIONS(2192), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78489,10 +79974,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18476] = 3, + [18750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 20, + ACTIONS(2194), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78513,7 +79998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2150), 34, + ACTIONS(2196), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78548,308 +80033,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18538] = 3, + [18812] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 20, - aux_sym_preproc_elif_token1, - 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___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2154), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_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_DASH_GT, - [18600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2156), 20, - aux_sym_preproc_elif_token1, - 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___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2158), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_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_DASH_GT, - [18662] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2162), 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, - 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(2160), 30, - 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___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [18721] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2160), 17, - aux_sym_preproc_elif_token1, - 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(33), 1, anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2162), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(131), 1, 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, - anon_sym_DASH_GT, - [18780] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1677), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - 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(1675), 30, - 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___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + ACTIONS(1830), 1, sym_identifier, - [18839] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2174), 1, - anon_sym___attribute__, - ACTIONS(2177), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2180), 1, - anon_sym___declspec, - ACTIONS(2166), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(685), 7, + STATE(141), 1, + sym_compound_statement, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1166), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(703), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78857,7 +80089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2168), 9, + ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -78867,7 +80099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2171), 10, + ACTIONS(45), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -78878,169 +80110,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(2164), 17, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, + [18911] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, sym_primitive_type, + ACTIONS(53), 1, anon_sym_enum, + ACTIONS(55), 1, anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - sym_identifier, - [18910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1673), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - 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(1671), 30, - 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___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [18969] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2183), 1, - sym_identifier, - STATE(664), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2187), 15, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2185), 29, + ACTIONS(1756), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(1758), 1, 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_DASH_GT, - [19034] = 20, + ACTIONS(1830), 1, + sym_identifier, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1182), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1670), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(752), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [19010] = 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, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(371), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1830), 1, sym_identifier, - STATE(398), 1, + STATE(153), 1, sym_compound_statement, - STATE(793), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, + STATE(1166), 1, sym__declaration_specifiers, - STATE(700), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(685), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -79048,13 +80229,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79083,215 +80264,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19126] = 3, + [19109] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2189), 17, - aux_sym_preproc_elif_token1, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2191), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [19184] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2193), 17, - aux_sym_preproc_elif_token1, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2195), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [19242] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 17, - aux_sym_preproc_elif_token1, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2199), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [19300] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 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, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1104), 1, + ACTIONS(376), 1, + anon_sym_LBRACE, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1747), 1, - anon_sym_RPAREN, - ACTIONS(1831), 1, + ACTIONS(1830), 1, sym_identifier, - STATE(793), 1, + STATE(362), 1, + sym_compound_statement, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1184), 1, + STATE(1166), 1, sym__declaration_specifiers, - STATE(1670), 2, - sym_variadic_parameter, - sym_parameter_declaration, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(697), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79320,7 +80341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19392] = 20, + [19208] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -79329,27 +80350,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(51), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1104), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1830), 1, sym_identifier, - STATE(426), 1, + STATE(420), 1, sym_compound_statement, - STATE(793), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, + STATE(1166), 1, sym__declaration_specifiers, - STATE(735), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(703), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -79357,13 +80383,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79392,36 +80418,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19484] = 20, + [19307] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(51), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1104), 1, + ACTIONS(376), 1, + anon_sym_LBRACE, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1830), 1, sym_identifier, - STATE(431), 1, + STATE(347), 1, sym_compound_statement, - STATE(793), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, + STATE(1166), 1, sym__declaration_specifiers, - STATE(710), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(703), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -79429,13 +80460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79464,36 +80495,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19576] = 20, + [19406] = 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, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(371), 1, + ACTIONS(432), 1, anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1830), 1, sym_identifier, - STATE(346), 1, + STATE(309), 1, sym_compound_statement, - STATE(793), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, + STATE(1166), 1, sym__declaration_specifiers, - STATE(735), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(702), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -79501,13 +80537,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79536,161 +80572,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2201), 17, - aux_sym_preproc_elif_token1, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2203), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [19726] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2205), 17, - aux_sym_preproc_elif_token1, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2207), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [19784] = 21, + [19505] = 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, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1104), 1, + ACTIONS(432), 1, + anon_sym_LBRACE, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2209), 1, + ACTIONS(1830), 1, sym_identifier, - ACTIONS(2211), 1, - anon_sym_RPAREN, - STATE(793), 1, + STATE(316), 1, + sym_compound_statement, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1184), 1, + STATE(1166), 1, sym__declaration_specifiers, - STATE(1506), 1, - sym_variadic_parameter, - STATE(1670), 1, - sym_parameter_declaration, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(703), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79719,36 +80649,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19878] = 20, + [19604] = 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, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(423), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1830), 1, sym_identifier, - STATE(325), 1, + STATE(130), 1, sym_compound_statement, - STATE(793), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, + STATE(1166), 1, sym__declaration_specifiers, - STATE(705), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(695), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -79756,13 +80691,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79791,36 +80726,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19970] = 20, + [19703] = 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(41), 1, + anon_sym_LBRACE, ACTIONS(51), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(371), 1, - anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1830), 1, sym_identifier, - STATE(388), 1, + STATE(416), 1, sym_compound_statement, - STATE(793), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, + STATE(1166), 1, sym__declaration_specifiers, - STATE(735), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(699), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -79828,13 +80768,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79863,146 +80803,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 17, - aux_sym_preproc_elif_token1, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2215), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [20120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2217), 17, - aux_sym_preproc_elif_token1, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2219), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [20178] = 20, + [19802] = 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, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1830), 1, sym_identifier, - STATE(140), 1, + STATE(133), 1, sym_compound_statement, - STATE(793), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, + STATE(1166), 1, sym__declaration_specifiers, - STATE(716), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(703), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80010,13 +80845,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80045,105 +80880,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20270] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2221), 17, - aux_sym_preproc_elif_token1, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2223), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [20328] = 20, + [19901] = 23, 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, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(423), 1, - anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2198), 1, sym_identifier, - STATE(383), 1, - sym_compound_statement, - STATE(793), 1, + ACTIONS(2200), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, + STATE(1182), 1, sym__declaration_specifiers, - STATE(735), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, + STATE(1542), 1, + sym_variadic_parameter, + STATE(1670), 1, + sym_parameter_declaration, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80172,201 +80958,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2225), 17, - aux_sym_preproc_elif_token1, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2227), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [20478] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2229), 17, - aux_sym_preproc_elif_token1, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2231), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [20536] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2233), 17, - aux_sym_preproc_elif_token1, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2235), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [20594] = 20, + [20002] = 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, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1830), 1, sym_identifier, - STATE(147), 1, + STATE(323), 1, sym_compound_statement, - STATE(793), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, + STATE(1166), 1, sym__declaration_specifiers, - STATE(735), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(703), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80374,13 +81000,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80409,36 +81035,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20686] = 20, + [20101] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(51), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1104), 1, + ACTIONS(376), 1, + anon_sym_LBRACE, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1830), 1, sym_identifier, - STATE(417), 1, + STATE(320), 1, sym_compound_statement, - STATE(793), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, + STATE(1166), 1, sym__declaration_specifiers, - STATE(735), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(690), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80446,13 +81077,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80481,7 +81112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20778] = 20, + [20200] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -80490,27 +81121,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(51), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1104), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1830), 1, sym_identifier, - STATE(413), 1, + STATE(412), 1, sym_compound_statement, - STATE(793), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, + STATE(1166), 1, sym__declaration_specifiers, - STATE(693), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(703), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80518,13 +81154,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80553,256 +81189,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20870] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2237), 17, - aux_sym_preproc_elif_token1, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2239), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [20928] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2241), 17, - aux_sym_preproc_elif_token1, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2243), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [20986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2245), 17, - aux_sym_preproc_elif_token1, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2247), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [21044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 17, - aux_sym_preproc_elif_token1, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2251), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [21102] = 20, + [20299] = 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, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(432), 1, anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1830), 1, sym_identifier, - STATE(141), 1, + STATE(308), 1, sym_compound_statement, - STATE(793), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, + STATE(1166), 1, sym__declaration_specifiers, - STATE(735), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(692), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80810,13 +81231,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80845,36 +81266,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21194] = 20, + [20398] = 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(41), 1, + anon_sym_LBRACE, ACTIONS(51), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(371), 1, - anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1830), 1, sym_identifier, - STATE(381), 1, + STATE(421), 1, sym_compound_statement, - STATE(793), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, + STATE(1166), 1, sym__declaration_specifiers, - STATE(695), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(689), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80882,13 +81308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80917,91 +81343,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21286] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2253), 17, - aux_sym_preproc_elif_token1, - 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___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2255), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [21344] = 20, + [20497] = 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, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(432), 1, anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1830), 1, sym_identifier, - STATE(138), 1, + STATE(328), 1, sym_compound_statement, - STATE(793), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, + STATE(1166), 1, sym__declaration_specifiers, - STATE(709), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(703), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -81009,13 +81385,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81044,50 +81420,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21436] = 20, + [20596] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2202), 1, + sym_identifier, + ACTIONS(2211), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(2214), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2217), 1, anon_sym___declspec, - ACTIONS(49), 1, + ACTIONS(2220), 1, + anon_sym_LBRACE, + ACTIONS(2228), 1, sym_primitive_type, - ACTIONS(51), 1, + ACTIONS(2231), 1, anon_sym_enum, - ACTIONS(53), 1, + ACTIONS(2234), 1, anon_sym_struct, - ACTIONS(55), 1, + ACTIONS(2237), 1, anon_sym_union, - ACTIONS(423), 1, - anon_sym_LBRACE, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, - STATE(333), 1, - sym_compound_statement, - STATE(793), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, + STATE(1166), 1, sym__declaration_specifiers, - STATE(721), 2, + ACTIONS(2225), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(703), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, + ACTIONS(2222), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81095,7 +81474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + ACTIONS(2205), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -81105,7 +81484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(2208), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -81116,50 +81495,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21528] = 20, + [20692] = 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, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(423), 1, - anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1830), 1, sym_identifier, - STATE(310), 1, - sym_compound_statement, - STATE(793), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, + STATE(1182), 1, sym__declaration_specifiers, - STATE(735), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1703), 2, + sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81188,32 +81570,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21620] = 7, + [20788] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2257), 1, - anon_sym_EQ, - STATE(664), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2259), 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(1705), 14, - aux_sym_preproc_elif_token1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2240), 1, + sym_identifier, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1182), 1, + sym__declaration_specifiers, + STATE(1703), 1, + sym_parameter_declaration, + STATE(1748), 1, + sym_variadic_parameter, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(752), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [20886] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2249), 1, + anon_sym_static, + STATE(751), 1, + sym_alignas_qualifier, + ACTIONS(2252), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(706), 2, + sym_type_qualifier, + aux_sym_array_declarator_repeat1, + ACTIONS(2246), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2242), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(2244), 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, + [20955] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2255), 1, + sym_identifier, + STATE(670), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2259), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -81226,13 +81733,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - sym_identifier, - ACTIONS(1699), 18, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2257), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81240,13 +81747,82 @@ static const uint16_t ts_small_parse_table[] = { 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, - [21685] = 3, + [21020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 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, + 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(1686), 30, + 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___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [21079] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2263), 9, @@ -81259,7 +81835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(2261), 40, + ACTIONS(2261), 42, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81293,6 +81869,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, @@ -81300,19 +81878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - [21742] = 7, + [21138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2265), 16, + ACTIONS(2265), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81328,14 +81897,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2267), 28, + ACTIONS(2267), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -81343,7 +81915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -81358,22 +81933,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [21807] = 8, + anon_sym_DASH_GT, + [21197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(1684), 21, anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 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, + 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(1682), 30, + 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___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [21256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 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(2275), 16, + 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(2265), 30, + 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___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [21315] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81389,14 +82065,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2277), 26, + ACTIONS(2271), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -81405,6 +82084,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, @@ -81417,10 +82098,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21874] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [21373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2281), 16, + ACTIONS(2273), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81436,8 +82120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2283), 33, + ACTIONS(2275), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -81452,9 +82138,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, @@ -81469,12 +82155,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [21931] = 3, + [21431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2285), 16, + ACTIONS(2277), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81490,8 +82175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2287), 33, + ACTIONS(2279), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -81506,9 +82193,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, @@ -81523,24 +82210,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [21988] = 8, + [21489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2289), 16, + ACTIONS(2281), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81556,14 +82230,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2291), 26, + ACTIONS(2283), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -81572,6 +82249,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, @@ -81584,10 +82263,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22055] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [21547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2293), 16, + ACTIONS(2285), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81603,8 +82285,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2295), 33, + ACTIONS(2287), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -81619,9 +82303,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, @@ -81636,12 +82320,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [22112] = 3, + [21605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2297), 16, + ACTIONS(2289), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81657,8 +82340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2299), 33, + ACTIONS(2291), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -81673,9 +82358,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, @@ -81690,95 +82375,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [22169] = 20, + [21663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2293), 17, + aux_sym_preproc_elif_token1, + 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___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(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2301), 1, + anon_sym_EQ, + anon_sym_DOT, sym_identifier, - STATE(793), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1184), 1, - sym__declaration_specifiers, - STATE(1715), 1, - sym_parameter_declaration, - STATE(1773), 1, - sym_variadic_parameter, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(750), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [22260] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, + ACTIONS(2295), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - ACTIONS(2271), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + 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(2303), 16, + anon_sym_DASH_GT, + [21721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2297), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81794,14 +82450,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2305), 26, + ACTIONS(2299), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -81810,6 +82469,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, @@ -81822,22 +82483,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22327] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2307), 16, + anon_sym_DASH_GT, + [21779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2301), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81853,14 +82505,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2309), 26, + ACTIONS(2303), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -81869,6 +82524,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, @@ -81881,158 +82538,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22394] = 19, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [21837] = 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(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1831), 1, - sym_identifier, - STATE(793), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1184), 1, - sym__declaration_specifiers, - STATE(1715), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(750), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [22483] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2311), 1, - sym_identifier, - ACTIONS(2320), 1, + ACTIONS(2305), 17, + aux_sym_preproc_elif_token1, + 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___attribute__, - ACTIONS(2323), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2326), 1, - anon_sym___declspec, - ACTIONS(2329), 1, - anon_sym_LBRACE, - ACTIONS(2334), 1, - sym_primitive_type, - ACTIONS(2337), 1, - anon_sym_enum, - ACTIONS(2340), 1, - anon_sym_struct, - ACTIONS(2343), 1, - anon_sym_union, - STATE(793), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(735), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(2331), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(750), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2314), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2317), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [22572] = 5, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2307), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_DASH_GT, + [21895] = 3, ACTIONS(3), 1, sym_comment, - STATE(664), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2187), 15, + ACTIONS(2309), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82046,10 +82613,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2185), 28, + ACTIONS(2311), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -82061,7 +82632,11 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -82075,24 +82650,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [22633] = 8, + [21953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2313), 17, + aux_sym_preproc_elif_token1, + 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___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2315), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - ACTIONS(2271), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + 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(2346), 16, + anon_sym_DASH_GT, + [22011] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2317), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82108,14 +82725,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2348), 26, + ACTIONS(2319), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -82124,6 +82744,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, @@ -82136,20 +82758,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22700] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [22069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1714), 1, + ACTIONS(2321), 17, + aux_sym_preproc_elif_token1, + 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___attribute__, anon_sym_EQ, - STATE(664), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1718), 10, + anon_sym_DOT, + sym_identifier, + ACTIONS(2323), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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, @@ -82160,7 +82813,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1705), 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [22127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2325), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -82173,9 +82833,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1699), 19, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2327), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82184,173 +82853,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, 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, - [22764] = 6, + [22185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, - anon_sym_static, - STATE(739), 2, - sym_type_qualifier, - aux_sym_array_declarator_repeat1, - ACTIONS(2354), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2350), 17, + ACTIONS(2329), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(2352), 19, - 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___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2331), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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, - 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, - [22826] = 17, + anon_sym_DASH_GT, + [22243] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2333), 16, + aux_sym_preproc_elif_token1, + 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___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(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + anon_sym_EQ, sym_identifier, - STATE(793), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1229), 1, - sym__declaration_specifiers, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(750), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [22908] = 17, + ACTIONS(2335), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [22310] = 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, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1104), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1830), 1, sym_identifier, - STATE(793), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1273), 1, + STATE(1267), 1, sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82379,238 +83055,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22990] = 17, + [22399] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2345), 16, + aux_sym_preproc_elif_token1, + 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___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(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + anon_sym_EQ, sym_identifier, - STATE(793), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1228), 1, - sym__declaration_specifiers, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(750), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [23072] = 17, + ACTIONS(2347), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [22464] = 5, 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(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + STATE(670), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2259), 15, + aux_sym_preproc_elif_token1, + 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, sym_identifier, - STATE(793), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1226), 1, - sym__declaration_specifiers, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(750), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [23154] = 17, + ACTIONS(2257), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_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, + [22525] = 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(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, - STATE(793), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1270), 1, - sym__declaration_specifiers, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(750), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [23236] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1104), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1830), 1, sym_identifier, - STATE(793), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1245), 1, + STATE(1257), 1, sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82639,159 +83239,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23318] = 3, + [22614] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 19, + ACTIONS(2337), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_RBRACK, + ACTIONS(2339), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 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, - ACTIONS(2360), 27, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2349), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym___extension__, - anon_sym_static, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [23372] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + 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___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(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + anon_sym_EQ, sym_identifier, - STATE(793), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1271), 1, - sym__declaration_specifiers, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(750), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [23454] = 17, + ACTIONS(2351), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [22681] = 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, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1104), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1830), 1, sym_identifier, - STATE(793), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1272), 1, + STATE(1278), 1, sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(750), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82820,95 +83368,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23536] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2368), 1, - anon_sym_LBRACE, - STATE(783), 1, - sym_field_declaration_list, - STATE(823), 1, - sym_attribute_specifier, - ACTIONS(2366), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2364), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [23597] = 16, + [22770] = 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, + sym_primitive_type, ACTIONS(53), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - ACTIONS(1104), 1, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1830), 1, sym_identifier, - STATE(799), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, sym__type_specifier, - STATE(843), 1, + STATE(785), 1, aux_sym_sized_type_specifier_repeat1, + STATE(1277), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, + STATE(822), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(685), 7, + STATE(752), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82937,33 +83438,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23676] = 8, + [22859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1714), 1, - anon_sym_EQ, - ACTIONS(1723), 1, - anon_sym_COLON, - STATE(664), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1718), 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(1705), 12, + ACTIONS(2353), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -82976,8 +83455,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1699), 15, + anon_sym___attribute__, + anon_sym_EQ, + sym_identifier, + ACTIONS(2355), 33, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82986,28 +83473,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, - [23739] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1714), 1, - anon_sym_EQ, - ACTIONS(1741), 1, anon_sym_COLON, - STATE(664), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1718), 10, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -83018,7 +83488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1705), 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [22916] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2357), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -83031,8 +83509,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1699), 15, + anon_sym___attribute__, + anon_sym_EQ, + sym_identifier, + ACTIONS(2359), 33, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83041,28 +83527,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_COLON, anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [23802] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1714), 1, - anon_sym_EQ, - ACTIONS(1725), 1, - anon_sym_COLON, - STATE(664), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1718), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -83073,7 +83542,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1705), 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [22973] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2361), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -83086,9 +83575,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1699), 15, + anon_sym___attribute__, + anon_sym_EQ, + sym_identifier, + ACTIONS(2363), 26, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -83096,28 +83592,9 @@ static const uint16_t ts_small_parse_table[] = { 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, - [23865] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1714), 1, - anon_sym_EQ, - ACTIONS(2370), 1, + anon_sym_RBRACE, anon_sym_COLON, - STATE(664), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1718), 10, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -83128,7 +83605,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1705), 12, + [23040] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2365), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -83141,146 +83634,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1699), 15, + anon_sym___attribute__, + anon_sym_EQ, + sym_identifier, + ACTIONS(2367), 26, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [23928] = 7, + 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, + [23107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2368), 1, - anon_sym_LBRACE, - STATE(804), 1, - sym_field_declaration_list, - STATE(839), 1, - sym_attribute_specifier, - ACTIONS(2374), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2369), 16, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2372), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [23989] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - ACTIONS(2368), 1, - anon_sym_LBRACE, - STATE(805), 1, - sym_field_declaration_list, - STATE(818), 1, - sym_attribute_specifier, - ACTIONS(2378), 7, + anon_sym_EQ, + sym_identifier, + ACTIONS(2371), 33, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, + 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_COLON, - ACTIONS(2376), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [24050] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1714), 1, - anon_sym_EQ, - ACTIONS(1739), 1, anon_sym_COLON, - STATE(664), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1718), 10, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -83291,7 +83714,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1705), 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [23164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2373), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -83304,8 +83735,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1699), 15, + anon_sym___attribute__, + anon_sym_EQ, + sym_identifier, + ACTIONS(2375), 33, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83314,47 +83753,86 @@ 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, + 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, - [24113] = 7, + [23221] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2368), 1, - anon_sym_LBRACE, - STATE(782), 1, - sym_field_declaration_list, - STATE(829), 1, - sym_attribute_specifier, - ACTIONS(2382), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2380), 34, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(37), 1, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1830), 1, + sym_identifier, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1242), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(752), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -83364,6 +83842,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + [23310] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1830), 1, + sym_identifier, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1280), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(752), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -83372,36 +83901,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [24174] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2360), 38, - anon_sym___extension__, + ACTIONS(45), 10, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -83411,47 +83912,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, + [23399] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, sym_primitive_type, + ACTIONS(53), 1, anon_sym_enum, + ACTIONS(55), 1, anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, - sym_identifier, - [24227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2386), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2384), 38, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(1830), 1, + sym_identifier, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1238), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(752), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -83461,35 +83982,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [24280] = 8, + [23488] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1714), 1, + ACTIONS(2377), 1, anon_sym_EQ, - ACTIONS(1716), 1, - anon_sym_COLON, - STATE(664), 1, + STATE(670), 1, sym_string_literal, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1718), 10, + ACTIONS(2379), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -83500,7 +84006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1705), 12, + ACTIONS(1708), 14, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -83513,8 +84020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1699), 15, + sym_identifier, + ACTIONS(1702), 18, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83522,48 +84034,132 @@ static const uint16_t ts_small_parse_table[] = { 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, - [24343] = 7, + [23553] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2381), 16, + aux_sym_preproc_elif_token1, + 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___attribute__, - ACTIONS(2368), 1, - anon_sym_LBRACE, - STATE(780), 1, - sym_field_declaration_list, - STATE(826), 1, - sym_attribute_specifier, - ACTIONS(2390), 7, + anon_sym_EQ, + sym_identifier, + ACTIONS(2383), 26, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_RBRACE, anon_sym_COLON, - ACTIONS(2388), 34, - anon_sym___extension__, - anon_sym_extern, + 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, + [23620] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1830), 1, + sym_identifier, + STATE(754), 1, + sym_alignas_qualifier, + STATE(763), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1281), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(752), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -83573,6 +84169,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + [23709] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1717), 1, + anon_sym_EQ, + STATE(670), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1721), 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(1708), 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(1702), 19, + 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___attribute__, + 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, + [23773] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2387), 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, + ACTIONS(2385), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_static, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -83581,83 +84262,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - [24404] = 18, + [23829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2391), 19, anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2396), 1, - anon_sym_AMP_AMP, - ACTIONS(2398), 1, - anon_sym_PIPE, - ACTIONS(2400), 1, - anon_sym_CARET, - ACTIONS(2402), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + anon_sym_RBRACK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2346), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2392), 2, + 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(2389), 29, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2404), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2406), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2408), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2410), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2394), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2348), 18, + anon_sym___extension__, + anon_sym_static, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [23885] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_enum, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1830), 1, + sym_identifier, + STATE(754), 1, + sym_alignas_qualifier, + STATE(767), 1, + sym__type_specifier, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(674), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [23971] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2397), 1, + anon_sym_LBRACE, + STATE(770), 1, + sym_field_declaration_list, + STATE(820), 1, + sym_attribute_specifier, + ACTIONS(2395), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - 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_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2393), 36, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [24486] = 3, + [24034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2414), 6, + ACTIONS(2391), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2412), 38, + anon_sym_COLON, + ACTIONS(2389), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83691,88 +84501,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [24538] = 20, + [24089] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2397), 1, + anon_sym_LBRACE, + STATE(768), 1, + sym_field_declaration_list, + STATE(828), 1, + sym_attribute_specifier, + ACTIONS(2401), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2396), 1, - anon_sym_AMP_AMP, - ACTIONS(2398), 1, - anon_sym_PIPE, - ACTIONS(2400), 1, - anon_sym_CARET, - ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2420), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2422), 1, - anon_sym_QMARK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2392), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2404), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2406), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2408), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2410), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2418), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2394), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2416), 16, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2399), 36, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [24152] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2397), 1, + anon_sym_LBRACE, + STATE(772), 1, + sym_field_declaration_list, + STATE(815), 1, + sym_attribute_specifier, + ACTIONS(2405), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2403), 36, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [24624] = 3, + [24215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1677), 6, + ACTIONS(2409), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1675), 38, + anon_sym_LBRACE, + ACTIONS(2407), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83806,320 +84665,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [24676] = 20, + [24270] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2397), 1, + anon_sym_LBRACE, + STATE(782), 1, + sym_field_declaration_list, + STATE(792), 1, + sym_attribute_specifier, + ACTIONS(2413), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2396), 1, - anon_sym_AMP_AMP, - ACTIONS(2398), 1, - anon_sym_PIPE, - ACTIONS(2400), 1, - anon_sym_CARET, - ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2420), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2422), 1, - anon_sym_QMARK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2392), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2404), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2406), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2408), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2410), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2426), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2394), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2424), 16, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, - sym_identifier, - [24762] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2411), 36, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2392), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2394), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2346), 9, - aux_sym_preproc_elif_token1, - 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(2348), 23, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_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_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [24828] = 11, + [24333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2392), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2410), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2394), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2346), 7, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2348), 23, + ACTIONS(2387), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_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, - sym_identifier, - [24896] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2392), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2406), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2408), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2410), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2394), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2346), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2348), 21, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - 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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2385), 40, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [24968] = 14, + [24388] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2397), 1, + anon_sym_LBRACE, + STATE(769), 1, + sym_field_declaration_list, + STATE(801), 1, + sym_attribute_specifier, + ACTIONS(2417), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2392), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2404), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2406), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2408), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2410), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2394), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2346), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2348), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - 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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2415), 36, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [25042] = 3, + [24451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1673), 6, + ACTIONS(1688), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1671), 38, + ACTIONS(1686), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84153,449 +84880,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [25094] = 15, + [24505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(1684), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2402), 1, - anon_sym_AMP, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2392), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2404), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2406), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2408), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2410), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2394), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2346), 4, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2348), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - 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_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(1682), 40, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [25170] = 7, + [24559] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2428), 1, - anon_sym_EQ, - STATE(664), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2430), 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(1705), 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_DOT, - ACTIONS(1699), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + STATE(754), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2421), 5, + 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_STAR, + anon_sym_SEMI, + STATE(765), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2419), 9, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25230] = 16, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24629] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + STATE(754), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2425), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_CARET, - ACTIONS(2402), 1, - anon_sym_AMP, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2392), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2404), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2406), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2408), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2410), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2346), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2394), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2348), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - 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, - sym_identifier, - [25308] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2398), 1, - anon_sym_PIPE, - ACTIONS(2400), 1, - anon_sym_CARET, - ACTIONS(2402), 1, - anon_sym_AMP, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2346), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2392), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2404), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2406), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2408), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2410), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2394), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2348), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - 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, - sym_identifier, - [25388] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, + anon_sym_SEMI, + STATE(674), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2423), 9, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2394), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2346), 11, - aux_sym_preproc_elif_token1, - 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(2348), 23, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_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, sym_identifier, - [25452] = 20, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24699] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2396), 1, - anon_sym_AMP_AMP, - ACTIONS(2398), 1, - anon_sym_PIPE, - ACTIONS(2400), 1, - anon_sym_CARET, - ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2420), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2422), 1, - anon_sym_QMARK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2392), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2404), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2406), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2408), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2410), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2434), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2394), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2432), 16, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + STATE(754), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2429), 5, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, - sym_identifier, - [25538] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2440), 1, - anon_sym_AMP, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2436), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2442), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2444), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2446), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2448), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2346), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2438), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2348), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___attribute__, - 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, - [25613] = 5, + STATE(674), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2427), 9, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [24769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(819), 1, - sym_attribute_specifier, - ACTIONS(2452), 7, + ACTIONS(2433), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2450), 34, + ACTIONS(2431), 40, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84626,31 +85159,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [25668] = 5, + [24823] = 11, ACTIONS(3), 1, sym_comment, - STATE(781), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2458), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2456), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + STATE(754), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2437), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2454), 31, + STATE(764), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2435), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -84659,6 +85213,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -84668,24 +85225,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [25723] = 5, + [24893] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(816), 1, + STATE(808), 1, sym_attribute_specifier, - ACTIONS(2463), 7, + ACTIONS(2441), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84693,7 +85240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2461), 34, + ACTIONS(2439), 36, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -84726,16 +85273,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25778] = 5, + [24950] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(820), 1, + STATE(816), 1, sym_attribute_specifier, - ACTIONS(2467), 7, + ACTIONS(2445), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84743,7 +85292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2465), 34, + ACTIONS(2443), 36, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -84776,16 +85325,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25833] = 5, + [25007] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(812), 1, + STATE(821), 1, sym_attribute_specifier, - ACTIONS(2471), 7, + ACTIONS(2449), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84793,7 +85344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2469), 34, + ACTIONS(2447), 36, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -84826,42 +85377,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25888] = 9, + [25064] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1717), 1, + anon_sym_EQ, + ACTIONS(1719), 1, + anon_sym_COLON, + STATE(670), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1721), 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(1708), 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(1702), 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, + [25127] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2475), 5, + STATE(834), 1, + sym_attribute_specifier, + ACTIONS(2453), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(685), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2451), 36, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2473), 9, + anon_sym_extern, + anon_sym___declspec, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -84869,10 +85462,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -84882,51 +85476,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25951] = 10, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [25184] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2436), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2438), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2346), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1717), 1, anon_sym_EQ, - ACTIONS(2348), 23, - 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___attribute__, - anon_sym_RBRACE, + ACTIONS(1740), 1, anon_sym_COLON, - anon_sym_QMARK, + STATE(670), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1721), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -84937,28 +85514,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26016] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2438), 3, + ACTIONS(1708), 12, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2346), 10, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -84966,10 +85527,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2348), 23, + ACTIONS(1702), 15, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -84977,251 +85537,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26079] = 18, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [25247] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(823), 1, + sym_attribute_specifier, + ACTIONS(2457), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2271), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2455), 36, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - ACTIONS(2346), 1, - anon_sym_EQ, - ACTIONS(2440), 1, - anon_sym_AMP, - ACTIONS(2477), 1, - anon_sym_AMP_AMP, - ACTIONS(2479), 1, - anon_sym_PIPE, - ACTIONS(2481), 1, - anon_sym_CARET, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2436), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2442), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2444), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2446), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2448), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2438), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2348), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - 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, - [26160] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2346), 1, - anon_sym_EQ, - ACTIONS(2440), 1, - anon_sym_AMP, - ACTIONS(2479), 1, - anon_sym_PIPE, - ACTIONS(2481), 1, - anon_sym_CARET, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2436), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2442), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2444), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2446), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2448), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2438), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2348), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - 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, - [26239] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2440), 1, - anon_sym_AMP, - ACTIONS(2481), 1, - anon_sym_CARET, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2346), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2436), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2442), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2444), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2446), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2448), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2438), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2348), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - 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, - [26316] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2485), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(685), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2483), 9, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -85231,14 +85583,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26379] = 5, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [25304] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(822), 1, + STATE(805), 1, sym_attribute_specifier, - ACTIONS(2489), 7, + ACTIONS(2461), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85246,7 +85610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2487), 34, + ACTIONS(2459), 36, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -85279,42 +85643,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26434] = 9, + [25361] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2493), 5, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2467), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2465), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(791), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2463), 33, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2491), 9, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -85323,9 +85678,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -85335,55 +85687,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26497] = 14, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [25418] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2436), 2, + ACTIONS(1717), 1, + anon_sym_EQ, + ACTIONS(2470), 1, + anon_sym_COLON, + STATE(670), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1721), 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(1708), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2442), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2444), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2446), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2448), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2438), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2346), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2348), 19, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1702), 15, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [25481] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1717), 1, + anon_sym_EQ, + ACTIONS(1726), 1, + anon_sym_COLON, + STATE(670), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1721), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -85394,14 +85780,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26570] = 5, + ACTIONS(1708), 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(1702), 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, + [25544] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(821), 1, + STATE(817), 1, sym_attribute_specifier, - ACTIONS(2497), 7, + ACTIONS(2474), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85409,7 +85824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2495), 34, + ACTIONS(2472), 36, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -85442,63 +85857,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26625] = 20, + [25601] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2418), 1, + ACTIONS(1717), 1, anon_sym_EQ, - ACTIONS(2440), 1, - anon_sym_AMP, - ACTIONS(2477), 1, - anon_sym_AMP_AMP, - ACTIONS(2479), 1, - anon_sym_PIPE, - ACTIONS(2481), 1, - anon_sym_CARET, - ACTIONS(2499), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2501), 1, - anon_sym_QMARK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2436), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2442), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2444), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2446), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2448), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2438), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2416), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + ACTIONS(1742), 1, anon_sym_COLON, + STATE(670), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1721), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -85509,41 +85887,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26710] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2436), 2, + ACTIONS(1708), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2448), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2438), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2346), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, - ACTIONS(2348), 23, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1702), 15, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -85551,10 +85910,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [25664] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1717), 1, + anon_sym_EQ, + ACTIONS(1744), 1, + anon_sym_COLON, + STATE(670), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1721), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -85565,105 +85942,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26777] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2426), 1, - anon_sym_EQ, - ACTIONS(2440), 1, - anon_sym_AMP, - ACTIONS(2477), 1, - anon_sym_AMP_AMP, - ACTIONS(2479), 1, - anon_sym_PIPE, - ACTIONS(2481), 1, - anon_sym_CARET, - ACTIONS(2499), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2501), 1, - anon_sym_QMARK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2436), 2, + ACTIONS(1708), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2442), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2444), 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(2446), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2448), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2438), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2424), 16, + ACTIONS(1702), 15, 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___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26862] = 9, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [25727] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2505), 5, + STATE(830), 1, + sym_attribute_specifier, + ACTIONS(2478), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(785), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2476), 36, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2503), 9, + anon_sym_extern, + anon_sym___declspec, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -85671,10 +85997,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -85684,195 +86011,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26925] = 13, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [25784] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2436), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2444), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2446), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2448), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2438), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2346), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2348), 21, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - 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, - [26996] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2257), 1, - anon_sym_EQ, - ACTIONS(2259), 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(1705), 13, - aux_sym_preproc_elif_token1, - 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(1699), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [27051] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2434), 1, - anon_sym_EQ, - ACTIONS(2440), 1, - anon_sym_AMP, - ACTIONS(2477), 1, - anon_sym_AMP_AMP, - ACTIONS(2479), 1, - anon_sym_PIPE, - ACTIONS(2481), 1, - anon_sym_CARET, - ACTIONS(2499), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2501), 1, - anon_sym_QMARK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2436), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2442), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2444), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2446), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2448), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2438), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2432), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27136] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(832), 1, - sym_attribute_specifier, - ACTIONS(2509), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(800), 1, + sym_attribute_specifier, + ACTIONS(2482), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2507), 34, + ACTIONS(2480), 36, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -85905,16 +86071,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27191] = 5, + [25841] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(830), 1, + STATE(814), 1, sym_attribute_specifier, - ACTIONS(2513), 7, + ACTIONS(2486), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85922,7 +86090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2511), 34, + ACTIONS(2484), 36, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -85955,26 +86123,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27246] = 5, + [25898] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(809), 1, - sym_attribute_specifier, - ACTIONS(2517), 7, + ACTIONS(2488), 1, + sym_identifier, + ACTIONS(2497), 1, + sym_primitive_type, + STATE(832), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2495), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2491), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2515), 34, + ACTIONS(2493), 31, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -85983,10 +86160,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -86005,16 +86178,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, + anon_sym_alignas, + anon_sym__Alignas, + [25958] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2507), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2509), 1, + anon_sym_AMP_AMP, + ACTIONS(2511), 1, + anon_sym_PIPE, + ACTIONS(2513), 1, + anon_sym_CARET, + ACTIONS(2515), 1, + anon_sym_AMP, + ACTIONS(2525), 1, + anon_sym_QMARK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2501), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2517), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2519), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2521), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2523), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2505), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2499), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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, sym_identifier, - [27301] = 5, + [26044] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(836), 1, - sym_attribute_specifier, - ACTIONS(2521), 7, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2531), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2529), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86022,9 +86264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2519), 34, + ACTIONS(2527), 32, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -86033,10 +86276,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -86055,12 +86294,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [27356] = 3, + [26100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2525), 7, + ACTIONS(2535), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86068,7 +86308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2523), 35, + ACTIONS(2533), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86102,12 +86342,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27406] = 3, + [26152] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2529), 7, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2513), 1, + anon_sym_CARET, + ACTIONS(2515), 1, + anon_sym_AMP, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2517), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2519), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2521), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2523), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2333), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2505), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2335), 19, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + sym_identifier, + [26230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2539), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86115,7 +86419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2527), 35, + ACTIONS(2537), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86149,12 +86453,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27456] = 3, + [26282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2533), 7, + ACTIONS(2543), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86162,7 +86468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2531), 35, + ACTIONS(2541), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86196,19 +86502,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27506] = 5, + [26334] = 3, ACTIONS(3), 1, sym_comment, - STATE(781), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2539), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2537), 7, + ACTIONS(2547), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86216,7 +86517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2535), 30, + ACTIONS(2545), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86228,6 +86529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -86246,26 +86551,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [27560] = 5, + [26386] = 6, ACTIONS(3), 1, sym_comment, - STATE(781), 1, + ACTIONS(2549), 1, + anon_sym_LPAREN2, + STATE(787), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2539), 4, + ACTIONS(1715), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2543), 7, + ACTIONS(1713), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2541), 30, + ACTIONS(1700), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86295,58 +86604,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [27614] = 3, + [26444] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2547), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2337), 1, anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2509), 1, + anon_sym_AMP_AMP, + ACTIONS(2511), 1, + anon_sym_PIPE, + ACTIONS(2513), 1, + anon_sym_CARET, + ACTIONS(2515), 1, + anon_sym_AMP, + STATE(728), 1, + sym_argument_list, + ACTIONS(2333), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2517), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2519), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2521), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2523), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2505), 3, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2545), 35, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2335), 18, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + 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, + sym_identifier, + [26526] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2531), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [27664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2551), 7, + ACTIONS(2554), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86354,7 +86689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2549), 35, + ACTIONS(2552), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86366,10 +86701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -86388,19 +86719,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [27714] = 5, + [26582] = 5, ACTIONS(3), 1, sym_comment, - STATE(831), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2557), 4, + ACTIONS(2531), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2555), 7, + ACTIONS(2558), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86408,7 +86740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2553), 30, + ACTIONS(2556), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86438,18 +86770,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [27768] = 5, + [26638] = 5, ACTIONS(3), 1, sym_comment, - STATE(817), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2563), 4, + ACTIONS(2531), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2561), 7, + ACTIONS(2562), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86457,7 +86791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2559), 30, + ACTIONS(2560), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86487,11 +86821,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [26694] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2511), 1, + anon_sym_PIPE, + ACTIONS(2513), 1, + anon_sym_CARET, + ACTIONS(2515), 1, + anon_sym_AMP, + STATE(728), 1, + sym_argument_list, + ACTIONS(2333), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2517), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2519), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2521), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2523), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2505), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2335), 19, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + sym_identifier, + [26774] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2517), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2519), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2521), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2523), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2505), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2333), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2335), 19, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, sym_identifier, - [27822] = 3, + [26848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2567), 7, + ACTIONS(2566), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86499,7 +86958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2565), 35, + ACTIONS(2564), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86533,19 +86992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27872] = 5, + [26900] = 3, ACTIONS(3), 1, sym_comment, - STATE(781), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2539), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2571), 7, + ACTIONS(2570), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86553,7 +87007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2569), 30, + ACTIONS(2568), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86565,6 +87019,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -86583,58 +87041,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [27926] = 3, + [26952] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2575), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2337), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2573), 35, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(2339), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2505), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2333), 11, + aux_sym_preproc_elif_token1, + 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(2335), 23, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_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, sym_identifier, - [27976] = 3, + [27016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2579), 7, + ACTIONS(2574), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86642,7 +87111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2577), 35, + ACTIONS(2572), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86676,12 +87145,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28026] = 3, + [27068] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 7, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2519), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2521), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2523), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2505), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2333), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2335), 21, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + sym_identifier, + [27140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2578), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86689,7 +87219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2581), 35, + ACTIONS(2576), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86723,12 +87253,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28076] = 3, + [27192] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2587), 7, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2523), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2505), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2333), 7, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2335), 23, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_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, + sym_identifier, + [27260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2582), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86736,7 +87325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2585), 35, + ACTIONS(2580), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86770,12 +87359,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28126] = 3, + [27312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2591), 7, + ACTIONS(2586), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86783,7 +87374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2589), 35, + ACTIONS(2584), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86817,12 +87408,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28176] = 3, + [27364] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2505), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2333), 9, + aux_sym_preproc_elif_token1, + 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(2335), 23, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_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, + sym_identifier, + [27430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2595), 7, + ACTIONS(2590), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86830,7 +87479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2593), 35, + ACTIONS(2588), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86864,12 +87513,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28226] = 3, + [27482] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 7, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2507), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2509), 1, + anon_sym_AMP_AMP, + ACTIONS(2511), 1, + anon_sym_PIPE, + ACTIONS(2513), 1, + anon_sym_CARET, + ACTIONS(2515), 1, + anon_sym_AMP, + ACTIONS(2525), 1, + anon_sym_QMARK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2517), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2519), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2521), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2523), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2594), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2505), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2592), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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, + sym_identifier, + [27568] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2596), 1, + anon_sym_EQ, + STATE(670), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2598), 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(1708), 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_DOT, + ACTIONS(1702), 14, + anon_sym_DOT_DOT_DOT, + 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_DASH_GT, + [27628] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2507), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2509), 1, + anon_sym_AMP_AMP, + ACTIONS(2511), 1, + anon_sym_PIPE, + ACTIONS(2513), 1, + anon_sym_CARET, + ACTIONS(2515), 1, + anon_sym_AMP, + ACTIONS(2525), 1, + anon_sym_QMARK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2517), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2519), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2521), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2523), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2602), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2505), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2600), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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, + sym_identifier, + [27714] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2606), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86877,7 +87713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2597), 35, + ACTIONS(2604), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86911,12 +87747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28276] = 3, + [27766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2555), 7, + ACTIONS(2610), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86924,7 +87762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2553), 35, + ACTIONS(2608), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86958,12 +87796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28326] = 3, + [27818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2603), 7, + ACTIONS(2614), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86971,7 +87811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2601), 35, + ACTIONS(2612), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87005,12 +87845,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28376] = 3, + [27870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 7, + ACTIONS(2618), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87018,7 +87860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2605), 35, + ACTIONS(2616), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87052,12 +87894,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28426] = 3, + [27922] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 7, + STATE(796), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2624), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2622), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87065,7 +87916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2609), 35, + ACTIONS(2620), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87077,10 +87928,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -87099,12 +87946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [28476] = 3, + [27978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2615), 7, + ACTIONS(2628), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87112,7 +87960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2613), 35, + ACTIONS(2626), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87146,12 +87994,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28526] = 3, + [28030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 7, + ACTIONS(2632), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87159,7 +88009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2617), 35, + ACTIONS(2630), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87193,19 +88043,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28576] = 5, + [28082] = 3, ACTIONS(3), 1, sym_comment, - STATE(781), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2539), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2623), 7, + ACTIONS(2636), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87213,7 +88058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2621), 30, + ACTIONS(2634), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87225,6 +88070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -87243,11 +88092,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [28630] = 3, + [28134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2627), 7, + ACTIONS(2640), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87255,7 +88107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2625), 35, + ACTIONS(2638), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87289,19 +88141,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28680] = 5, + [28186] = 3, ACTIONS(3), 1, sym_comment, - STATE(811), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2633), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2631), 7, + ACTIONS(2644), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87309,7 +88156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2629), 30, + ACTIONS(2642), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87321,6 +88168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -87339,11 +88190,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [28734] = 3, + [28238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2637), 7, + ACTIONS(2648), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87351,7 +88205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2635), 35, + ACTIONS(2646), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87385,28 +88239,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28784] = 6, + [28290] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 1, - sym_primitive_type, - STATE(781), 1, + STATE(795), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2458), 4, + ACTIONS(2650), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2642), 6, + ACTIONS(2640), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2639), 30, + anon_sym_COLON, + ACTIONS(2638), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87436,11 +88291,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [28840] = 3, + [28346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2647), 7, + ACTIONS(2654), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87448,7 +88305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2645), 35, + ACTIONS(2652), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87482,12 +88339,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28890] = 3, + [28398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2651), 7, + ACTIONS(2658), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87495,7 +88354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2649), 35, + ACTIONS(2656), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87529,12 +88388,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28940] = 3, + [28450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2655), 7, + ACTIONS(2662), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87542,7 +88403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2653), 35, + ACTIONS(2660), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87576,12 +88437,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28990] = 3, + [28502] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 7, + STATE(797), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2668), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2666), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87589,7 +88459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2657), 35, + ACTIONS(2664), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87601,10 +88471,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -87623,12 +88489,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [29040] = 3, + [28558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2663), 7, + ACTIONS(2672), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87636,7 +88503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2661), 35, + ACTIONS(2670), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87670,20 +88537,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [29090] = 3, + [28610] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2515), 1, + anon_sym_AMP, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2517), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2519), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2521), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2523), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2505), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2333), 4, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2335), 19, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + sym_identifier, + [28686] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2667), 7, + ACTIONS(2463), 1, + sym_primitive_type, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2467), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2677), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2665), 35, + ACTIONS(2674), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87695,10 +88633,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -87717,28 +88651,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [29140] = 6, + [28744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_LPAREN2, - STATE(810), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1712), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1710), 6, + ACTIONS(2682), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1697), 30, + ACTIONS(2680), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87750,6 +88677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -87768,29 +88699,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [29196] = 7, + [28796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2672), 1, - sym_identifier, - ACTIONS(2681), 1, - sym_primitive_type, - STATE(835), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2679), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2675), 6, + ACTIONS(2686), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2677), 29, + anon_sym_COLON, + ACTIONS(2684), 37, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87802,6 +88726,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -87820,61 +88748,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [29254] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1714), 1, - anon_sym_EQ, - ACTIONS(1718), 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(1705), 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(1699), 19, - 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___attribute__, - 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, - [29308] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [28848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(2690), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1292), 40, + ACTIONS(2688), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87910,44 +88793,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29357] = 3, + [28899] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1248), 40, - 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2692), 1, + anon_sym_SEMI, + STATE(754), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2421), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(765), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2419), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -87956,35 +88846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [29406] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2685), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2683), 40, - 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, + ACTIONS(45), 10, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -87994,25 +88857,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [29455] = 3, + [28968] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2694), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2700), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2702), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2704), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2696), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2333), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2335), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [29041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2689), 1, + ACTIONS(2708), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2687), 40, + ACTIONS(2706), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88048,17 +88957,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29504] = 3, + [29092] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2710), 1, + anon_sym_AMP, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2694), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2700), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2702), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2704), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2333), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2696), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2335), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [29167] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2501), 1, + anon_sym_EQ, + ACTIONS(2710), 1, + anon_sym_AMP, + ACTIONS(2712), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2714), 1, + anon_sym_AMP_AMP, + ACTIONS(2716), 1, + anon_sym_PIPE, + ACTIONS(2718), 1, + anon_sym_CARET, + ACTIONS(2720), 1, + anon_sym_QMARK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2694), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2700), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2702), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2704), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2696), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2499), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [29252] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, + anon_sym_EQ, + ACTIONS(2710), 1, + anon_sym_AMP, + ACTIONS(2712), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2714), 1, + anon_sym_AMP_AMP, + ACTIONS(2716), 1, + anon_sym_PIPE, + ACTIONS(2718), 1, + anon_sym_CARET, + ACTIONS(2720), 1, + anon_sym_QMARK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2694), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2700), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2702), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2704), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2696), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2592), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [29337] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2710), 1, + anon_sym_AMP, + ACTIONS(2718), 1, + anon_sym_CARET, + STATE(728), 1, + sym_argument_list, + ACTIONS(2333), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2694), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2700), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2702), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2704), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2696), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2335), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [29414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2693), 1, + ACTIONS(1329), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2691), 40, + ACTIONS(1327), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88094,17 +89256,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29553] = 3, + [29465] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2377), 1, + anon_sym_EQ, + ACTIONS(2379), 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(1708), 13, + aux_sym_preproc_elif_token1, + 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(1702), 19, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [29520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 1, + ACTIONS(1341), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1272), 40, + ACTIONS(1339), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88140,17 +89354,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29602] = 3, + [29571] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1340), 40, + ACTIONS(2333), 1, + anon_sym_EQ, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2710), 1, + anon_sym_AMP, + ACTIONS(2716), 1, + anon_sym_PIPE, + ACTIONS(2718), 1, + anon_sym_CARET, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2694), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2700), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2702), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2704), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2696), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2335), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [29650] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2333), 1, + anon_sym_EQ, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2710), 1, + anon_sym_AMP, + ACTIONS(2714), 1, + anon_sym_AMP_AMP, + ACTIONS(2716), 1, + anon_sym_PIPE, + ACTIONS(2718), 1, + anon_sym_CARET, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2694), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2700), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2702), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2704), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2696), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2335), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [29731] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2696), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2333), 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(2335), 23, + 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___attribute__, + 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, + [29794] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2694), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2696), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2333), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2335), 23, + 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___attribute__, + 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, + [29859] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1297), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1295), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88186,17 +89636,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29651] = 3, + [29910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, + ACTIONS(1317), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1300), 40, + ACTIONS(1315), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88232,17 +89684,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29700] = 3, + [29961] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2722), 1, + anon_sym_SEMI, + STATE(754), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2421), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(765), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2419), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [30030] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2694), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2704), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2696), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2333), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2335), 23, + 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___attribute__, + 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, + [30097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2697), 1, + ACTIONS(1353), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2695), 40, + ACTIONS(1351), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88278,17 +89845,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29749] = 3, + [30148] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2724), 1, + anon_sym_SEMI, + STATE(754), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2421), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(765), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2419), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [30217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 1, + ACTIONS(1273), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2699), 40, + ACTIONS(1271), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88324,17 +89950,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29798] = 3, + [30268] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2694), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2700), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2702), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2704), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2696), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2333), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2335), 21, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [30339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2705), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2703), 40, + ACTIONS(2726), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88370,17 +90056,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29847] = 3, + [30390] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2730), 1, + anon_sym_SEMI, + STATE(754), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2421), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(765), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2419), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [30459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2709), 1, + ACTIONS(2734), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2707), 40, + ACTIONS(2732), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88416,17 +90161,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29896] = 3, + [30510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(2738), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1296), 40, + ACTIONS(2736), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88462,17 +90209,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29945] = 3, + [30561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2713), 1, + ACTIONS(2742), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2711), 40, + ACTIONS(2740), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88508,17 +90257,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [29994] = 3, + [30612] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2602), 1, + anon_sym_EQ, + ACTIONS(2710), 1, + anon_sym_AMP, + ACTIONS(2712), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2714), 1, + anon_sym_AMP_AMP, + ACTIONS(2716), 1, + anon_sym_PIPE, + ACTIONS(2718), 1, + anon_sym_CARET, + ACTIONS(2720), 1, + anon_sym_QMARK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2694), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2698), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2700), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2702), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2704), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2696), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2600), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [30697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, + ACTIONS(2746), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2715), 40, + ACTIONS(2744), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88554,17 +90370,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30043] = 3, + [30748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2721), 1, + ACTIONS(2750), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2719), 40, + ACTIONS(2748), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88600,17 +90418,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30092] = 3, + [30799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2725), 1, + ACTIONS(2754), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2723), 40, + ACTIONS(2752), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88646,17 +90466,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30141] = 3, + [30850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2758), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2727), 40, + ACTIONS(2756), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88692,199 +90514,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [30190] = 10, + [30901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1104), 1, + ACTIONS(2762), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2731), 1, - anon_sym_SEMI, - ACTIONS(2493), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(791), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2491), 8, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - sym_identifier, - ACTIONS(47), 9, + ACTIONS(2760), 42, + 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [30252] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2733), 1, - anon_sym_SEMI, - ACTIONS(2493), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(791), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2491), 8, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [30314] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2735), 1, - anon_sym_SEMI, - ACTIONS(2493), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(791), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2491), 8, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [30376] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2741), 1, - anon_sym___attribute__, - ACTIONS(2744), 1, - anon_sym_LBRACE, - ACTIONS(2746), 1, - anon_sym_COLON, - STATE(827), 1, - sym_attribute_specifier, - STATE(906), 1, - sym_enumerator_list, - ACTIONS(2739), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2737), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -88902,782 +90562,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [30434] = 10, + [30952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1104), 1, + ACTIONS(2766), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2748), 1, - anon_sym_SEMI, - ACTIONS(2493), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(791), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2491), 8, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - sym_identifier, - ACTIONS(47), 9, + ACTIONS(2764), 42, + 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [30496] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2750), 1, - anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - STATE(707), 1, - sym_argument_list, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2346), 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(2348), 19, - anon_sym_DOT_DOT_DOT, - 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, - [30555] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2750), 1, - anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - STATE(707), 1, - sym_argument_list, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2754), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2346), 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(2348), 19, - anon_sym_DOT_DOT_DOT, - 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, - [30616] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1749), 1, - anon_sym_LPAREN2, - ACTIONS(1751), 1, - anon_sym_STAR, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2756), 1, - sym_identifier, - ACTIONS(2764), 1, - anon_sym_LBRACK, - STATE(1108), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1321), 1, - sym__declarator, - STATE(1475), 1, - sym__abstract_declarator, - STATE(1488), 1, - sym_parameter_list, - STATE(1803), 1, - sym_ms_based_modifier, - ACTIONS(2758), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2762), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1002), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1005), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2760), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1487), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [30695] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2418), 1, - anon_sym_EQ, - ACTIONS(2750), 1, - anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - ACTIONS(2768), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2770), 1, - anon_sym_AMP_AMP, - ACTIONS(2772), 1, - anon_sym_PIPE, - ACTIONS(2774), 1, - anon_sym_CARET, - ACTIONS(2776), 1, - anon_sym_AMP, - ACTIONS(2786), 1, - anon_sym_QMARK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2778), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2780), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2782), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2784), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2754), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2416), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30778] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1749), 1, - anon_sym_LPAREN2, - ACTIONS(1751), 1, - anon_sym_STAR, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2756), 1, - sym_identifier, - ACTIONS(2764), 1, - anon_sym_LBRACK, - STATE(1108), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1303), 1, - sym__declarator, - STATE(1474), 1, - sym__abstract_declarator, - STATE(1488), 1, - sym_parameter_list, - STATE(1803), 1, - sym_ms_based_modifier, - ACTIONS(2762), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2788), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(870), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1001), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2760), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1487), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [30857] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2750), 1, - anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - STATE(707), 1, - sym_argument_list, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2754), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2346), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2348), 19, - anon_sym_DOT_DOT_DOT, - 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, - [30920] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2750), 1, - anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - STATE(707), 1, - sym_argument_list, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2784), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2754), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2346), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2348), 19, - anon_sym_DOT_DOT_DOT, - 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, - [30985] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2750), 1, - anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - STATE(707), 1, - sym_argument_list, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2780), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2782), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2784), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2754), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2346), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2348), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [31054] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2750), 1, - anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - STATE(707), 1, - sym_argument_list, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2778), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2780), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2782), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2784), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2754), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2346), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2348), 15, - anon_sym_DOT_DOT_DOT, - 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, - [31125] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2750), 1, - anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - ACTIONS(2776), 1, - anon_sym_AMP, - STATE(707), 1, - sym_argument_list, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2778), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2780), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2782), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2784), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2346), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2754), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2348), 15, - anon_sym_DOT_DOT_DOT, - 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, - [31198] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2750), 1, - anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - ACTIONS(2774), 1, - anon_sym_CARET, - ACTIONS(2776), 1, - anon_sym_AMP, - STATE(707), 1, - sym_argument_list, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2346), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2778), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2780), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2782), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2784), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2754), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2348), 15, - anon_sym_DOT_DOT_DOT, - 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, - [31273] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2346), 1, - anon_sym_EQ, - ACTIONS(2750), 1, - anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - ACTIONS(2772), 1, - anon_sym_PIPE, - ACTIONS(2774), 1, - anon_sym_CARET, - ACTIONS(2776), 1, - anon_sym_AMP, - STATE(707), 1, - sym_argument_list, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2778), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2780), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2782), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2784), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2754), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2348), 15, - anon_sym_DOT_DOT_DOT, - 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, - [31350] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2346), 1, - anon_sym_EQ, - ACTIONS(2750), 1, - anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - ACTIONS(2770), 1, - anon_sym_AMP_AMP, - ACTIONS(2772), 1, - anon_sym_PIPE, - ACTIONS(2774), 1, - anon_sym_CARET, - ACTIONS(2776), 1, - anon_sym_AMP, - STATE(707), 1, - sym_argument_list, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2778), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2780), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2782), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2784), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2754), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2348), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [31003] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1717), 1, + anon_sym_EQ, + ACTIONS(1721), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -89688,23 +90633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31429] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2750), 1, - anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - STATE(707), 1, - sym_argument_list, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2307), 13, + ACTIONS(1708), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -89717,79 +90646,496 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2309), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(1702), 19, + 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___attribute__, + anon_sym_RBRACE, + 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, - [31488] = 21, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [31057] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(1760), 1, + anon_sym_LPAREN2, + ACTIONS(1762), 1, + anon_sym_STAR, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2768), 1, + sym_identifier, + ACTIONS(2776), 1, anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2434), 1, - anon_sym_EQ, - ACTIONS(2750), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1051), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1319), 1, + sym__declarator, + STATE(1469), 1, + sym__abstract_declarator, + STATE(1494), 1, + sym_parameter_list, + STATE(1943), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2770), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2774), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(963), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1008), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2772), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1495), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1371), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [31143] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2782), 1, + anon_sym___attribute__, + ACTIONS(2785), 1, + anon_sym_LBRACE, + ACTIONS(2787), 1, + anon_sym_COLON, + STATE(788), 1, + sym_attribute_specifier, + STATE(891), 1, + sym_enumerator_list, + ACTIONS(2780), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2778), 31, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [31203] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1760), 1, + anon_sym_LPAREN2, + ACTIONS(1762), 1, + anon_sym_STAR, + ACTIONS(1764), 1, + anon_sym___based, ACTIONS(2768), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2770), 1, + sym_identifier, + ACTIONS(2776), 1, + anon_sym_LBRACK, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1051), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1312), 1, + sym__declarator, + STATE(1486), 1, + sym__abstract_declarator, + STATE(1494), 1, + sym_parameter_list, + STATE(1943), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2774), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2789), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(871), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(976), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2772), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1495), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1371), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [31289] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_LBRACE, + ACTIONS(2795), 1, + anon_sym___attribute__, + STATE(826), 1, + sym_attribute_specifier, + STATE(928), 1, + sym_enumerator_list, + ACTIONS(2793), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2791), 31, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [31346] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2798), 2, + anon_sym___attribute__, + sym_identifier, + ACTIONS(2805), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2808), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2801), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2803), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + [31401] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2810), 2, + anon_sym___attribute__, + sym_identifier, + ACTIONS(2817), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2820), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2813), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2815), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + [31456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2128), 38, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [31504] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2134), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2132), 38, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [31552] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2333), 1, + anon_sym_EQ, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(2828), 1, anon_sym_AMP_AMP, - ACTIONS(2772), 1, + ACTIONS(2830), 1, anon_sym_PIPE, - ACTIONS(2774), 1, + ACTIONS(2832), 1, anon_sym_CARET, - ACTIONS(2776), 1, + ACTIONS(2834), 1, anon_sym_AMP, - ACTIONS(2786), 1, - anon_sym_QMARK, - STATE(707), 1, + ACTIONS(2844), 1, + anon_sym_DOT, + STATE(728), 1, sym_argument_list, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2766), 2, + ACTIONS(2824), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2778), 2, + ACTIONS(2836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2780), 2, + ACTIONS(2838), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2782), 2, + ACTIONS(2840), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2784), 2, + ACTIONS(2842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2754), 3, + ACTIONS(2826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2432), 12, + ACTIONS(2335), 14, anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -89800,23 +91146,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31571] = 9, + [31631] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2273), 1, + ACTIONS(2343), 1, anon_sym_DASH_GT, - ACTIONS(2750), 1, + ACTIONS(2822), 1, anon_sym_LPAREN2, - ACTIONS(2752), 1, + ACTIONS(2844), 1, anon_sym_DOT, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2289), 13, + ACTIONS(2381), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -89830,7 +91176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2291), 19, + ACTIONS(2383), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89850,98 +91196,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31630] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2426), 1, - anon_sym_EQ, - ACTIONS(2750), 1, - anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - ACTIONS(2768), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2770), 1, - anon_sym_AMP_AMP, - ACTIONS(2772), 1, - anon_sym_PIPE, - ACTIONS(2774), 1, - anon_sym_CARET, - ACTIONS(2776), 1, - anon_sym_AMP, - ACTIONS(2786), 1, - anon_sym_QMARK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2766), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2778), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2780), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2782), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2784), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2754), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2424), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [31713] = 7, + [31690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 1, - anon_sym_LBRACE, - ACTIONS(2794), 1, - anon_sym___attribute__, - STATE(838), 1, - sym_attribute_specifier, - STATE(926), 1, - sym_enumerator_list, - ACTIONS(2792), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2762), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2790), 29, + ACTIONS(2760), 38, + 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___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89959,45 +91233,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [31768] = 9, + [31737] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2273), 1, + ACTIONS(2343), 1, anon_sym_DASH_GT, - ACTIONS(2750), 1, + ACTIONS(2822), 1, anon_sym_LPAREN2, - ACTIONS(2752), 1, + ACTIONS(2832), 1, + anon_sym_CARET, + ACTIONS(2834), 1, + anon_sym_AMP, + ACTIONS(2844), 1, anon_sym_DOT, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2279), 2, + ACTIONS(2333), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2303), 13, + ACTIONS(2824), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2838), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2840), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2305), 19, + ACTIONS(2826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2335), 15, anon_sym_DOT_DOT_DOT, 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, @@ -90010,44 +91298,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31827] = 9, + [31812] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2333), 1, + anon_sym_EQ, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2273), 1, + ACTIONS(2343), 1, anon_sym_DASH_GT, - ACTIONS(2750), 1, + ACTIONS(2822), 1, anon_sym_LPAREN2, - ACTIONS(2752), 1, + ACTIONS(2830), 1, + anon_sym_PIPE, + ACTIONS(2832), 1, + anon_sym_CARET, + ACTIONS(2834), 1, + anon_sym_AMP, + ACTIONS(2844), 1, anon_sym_DOT, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2275), 13, + ACTIONS(2824), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2838), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2840), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2842), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2277), 19, + ACTIONS(2826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2335), 15, anon_sym_DOT_DOT_DOT, 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, @@ -90060,25 +91357,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31886] = 8, + [31889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2758), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2756), 38, + 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___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [31936] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2273), 1, + ACTIONS(2343), 1, anon_sym_DASH_GT, - ACTIONS(2750), 1, + ACTIONS(2822), 1, anon_sym_LPAREN2, - ACTIONS(2752), 1, + ACTIONS(2844), 1, anon_sym_DOT, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2265), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2826), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2333), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -90087,7 +91432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2267), 21, + ACTIONS(2335), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90107,29 +91452,21 @@ 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, - [31943] = 6, + [31997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 2, - anon_sym___attribute__, - sym_identifier, - ACTIONS(2804), 2, + ACTIONS(2728), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2807), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2800), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2802), 28, + ACTIONS(2726), 38, + 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___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90152,31 +91489,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, - [31996] = 6, + sym_identifier, + [32044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2809), 2, - anon_sym___attribute__, - sym_identifier, - ACTIONS(2816), 2, + ACTIONS(2690), 2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2819), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2812), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2814), 28, + anon_sym_RBRACE, + ACTIONS(2688), 37, + 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___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -90199,27 +91533,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, - [32049] = 3, + sym_identifier, + [32091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2114), 2, + ACTIONS(2734), 2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2112), 36, + anon_sym_RBRACE, + ACTIONS(2732), 37, + 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___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, @@ -90241,202 +91577,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32095] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2297), 14, - 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, - anon_sym_DOT, - ACTIONS(2299), 24, - anon_sym_DOT_DOT_DOT, - 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_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_DASH_GT, - [32141] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2285), 14, - 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, - anon_sym_DOT, - ACTIONS(2287), 24, - anon_sym_DOT_DOT_DOT, - 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_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_DASH_GT, - [32187] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2428), 1, - anon_sym_EQ, - ACTIONS(2430), 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(1705), 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_DOT, - ACTIONS(1699), 14, - anon_sym_DOT_DOT_DOT, - 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_DASH_GT, - [32237] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2293), 14, - 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, - anon_sym_DOT, - ACTIONS(2295), 24, - anon_sym_DOT_DOT_DOT, - 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_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_DASH_GT, - [32283] = 3, + [32138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2118), 2, + ACTIONS(2754), 2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2116), 36, + anon_sym_RBRACE, + ACTIONS(2752), 37, + 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___extension__, 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_signed, anon_sym_unsigned, anon_sym_long, @@ -90458,61 +91621,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2281), 14, - 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, - anon_sym_DOT, - ACTIONS(2283), 24, - anon_sym_DOT_DOT_DOT, - 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_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_DASH_GT, - [32375] = 3, + [32185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2721), 2, + ACTIONS(2766), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2719), 35, + ACTIONS(2764), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90543,18 +91665,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32420] = 3, + [32232] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2850), 1, + anon_sym___attribute__, + STATE(827), 1, + sym_attribute_specifier, + ACTIONS(2848), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2846), 31, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [32283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2697), 2, + ACTIONS(2728), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2695), 35, + ACTIONS(2726), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90585,20 +91755,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32465] = 3, + [32330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2725), 1, + ACTIONS(1297), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2723), 36, + anon_sym_RBRACE, + ACTIONS(1295), 37, 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, @@ -90627,18 +91799,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32510] = 3, + [32377] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2857), 1, + anon_sym___attribute__, + STATE(790), 1, + sym_attribute_specifier, + ACTIONS(2855), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2853), 31, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [32428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 2, + ACTIONS(2738), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2727), 35, + ACTIONS(2736), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90669,20 +91889,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32555] = 3, + [32475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 1, + ACTIONS(2762), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1272), 36, + anon_sym_RBRACE, + ACTIONS(2760), 37, 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, @@ -90711,20 +91933,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32600] = 3, + [32522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2689), 1, + ACTIONS(2742), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2687), 36, + anon_sym_RBRACE, + ACTIONS(2740), 37, 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, @@ -90753,17 +91977,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32645] = 3, + [32569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2685), 1, + ACTIONS(2690), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2683), 36, + ACTIONS(2688), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90795,17 +92021,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32690] = 3, + [32616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2705), 1, + ACTIONS(2734), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2703), 36, + ACTIONS(2732), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90837,61 +92065,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32735] = 5, + [32663] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 1, - anon_sym___attribute__, - STATE(840), 1, - sym_attribute_specifier, - ACTIONS(2823), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2822), 1, anon_sym_LPAREN2, + ACTIONS(2844), 1, + anon_sym_DOT, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2361), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2821), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + 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(2363), 19, + anon_sym_DOT_DOT_DOT, + 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, + [32722] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2339), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [32784] = 3, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(2844), 1, + anon_sym_DOT, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2365), 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(2367), 19, + anon_sym_DOT_DOT_DOT, + 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, + [32781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2713), 1, + ACTIONS(2742), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2711), 36, + ACTIONS(2740), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90923,17 +92209,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32829] = 3, + [32828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, + ACTIONS(1273), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2715), 36, + ACTIONS(1271), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90965,20 +92253,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32874] = 3, + [32875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2721), 1, + ACTIONS(1317), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2719), 36, + anon_sym_RBRACE, + ACTIONS(1315), 37, 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, @@ -91007,23 +92297,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32919] = 3, + [32922] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2697), 1, + ACTIONS(2433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2695), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(543), 1, + sym_string_literal, + ACTIONS(2860), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2431), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91049,17 +92343,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32964] = 3, + [32973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2693), 1, + ACTIONS(1329), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2691), 36, + ACTIONS(1327), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91091,20 +92387,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33009] = 3, + [33020] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(2834), 1, + anon_sym_AMP, + ACTIONS(2844), 1, + anon_sym_DOT, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2824), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2838), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2840), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2333), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2335), 15, + anon_sym_DOT_DOT_DOT, + 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, + [33093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 1, + ACTIONS(2750), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2699), 36, + anon_sym_RBRACE, + ACTIONS(2748), 37, 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, @@ -91133,23 +92488,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33054] = 3, + [33140] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(2433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2727), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(544), 1, + sym_string_literal, + ACTIONS(2860), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2431), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91175,20 +92534,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33099] = 3, + [33191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 2, + ACTIONS(1341), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2699), 35, + ACTIONS(1339), 38, 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, @@ -91217,17 +92578,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33144] = 3, + [33238] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(2844), 1, + anon_sym_DOT, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2333), 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(2335), 19, + anon_sym_DOT_DOT_DOT, + 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, + [33297] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2602), 1, + anon_sym_EQ, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(2828), 1, + anon_sym_AMP_AMP, + ACTIONS(2830), 1, + anon_sym_PIPE, + ACTIONS(2832), 1, + anon_sym_CARET, + ACTIONS(2834), 1, + anon_sym_AMP, + ACTIONS(2844), 1, + anon_sym_DOT, + ACTIONS(2862), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2864), 1, + anon_sym_QMARK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2824), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2838), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2840), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2600), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [33380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 1, + ACTIONS(2746), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1340), 36, + ACTIONS(2744), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91259,20 +92734,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33189] = 3, + [33427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 2, + ACTIONS(1297), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2715), 35, + ACTIONS(1295), 38, 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, @@ -91301,20 +92778,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33234] = 3, + [33474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2693), 2, + ACTIONS(2750), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2691), 35, + ACTIONS(2748), 38, 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, @@ -91343,20 +92822,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33279] = 3, + [33521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 2, + ACTIONS(1317), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1300), 35, + ACTIONS(1315), 38, 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, @@ -91385,25 +92866,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33324] = 5, + [33568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2414), 1, + ACTIONS(1353), 1, anon_sym_LBRACK_LBRACK, - STATE(667), 1, - sym_string_literal, - ACTIONS(2828), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2412), 30, + ACTIONS(1351), 38, + 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___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91429,18 +92910,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33373] = 3, + [33615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2713), 2, + ACTIONS(1341), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2711), 35, + ACTIONS(1339), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91471,18 +92954,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33418] = 3, + [33662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 2, + ACTIONS(1329), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1292), 35, + ACTIONS(1327), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91513,23 +92998,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33463] = 3, + [33709] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2594), 1, + anon_sym_EQ, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(2828), 1, + anon_sym_AMP_AMP, + ACTIONS(2830), 1, + anon_sym_PIPE, + ACTIONS(2832), 1, + anon_sym_CARET, + ACTIONS(2834), 1, + anon_sym_AMP, + ACTIONS(2844), 1, + anon_sym_DOT, + ACTIONS(2862), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2864), 1, + anon_sym_QMARK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2824), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2838), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2840), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2592), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [33792] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(2844), 1, + anon_sym_DOT, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2824), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2838), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2840), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2333), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2335), 15, + anon_sym_DOT_DOT_DOT, + 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, + [33863] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2685), 2, + ACTIONS(2433), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2683), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(552), 1, + sym_string_literal, + ACTIONS(2860), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2431), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91555,20 +93162,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33508] = 3, + [33914] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(2844), 1, + anon_sym_DOT, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2824), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2838), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2840), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2333), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2335), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [33983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2725), 2, + ACTIONS(2754), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2723), 35, + ACTIONS(2752), 38, 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, @@ -91597,64 +93261,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33553] = 5, + [34030] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2834), 1, - anon_sym___attribute__, - STATE(808), 1, - sym_attribute_specifier, - ACTIONS(2832), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2822), 1, anon_sym_LPAREN2, + ACTIONS(2844), 1, + anon_sym_DOT, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2349), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2830), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [33602] = 3, + 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(2351), 19, + anon_sym_DOT_DOT_DOT, + 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, + [34089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2689), 2, + ACTIONS(2766), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2687), 35, + ACTIONS(2764), 38, 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, @@ -91683,26 +93355,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33647] = 5, + [34136] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2501), 1, + anon_sym_EQ, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(2828), 1, + anon_sym_AMP_AMP, + ACTIONS(2830), 1, + anon_sym_PIPE, + ACTIONS(2832), 1, + anon_sym_CARET, + ACTIONS(2834), 1, + anon_sym_AMP, + ACTIONS(2844), 1, + anon_sym_DOT, + ACTIONS(2862), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2864), 1, + anon_sym_QMARK, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2824), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2838), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2840), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2499), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [34219] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 1, + ACTIONS(2870), 1, anon_sym___attribute__, - STATE(824), 1, + STATE(803), 1, sym_attribute_specifier, - ACTIONS(2839), 6, + ACTIONS(2868), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2837), 29, + ACTIONS(2866), 31, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -91731,16 +93467,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [33696] = 3, + [34270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(1273), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1296), 36, + anon_sym_RBRACE, + ACTIONS(1271), 37, 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, @@ -91769,69 +93507,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33741] = 5, + [34317] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2414), 1, - anon_sym_LBRACK_LBRACK, - STATE(663), 1, - sym_string_literal, - ACTIONS(2828), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2412), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [33790] = 5, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(2844), 1, + anon_sym_DOT, + STATE(728), 1, + sym_argument_list, + ACTIONS(2345), 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(2347), 21, + anon_sym_DOT_DOT_DOT, + 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, + [34374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2414), 1, + ACTIONS(2758), 2, anon_sym_LBRACK_LBRACK, - STATE(666), 1, - sym_string_literal, - ACTIONS(2828), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2412), 30, + anon_sym_RBRACE, + ACTIONS(2756), 37, + 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___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91857,18 +93600,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33839] = 3, + [34421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2709), 2, + ACTIONS(1353), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2707), 35, + ACTIONS(1351), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91899,18 +93644,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33884] = 3, + [34468] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(2844), 1, + anon_sym_DOT, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2824), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2333), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2335), 19, + anon_sym_DOT_DOT_DOT, + 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, + [34533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2705), 2, + ACTIONS(2708), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2703), 35, + ACTIONS(2706), 37, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91941,25 +93741,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33929] = 5, + [34580] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(2844), 1, + anon_sym_DOT, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2824), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2826), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2333), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2335), 19, + anon_sym_DOT_DOT_DOT, + 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, + [34643] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2414), 1, + ACTIONS(2433), 1, anon_sym_LBRACK_LBRACK, - STATE(665), 1, + STATE(548), 1, sym_string_literal, - ACTIONS(2828), 5, + ACTIONS(2860), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2412), 30, + ACTIONS(2431), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91985,17 +93839,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33978] = 3, + [34694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(2708), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1292), 36, + ACTIONS(2706), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -92027,20 +93883,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34023] = 3, + [34741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, + ACTIONS(2746), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1300), 36, + anon_sym_RBRACE, + ACTIONS(2744), 37, 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, @@ -92069,20 +93927,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34068] = 3, + [34788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 2, + ACTIONS(2738), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1340), 35, + ACTIONS(2736), 38, 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, @@ -92111,40 +93971,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34113] = 3, + [34835] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1272), 35, - 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2873), 1, + sym_identifier, + ACTIONS(2875), 1, + anon_sym_LPAREN2, + ACTIONS(2877), 1, + anon_sym_STAR, + ACTIONS(2881), 1, + sym_primitive_type, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1051), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1363), 1, + sym__type_declarator, + STATE(1909), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2774), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(945), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1031), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2772), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2879), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(1444), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -92153,40 +94036,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [34158] = 3, + [34911] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1296), 35, - 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(2596), 1, + anon_sym_EQ, + ACTIONS(2598), 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(1708), 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_DOT, + ACTIONS(1702), 14, + anon_sym_DOT_DOT_DOT, + 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_DASH_GT, + [34961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2357), 14, + 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, + anon_sym_DOT, + ACTIONS(2359), 24, + anon_sym_DOT_DOT_DOT, + 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_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_DASH_GT, + [35007] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2873), 1, + sym_identifier, + ACTIONS(2875), 1, + anon_sym_LPAREN2, + ACTIONS(2877), 1, + anon_sym_STAR, + ACTIONS(2881), 1, + sym_primitive_type, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1051), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1367), 1, + sym__type_declarator, + STATE(1909), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2774), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(944), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1037), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2772), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2879), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(1444), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -92195,31 +94182,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + [35083] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2873), 1, + sym_identifier, + ACTIONS(2875), 1, + anon_sym_LPAREN2, + ACTIONS(2877), 1, + anon_sym_STAR, + ACTIONS(2881), 1, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1051), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1363), 1, + sym__type_declarator, + STATE(1909), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2774), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1008), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1031), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2772), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2879), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1444), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [35159] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2873), 1, sym_identifier, - [34203] = 3, + ACTIONS(2875), 1, + anon_sym_LPAREN2, + ACTIONS(2877), 1, + anon_sym_STAR, + ACTIONS(2881), 1, + sym_primitive_type, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1051), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1364), 1, + sym__type_declarator, + STATE(1909), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2774), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1008), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1040), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2772), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2879), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1444), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [35235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2369), 14, + 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, + anon_sym_DOT, + ACTIONS(2371), 24, + anon_sym_DOT_DOT_DOT, + 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_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_DASH_GT, + [35281] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2373), 14, + 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, + anon_sym_DOT, + ACTIONS(2375), 24, + anon_sym_DOT_DOT_DOT, + 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_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_DASH_GT, + [35327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2353), 14, + 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, + anon_sym_DOT, + ACTIONS(2355), 24, + anon_sym_DOT_DOT_DOT, + 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_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_DASH_GT, + [35373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2709), 1, + ACTIONS(2885), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2707), 36, - 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, + ACTIONS(2883), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92237,73 +94462,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34248] = 3, + [35418] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 1, + ACTIONS(2549), 1, + anon_sym_LPAREN2, + ACTIONS(2887), 1, + anon_sym_COMMA, + ACTIONS(2890), 1, + anon_sym_RPAREN, + STATE(787), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1654), 1, + aux_sym__old_style_parameter_list_repeat1, + ACTIONS(1713), 2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1248), 36, - 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___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(1715), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [34293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1248), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(1700), 26, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92321,15 +94514,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [34338] = 3, + [35475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 17, + ACTIONS(1211), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -92347,7 +94538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1170), 19, + ACTIONS(1213), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92367,10 +94558,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34382] = 3, + [35519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 17, + ACTIONS(1147), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -92388,7 +94579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1202), 19, + ACTIONS(1149), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92408,10 +94599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34426] = 3, + [35563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 17, + ACTIONS(1147), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -92429,7 +94620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1202), 19, + ACTIONS(1149), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92449,10 +94640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34470] = 3, + [35607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 17, + ACTIONS(1143), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -92470,7 +94661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1178), 19, + ACTIONS(1145), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92490,10 +94681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34514] = 3, + [35651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 17, + ACTIONS(1151), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -92511,7 +94702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1122), 19, + ACTIONS(1153), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92531,10 +94722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34558] = 3, + [35695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1148), 17, + ACTIONS(1143), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -92552,7 +94743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1150), 19, + ACTIONS(1145), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92572,10 +94763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34602] = 3, + [35739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 17, + ACTIONS(1239), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -92593,7 +94784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1170), 19, + ACTIONS(1241), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92613,10 +94804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34646] = 3, + [35783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 17, + ACTIONS(1239), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -92634,7 +94825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1178), 19, + ACTIONS(1241), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92654,10 +94845,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34690] = 3, + [35827] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2549), 1, + anon_sym_LPAREN2, + STATE(787), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1713), 2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2893), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1715), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1700), 26, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [35879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1172), 17, + ACTIONS(1243), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -92675,7 +94911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1174), 19, + ACTIONS(1245), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92695,10 +94931,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34734] = 3, + [35923] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2899), 1, + anon_sym_LPAREN2, + ACTIONS(2903), 1, + anon_sym_LBRACK, + STATE(787), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1713), 2, + anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(2896), 2, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(1715), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1700), 25, + anon_sym___extension__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [35977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 17, + ACTIONS(1243), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -92716,7 +94998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1122), 19, + ACTIONS(1245), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92736,34 +95018,442 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34778] = 9, + [36021] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1760), 1, + anon_sym_LPAREN2, + ACTIONS(1762), 1, + anon_sym_STAR, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2768), 1, + sym_identifier, + ACTIONS(2776), 1, + anon_sym_LBRACK, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1310), 1, + sym__declarator, + STATE(1473), 1, + sym__abstract_declarator, + STATE(1494), 1, + sym_parameter_list, + STATE(1943), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2906), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1039), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1495), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1371), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [36091] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2908), 1, + anon_sym_typedef, + ACTIONS(2389), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36135] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1888), 1, + anon_sym_LPAREN2, + ACTIONS(1890), 1, + anon_sym_STAR, + ACTIONS(2772), 1, + sym_ms_restrict_modifier, + ACTIONS(2776), 1, + anon_sym_LBRACK, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1051), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1486), 1, + sym__abstract_declarator, + STATE(1494), 1, + sym_parameter_list, + ACTIONS(2912), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2914), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2916), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(981), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1129), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2789), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1495), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2910), 8, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [36207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2918), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2815), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36249] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1243), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1151), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36333] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2920), 1, + anon_sym_typedef, + ACTIONS(2389), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1145), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1143), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1243), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_LPAREN2, - ACTIONS(2844), 1, - anon_sym_COMMA, - ACTIONS(2847), 1, - anon_sym_RPAREN, - STATE(810), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1658), 1, - aux_sym__old_style_parameter_list_repeat1, - ACTIONS(1710), 2, - anon_sym_STAR, + ACTIONS(1241), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1712), 4, + anon_sym_LBRACE, + ACTIONS(1239), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1697), 24, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36503] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1239), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92781,52 +95471,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [34833] = 16, + [36545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2850), 1, - sym_identifier, - ACTIONS(2852), 1, - anon_sym_LPAREN2, - ACTIONS(2854), 1, - anon_sym_STAR, - ACTIONS(2858), 1, - sym_primitive_type, - STATE(1108), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1368), 1, - sym__type_declarator, - STATE(1913), 1, - sym_ms_based_modifier, - ACTIONS(2762), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(955), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1089), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2760), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2856), 4, + ACTIONS(2924), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2922), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, - anon_sym___extension__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -92835,51 +95510,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34902] = 16, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2850), 1, - sym_identifier, - ACTIONS(2852), 1, - anon_sym_LPAREN2, - ACTIONS(2854), 1, - anon_sym_STAR, - ACTIONS(2858), 1, - sym_primitive_type, - STATE(1108), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1368), 1, - sym__type_declarator, - STATE(1913), 1, - sym_ms_based_modifier, - ACTIONS(2762), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1005), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1089), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2760), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2856), 4, + ACTIONS(1145), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1143), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, - anon_sym___extension__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -92888,49 +95549,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34971] = 16, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36629] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2850), 1, - sym_identifier, - ACTIONS(2852), 1, + ACTIONS(1760), 1, anon_sym_LPAREN2, - ACTIONS(2854), 1, + ACTIONS(1762), 1, anon_sym_STAR, - ACTIONS(2858), 1, - sym_primitive_type, - STATE(1108), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1367), 1, - sym__type_declarator, - STATE(1913), 1, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2768), 1, + sym_identifier, + ACTIONS(2776), 1, + anon_sym_LBRACK, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1319), 1, + sym__declarator, + STATE(1469), 1, + sym__abstract_declarator, + STATE(1494), 1, + sym_parameter_list, + STATE(1943), 1, sym_ms_based_modifier, - ACTIONS(2762), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(953), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1109), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2770), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1039), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2760), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2856), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1423), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1495), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1371), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -92941,51 +95609,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35040] = 16, + [36699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2850), 1, - sym_identifier, - ACTIONS(2852), 1, - anon_sym_LPAREN2, - ACTIONS(2854), 1, - anon_sym_STAR, - ACTIONS(2858), 1, - sym_primitive_type, - STATE(1108), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1361), 1, - sym__type_declarator, - STATE(1913), 1, - sym_ms_based_modifier, - ACTIONS(2762), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1005), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1099), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2760), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2856), 4, + ACTIONS(1149), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1147), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, - anon_sym___extension__, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -92994,24 +95641,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35109] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2862), 3, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(2391), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2860), 32, + ACTIONS(2926), 1, + anon_sym_typedef, + ACTIONS(2389), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -93029,37 +95681,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [35152] = 8, + [36785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 1, - anon_sym_LPAREN2, - ACTIONS(2871), 1, - anon_sym_LBRACK, - STATE(810), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1710), 2, - anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(2864), 2, - anon_sym_RPAREN, + ACTIONS(1149), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1712), 4, + anon_sym_LBRACE, + ACTIONS(1147), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1697), 23, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1211), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -93077,32 +95759,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [35204] = 7, + [36869] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1888), 1, anon_sym_LPAREN2, - STATE(810), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1710), 2, + ACTIONS(1890), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2874), 2, + ACTIONS(2772), 1, + sym_ms_restrict_modifier, + ACTIONS(2776), 1, + anon_sym_LBRACK, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1051), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1469), 1, + sym__abstract_declarator, + STATE(1494), 1, + sym_parameter_list, + ACTIONS(2912), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2914), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2916), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1008), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1133), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2770), 3, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1712), 4, + anon_sym_COLON, + STATE(1495), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2910), 8, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [36941] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2930), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2928), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1697), 24, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36983] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2932), 1, + anon_sym_typedef, + ACTIONS(2389), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -93120,203 +95892,421 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [37027] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_STAR, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1051), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1355), 1, + sym__field_declarator, + STATE(1993), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2774), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1008), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1139), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2772), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [37094] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2934), 1, sym_identifier, - [35254] = 19, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_STAR, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1051), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1353), 1, + sym__field_declarator, + STATE(1993), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2774), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1008), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1134), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2772), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [37161] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2346), 1, + ACTIONS(2942), 1, + anon_sym_SLASH, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2940), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2333), 7, aux_sym_preproc_elif_token1, - ACTIONS(2881), 1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2335), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_QMARK, + sym_identifier, + [37216] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2942), 1, anon_sym_SLASH, - ACTIONS(2883), 1, + ACTIONS(2946), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2950), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2952), 1, anon_sym_AMP_AMP, - ACTIONS(2885), 1, + ACTIONS(2954), 1, anon_sym_PIPE, - ACTIONS(2887), 1, + ACTIONS(2956), 1, anon_sym_CARET, - ACTIONS(2889), 1, + ACTIONS(2958), 1, anon_sym_AMP, - STATE(707), 1, + ACTIONS(2968), 1, + anon_sym_QMARK, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2877), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2879), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2891), 2, + ACTIONS(2948), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2960), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2893), 2, + ACTIONS(2962), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2895), 2, + ACTIONS(2964), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2897), 2, + ACTIONS(2966), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2348), 8, + ACTIONS(2944), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, sym_identifier, - [35327] = 21, + [37293] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2434), 1, + ACTIONS(2602), 1, aux_sym_preproc_elif_token1, - ACTIONS(2881), 1, + ACTIONS(2942), 1, anon_sym_SLASH, - ACTIONS(2883), 1, + ACTIONS(2950), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2952), 1, anon_sym_AMP_AMP, - ACTIONS(2885), 1, + ACTIONS(2954), 1, anon_sym_PIPE, - ACTIONS(2887), 1, + ACTIONS(2956), 1, anon_sym_CARET, - ACTIONS(2889), 1, + ACTIONS(2958), 1, anon_sym_AMP, - ACTIONS(2899), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2901), 1, + ACTIONS(2968), 1, anon_sym_QMARK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2877), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2879), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2891), 2, + ACTIONS(2948), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2960), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2893), 2, + ACTIONS(2962), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2895), 2, + ACTIONS(2964), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2897), 2, + ACTIONS(2966), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2432), 6, + ACTIONS(2600), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [35404] = 21, + [37370] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2333), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2418), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2881), 1, + ACTIONS(2942), 1, anon_sym_SLASH, - ACTIONS(2883), 1, + ACTIONS(2952), 1, anon_sym_AMP_AMP, - ACTIONS(2885), 1, + ACTIONS(2954), 1, anon_sym_PIPE, - ACTIONS(2887), 1, + ACTIONS(2956), 1, anon_sym_CARET, - ACTIONS(2889), 1, + ACTIONS(2958), 1, anon_sym_AMP, - ACTIONS(2899), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2901), 1, - anon_sym_QMARK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2877), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2879), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2891), 2, + ACTIONS(2948), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2960), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2893), 2, + ACTIONS(2962), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2895), 2, + ACTIONS(2964), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2897), 2, + ACTIONS(2966), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2416), 6, + ACTIONS(2335), 8, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + sym_identifier, + [37443] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2934), 1, sym_identifier, - [35481] = 11, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_STAR, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1051), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1355), 1, + sym__field_declarator, + STATE(1993), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2774), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(985), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1139), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2772), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [37510] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2333), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2881), 1, + ACTIONS(2942), 1, anon_sym_SLASH, - STATE(707), 1, + ACTIONS(2954), 1, + anon_sym_PIPE, + ACTIONS(2956), 1, + anon_sym_CARET, + ACTIONS(2958), 1, + anon_sym_AMP, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2877), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2879), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2346), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2948), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2960), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2962), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2348), 16, + ACTIONS(2964), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2966), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2335), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -93324,48 +96314,102 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, 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_QMARK, sym_identifier, - [35538] = 12, + [37581] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2768), 1, + sym_identifier, + ACTIONS(2970), 1, + anon_sym_LPAREN2, + ACTIONS(2972), 1, + anon_sym_STAR, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1051), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1310), 1, + sym__declarator, + STATE(1943), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2774), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1008), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1136), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2772), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1371), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [37648] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2881), 1, + ACTIONS(2942), 1, anon_sym_SLASH, - STATE(707), 1, + ACTIONS(2956), 1, + anon_sym_CARET, + ACTIONS(2958), 1, + anon_sym_AMP, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2333), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2877), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2879), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2897), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2346), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2948), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2960), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2962), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2348), 14, + ACTIONS(2964), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2966), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2335), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -93373,50 +96417,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, 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_QMARK, sym_identifier, - [35597] = 14, + [37717] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2881), 1, + ACTIONS(2942), 1, anon_sym_SLASH, - STATE(707), 1, + ACTIONS(2958), 1, + anon_sym_AMP, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2333), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2877), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2879), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2893), 2, + ACTIONS(2948), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2960), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2962), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2895), 2, + ACTIONS(2964), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2897), 2, + ACTIONS(2966), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2346), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2348), 12, + ACTIONS(2335), 10, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -93425,50 +96468,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK, sym_identifier, - [35660] = 15, + [37784] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2881), 1, + ACTIONS(2942), 1, anon_sym_SLASH, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2877), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2879), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2891), 2, + ACTIONS(2948), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2960), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2893), 2, + ACTIONS(2962), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2895), 2, + ACTIONS(2964), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2897), 2, + ACTIONS(2966), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2346), 3, + ACTIONS(2333), 3, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2348), 10, + ACTIONS(2335), 10, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -93479,47 +96520,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [35725] = 16, + [37849] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2881), 1, + ACTIONS(2942), 1, anon_sym_SLASH, - ACTIONS(2889), 1, - anon_sym_AMP, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2346), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(2877), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2879), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2893), 2, + ACTIONS(2948), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2962), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2895), 2, + ACTIONS(2964), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2897), 2, + ACTIONS(2966), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2348), 10, + ACTIONS(2333), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2335), 12, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -93528,51 +96565,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, sym_identifier, - [35792] = 17, + [37912] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2881), 1, + ACTIONS(2942), 1, anon_sym_SLASH, - ACTIONS(2887), 1, - anon_sym_CARET, - ACTIONS(2889), 1, - anon_sym_AMP, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2346), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(2877), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2879), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2893), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2895), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2897), 2, + ACTIONS(2948), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2966), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2348), 9, + ACTIONS(2333), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2335), 14, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -93580,52 +96609,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, 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_QMARK, sym_identifier, - [35861] = 18, + [37971] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2346), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2881), 1, + ACTIONS(2942), 1, anon_sym_SLASH, - ACTIONS(2885), 1, - anon_sym_PIPE, - ACTIONS(2887), 1, - anon_sym_CARET, - ACTIONS(2889), 1, - anon_sym_AMP, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2877), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2879), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2893), 2, + ACTIONS(2948), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2333), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2895), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2897), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2348), 9, + ACTIONS(2335), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -93633,209 +96653,375 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, 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_QMARK, sym_identifier, - [35932] = 21, + [38028] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2881), 1, + ACTIONS(2501), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2942), 1, anon_sym_SLASH, - ACTIONS(2883), 1, + ACTIONS(2950), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2952), 1, anon_sym_AMP_AMP, - ACTIONS(2885), 1, + ACTIONS(2954), 1, anon_sym_PIPE, - ACTIONS(2887), 1, + ACTIONS(2956), 1, anon_sym_CARET, - ACTIONS(2889), 1, + ACTIONS(2958), 1, anon_sym_AMP, - ACTIONS(2899), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2901), 1, + ACTIONS(2968), 1, anon_sym_QMARK, - ACTIONS(2905), 1, - aux_sym_preproc_elif_token1, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2877), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2879), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2891), 2, + ACTIONS(2948), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2960), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2893), 2, + ACTIONS(2962), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2895), 2, + ACTIONS(2964), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2897), 2, + ACTIONS(2966), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2903), 6, + ACTIONS(2499), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [36009] = 21, + [38105] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2426), 1, + ACTIONS(2594), 1, aux_sym_preproc_elif_token1, - ACTIONS(2881), 1, + ACTIONS(2942), 1, anon_sym_SLASH, - ACTIONS(2883), 1, + ACTIONS(2950), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2952), 1, anon_sym_AMP_AMP, - ACTIONS(2885), 1, + ACTIONS(2954), 1, anon_sym_PIPE, - ACTIONS(2887), 1, + ACTIONS(2956), 1, anon_sym_CARET, - ACTIONS(2889), 1, + ACTIONS(2958), 1, anon_sym_AMP, - ACTIONS(2899), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2901), 1, + ACTIONS(2968), 1, anon_sym_QMARK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2877), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2879), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2891), 2, + ACTIONS(2948), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2960), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2893), 2, + ACTIONS(2962), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2895), 2, + ACTIONS(2964), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2897), 2, + ACTIONS(2966), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2424), 6, + ACTIONS(2592), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [36086] = 10, + [38182] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2768), 1, + sym_identifier, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2881), 1, - anon_sym_SLASH, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2879), 2, + ACTIONS(2972), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2346), 7, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2348), 16, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_QMARK, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1051), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1312), 1, + sym__declarator, + STATE(1943), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2774), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1004), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1137), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2772), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1371), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [38249] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_STAR, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1051), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1354), 1, + sym__field_declarator, + STATE(1993), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2774), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(984), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2772), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [38316] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2768), 1, + sym_identifier, + ACTIONS(2970), 1, + anon_sym_LPAREN2, + ACTIONS(2972), 1, + anon_sym_STAR, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1051), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1319), 1, + sym__declarator, + STATE(1943), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2774), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(992), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1135), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2772), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1371), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [38383] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2768), 1, sym_identifier, - [36141] = 18, + ACTIONS(2970), 1, + anon_sym_LPAREN2, + ACTIONS(2972), 1, + anon_sym_STAR, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1051), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1319), 1, + sym__declarator, + STATE(1943), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2774), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1008), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1135), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2772), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1371), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [38450] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2348), 8, + ACTIONS(2335), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -93844,38 +97030,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [36211] = 12, + [38520] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2927), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2346), 4, + ACTIONS(2333), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2348), 14, + ACTIONS(2335), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -93885,318 +97068,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [36269] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2929), 1, - anon_sym_typedef, - ACTIONS(2360), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [36311] = 17, + [38576] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2915), 1, + ACTIONS(2980), 1, + anon_sym_AMP_AMP, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - STATE(707), 1, + ACTIONS(2996), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2998), 1, + anon_sym_QMARK, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2348), 9, + ACTIONS(2499), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, - [36379] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1122), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1120), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [36419] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2931), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2802), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [36459] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1170), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1168), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [36499] = 10, + [38650] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2911), 1, - anon_sym_SLASH, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2909), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2346), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2348), 16, + STATE(1051), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(3007), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1008), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3004), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3002), 6, 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___attribute__, - anon_sym_RBRACE, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_QMARK, - [36553] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2933), 1, - anon_sym_typedef, - ACTIONS(2360), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [36595] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2935), 1, - anon_sym_typedef, - ACTIONS(2360), 30, + ACTIONS(3000), 18, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94205,423 +97166,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [36637] = 20, + [38698] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2424), 6, + ACTIONS(2600), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [36711] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2941), 1, - anon_sym_typedef, - ACTIONS(2360), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [36753] = 20, + [38772] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2416), 6, + ACTIONS(2592), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [36827] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1174), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1172), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [36867] = 11, + [38846] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2909), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2346), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2348), 16, - 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___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [36923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1122), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1120), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [36963] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1178), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1176), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [37003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2945), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2943), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [37043] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1178), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1176), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [37083] = 14, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2976), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2994), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2333), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2335), 14, + 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___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [38904] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2346), 2, + ACTIONS(2333), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2907), 2, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2348), 12, + ACTIONS(2335), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -94634,45 +97372,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [37145] = 15, + [38966] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2346), 2, + ACTIONS(2333), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2907), 2, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2348), 10, + ACTIONS(2335), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -94683,80 +97421,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [37209] = 16, + [39030] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2333), 1, + anon_sym_PIPE, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2346), 1, - anon_sym_PIPE, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2974), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2976), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2990), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2992), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2994), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2335), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [39096] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2333), 1, + anon_sym_PIPE, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2978), 1, + anon_sym_SLASH, + ACTIONS(2984), 1, + anon_sym_CARET, + ACTIONS(2986), 1, + anon_sym_AMP, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2348), 10, + ACTIONS(2335), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [39164] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2978), 1, + anon_sym_SLASH, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2976), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2333), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2335), 16, 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___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [37275] = 3, + [39218] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1170), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1168), 30, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2978), 1, + anon_sym_SLASH, + ACTIONS(2982), 1, + anon_sym_PIPE, + ACTIONS(2984), 1, + anon_sym_CARET, + ACTIONS(2986), 1, + anon_sym_AMP, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2976), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2990), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2992), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2994), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2335), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym___declspec, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [39286] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1680), 1, + anon_sym_enum, + ACTIONS(3010), 1, + sym_identifier, + ACTIONS(3014), 1, + sym_primitive_type, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1145), 1, + sym__type_specifier, + STATE(1171), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1286), 1, + sym__type_definition_type, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1032), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3012), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94765,35 +97665,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, + [39349] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, + ACTIONS(1680), 1, + anon_sym_enum, + ACTIONS(3010), 1, sym_identifier, - [37315] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1150), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1148), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(3014), 1, + sym_primitive_type, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1145), 1, + sym__type_specifier, + STATE(1171), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1290), 1, + sym__type_definition_type, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1032), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3012), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94802,35 +97713,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, + [39412] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, + ACTIONS(1680), 1, + anon_sym_enum, + ACTIONS(3010), 1, sym_identifier, - [37355] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2949), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2947), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(3014), 1, + sym_primitive_type, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1145), 1, + sym__type_specifier, + STATE(1171), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1289), 1, + sym__type_definition_type, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1032), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3012), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94839,35 +97761,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, + [39475] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, + ACTIONS(1680), 1, + anon_sym_enum, + ACTIONS(3010), 1, sym_identifier, - [37395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1202), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1200), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(3014), 1, + sym_primitive_type, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1145), 1, + sym__type_specifier, + STATE(1171), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1287), 1, + sym__type_definition_type, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1032), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3012), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94876,35 +97809,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, + [39538] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, + ACTIONS(1680), 1, + anon_sym_enum, + ACTIONS(3010), 1, sym_identifier, - [37435] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1202), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1200), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(3014), 1, + sym_primitive_type, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1145), 1, + sym__type_specifier, + STATE(1171), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1285), 1, + sym__type_definition_type, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1032), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3012), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94913,154 +97857,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + [39601] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, sym_primitive_type, - anon_sym_enum, + ACTIONS(55), 1, anon_sym_struct, + ACTIONS(57), 1, anon_sym_union, + ACTIONS(1830), 1, sym_identifier, - [37475] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2911), 1, - anon_sym_SLASH, - ACTIONS(2913), 1, - anon_sym_AMP_AMP, - ACTIONS(2915), 1, - anon_sym_PIPE, - ACTIONS(2917), 1, - anon_sym_CARET, - ACTIONS(2919), 1, - anon_sym_AMP, - ACTIONS(2937), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, - anon_sym_QMARK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2909), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2921), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2923), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2925), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2927), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2432), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [37549] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2346), 1, - anon_sym_PIPE, - ACTIONS(2911), 1, - anon_sym_SLASH, - ACTIONS(2917), 1, - anon_sym_CARET, - ACTIONS(2919), 1, - anon_sym_AMP, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2909), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2921), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2923), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2925), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2927), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2348), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [37617] = 15, + ACTIONS(3016), 1, + anon_sym_enum, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1127), 1, + sym__type_specifier, + STATE(1141), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1956), 1, + sym_type_descriptor, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1042), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1678), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [39664] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 1, - anon_sym_LPAREN2, - ACTIONS(1751), 1, - anon_sym_STAR, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2756), 1, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1680), 1, + anon_sym_enum, + ACTIONS(1830), 1, sym_identifier, - ACTIONS(2764), 1, - anon_sym_LBRACK, - STATE(1321), 1, - sym__declarator, - STATE(1475), 1, - sym__abstract_declarator, - STATE(1488), 1, - sym_parameter_list, - STATE(1803), 1, - sym_ms_based_modifier, - ACTIONS(2758), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1114), 2, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1127), 1, + sym__type_specifier, + STATE(1141), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1876), 1, + sym_type_descriptor, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1034), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1487), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + ACTIONS(1678), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -95071,44 +97953,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37680] = 15, + [39727] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 1, - anon_sym_LPAREN2, - ACTIONS(1751), 1, - anon_sym_STAR, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2756), 1, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1680), 1, + anon_sym_enum, + ACTIONS(3010), 1, sym_identifier, - ACTIONS(2764), 1, - anon_sym_LBRACK, - STATE(1312), 1, - sym__declarator, - STATE(1459), 1, - sym__abstract_declarator, - STATE(1488), 1, - sym_parameter_list, - STATE(1803), 1, - sym_ms_based_modifier, - ACTIONS(2951), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1114), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1487), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + ACTIONS(3014), 1, + sym_primitive_type, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1145), 1, + sym__type_specifier, + STATE(1171), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1283), 1, + sym__type_definition_type, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1032), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3012), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -95119,48 +98001,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37743] = 16, + [39790] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(1879), 1, - anon_sym_LPAREN2, - ACTIONS(1881), 1, - anon_sym_STAR, - ACTIONS(2760), 1, - sym_ms_restrict_modifier, - ACTIONS(2764), 1, - anon_sym_LBRACK, - STATE(1108), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1474), 1, - sym__abstract_declarator, - STATE(1488), 1, - sym_parameter_list, - ACTIONS(2955), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2957), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1004), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1125), 2, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1680), 1, + anon_sym_enum, + ACTIONS(1830), 1, + sym_identifier, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1127), 1, + sym__type_specifier, + STATE(1141), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1874), 1, + sym_type_descriptor, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1034), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2788), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1487), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2953), 8, + ACTIONS(1678), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -95168,48 +98049,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37808] = 16, + [39853] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(1879), 1, - anon_sym_LPAREN2, - ACTIONS(1881), 1, - anon_sym_STAR, - ACTIONS(2760), 1, - sym_ms_restrict_modifier, - ACTIONS(2764), 1, - anon_sym_LBRACK, - STATE(1108), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1475), 1, - sym__abstract_declarator, - STATE(1488), 1, - sym_parameter_list, - ACTIONS(2955), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2957), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1005), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1124), 2, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1680), 1, + anon_sym_enum, + ACTIONS(3010), 1, + sym_identifier, + ACTIONS(3014), 1, + sym_primitive_type, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1145), 1, + sym__type_specifier, + STATE(1171), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1284), 1, + sym__type_definition_type, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1032), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2758), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1487), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2953), 8, + ACTIONS(3012), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -95217,35 +98097,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37873] = 7, + [39916] = 15, ACTIONS(3), 1, sym_comment, - STATE(1108), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(2966), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1005), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2963), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2961), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2959), 16, - anon_sym___extension__, - anon_sym___based, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1680), 1, + anon_sym_enum, + ACTIONS(3010), 1, + sym_identifier, + ACTIONS(3014), 1, + sym_primitive_type, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1145), 1, + sym__type_specifier, + STATE(1171), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1288), 1, + sym__type_definition_type, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1032), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3012), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -95254,44 +98145,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [37919] = 14, + [39979] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2969), 1, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1680), 1, + anon_sym_enum, + ACTIONS(1830), 1, sym_identifier, - ACTIONS(2971), 1, - anon_sym_LPAREN2, - ACTIONS(2973), 1, - anon_sym_STAR, - STATE(1108), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1329), 1, - sym__field_declarator, - STATE(1929), 1, - sym_ms_based_modifier, - ACTIONS(2762), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1005), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1130), 2, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1127), 1, + sym__type_specifier, + STATE(1141), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1866), 1, + sym_type_descriptor, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1034), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2760), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1398), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + ACTIONS(1678), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -95302,42 +98193,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37979] = 14, + [40042] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2969), 1, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1830), 1, sym_identifier, - ACTIONS(2971), 1, - anon_sym_LPAREN2, - ACTIONS(2973), 1, - anon_sym_STAR, - STATE(1108), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1336), 1, - sym__field_declarator, - STATE(1929), 1, - sym_ms_based_modifier, - ACTIONS(2762), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1005), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1138), 2, + ACTIONS(3016), 1, + anon_sym_enum, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1127), 1, + sym__type_specifier, + STATE(1141), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1872), 1, + sym_type_descriptor, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1042), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2760), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1398), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + ACTIONS(1678), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -95348,42 +98241,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38039] = 14, + [40105] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2756), 1, + ACTIONS(2873), 1, sym_identifier, - ACTIONS(2975), 1, + ACTIONS(2875), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2877), 1, anon_sym_STAR, - STATE(1108), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1321), 1, - sym__declarator, - STATE(1803), 1, + ACTIONS(2881), 1, + sym_primitive_type, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1364), 1, + sym__type_declarator, + STATE(1909), 1, sym_ms_based_modifier, - ACTIONS(2762), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1014), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1136), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1039), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2760), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + ACTIONS(2879), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1444), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -95394,42 +98287,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38099] = 14, + [40165] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2969), 1, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1680), 1, + anon_sym_enum, + ACTIONS(3010), 1, sym_identifier, - ACTIONS(2971), 1, - anon_sym_LPAREN2, - ACTIONS(2973), 1, - anon_sym_STAR, - STATE(1108), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1335), 1, - sym__field_declarator, - STATE(1929), 1, - sym_ms_based_modifier, - ACTIONS(2762), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1006), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1131), 2, + ACTIONS(3014), 1, + sym_primitive_type, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1142), 1, + sym__type_specifier, + STATE(1171), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1039), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2760), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1398), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + ACTIONS(3012), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -95440,10 +98333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38159] = 3, + [40225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 11, + ACTIONS(3018), 11, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -95455,7 +98348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(2981), 19, + ACTIONS(3020), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95475,10 +98368,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [38197] = 3, + [40263] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1680), 1, + anon_sym_enum, + ACTIONS(1830), 1, + sym_identifier, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1132), 1, + sym__type_specifier, + STATE(1141), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1039), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1678), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [40323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 11, + ACTIONS(3022), 11, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -95490,7 +98429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(2985), 19, + ACTIONS(3024), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95510,10 +98449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [38235] = 3, + [40361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 11, + ACTIONS(3026), 11, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -95525,7 +98464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(2989), 19, + ACTIONS(3028), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95545,42 +98484,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [38273] = 14, + [40399] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2756), 1, + ACTIONS(2873), 1, sym_identifier, - ACTIONS(2975), 1, + ACTIONS(2875), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2877), 1, anon_sym_STAR, - STATE(1108), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1321), 1, - sym__declarator, - STATE(1803), 1, + ACTIONS(2881), 1, + sym_primitive_type, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1363), 1, + sym__type_declarator, + STATE(1909), 1, sym_ms_based_modifier, - ACTIONS(2762), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1005), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1136), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1039), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2760), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + ACTIONS(2879), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1444), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -95591,43 +98530,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38333] = 14, + [40459] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2756), 1, - sym_identifier, - ACTIONS(2975), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2978), 1, + anon_sym_SLASH, + ACTIONS(2980), 1, + anon_sym_AMP_AMP, + ACTIONS(2982), 1, + anon_sym_PIPE, + ACTIONS(2984), 1, + anon_sym_CARET, + ACTIONS(2986), 1, + anon_sym_AMP, + ACTIONS(2996), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2998), 1, + anon_sym_QMARK, + ACTIONS(3030), 1, + anon_sym_COMMA, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2976), 2, anon_sym_STAR, - STATE(1108), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1312), 1, - sym__declarator, - STATE(1803), 1, - sym_ms_based_modifier, - ACTIONS(2762), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1005), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1137), 2, + anon_sym_PERCENT, + ACTIONS(2988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2990), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2992), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2994), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3032), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [40533] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(754), 1, + sym_alignas_qualifier, + ACTIONS(3041), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1039), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2760), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, + ACTIONS(3036), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3038), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95637,42 +98611,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38393] = 14, + ACTIONS(3034), 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, + [40579] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2969), 1, + ACTIONS(2873), 1, sym_identifier, - ACTIONS(2971), 1, + ACTIONS(2875), 1, anon_sym_LPAREN2, - ACTIONS(2973), 1, + ACTIONS(2877), 1, anon_sym_STAR, - STATE(1108), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1329), 1, - sym__field_declarator, - STATE(1929), 1, + ACTIONS(2881), 1, + sym_primitive_type, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1372), 1, + sym__type_declarator, + STATE(1909), 1, sym_ms_based_modifier, - ACTIONS(2762), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1007), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1130), 2, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1039), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2760), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1398), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + ACTIONS(2879), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1444), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -95683,42 +98668,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38453] = 14, + [40639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2756), 1, + ACTIONS(3044), 11, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - ACTIONS(2975), 1, + ACTIONS(3046), 19, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2977), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - STATE(1108), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1303), 1, - sym__declarator, - STATE(1803), 1, - sym_ms_based_modifier, - ACTIONS(2762), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1013), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2760), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [40677] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1830), 1, + sym_identifier, + ACTIONS(3016), 1, + anon_sym_enum, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1132), 1, + sym__type_specifier, + STATE(1141), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1039), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1678), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(822), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -95729,1545 +98749,1447 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38513] = 3, + [40737] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 11, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2978), 1, anon_sym_SLASH, + ACTIONS(2980), 1, + anon_sym_AMP_AMP, + ACTIONS(2982), 1, anon_sym_PIPE, + ACTIONS(2984), 1, + anon_sym_CARET, + ACTIONS(2986), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(2993), 19, + ACTIONS(2996), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2998), 1, + anon_sym_QMARK, + ACTIONS(3048), 1, anon_sym_COMMA, + ACTIONS(3050), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(728), 1, + sym_argument_list, + STATE(1594), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2990), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [38551] = 21, + [40812] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, + ACTIONS(3052), 1, anon_sym_COMMA, - STATE(707), 1, + ACTIONS(3054), 1, + anon_sym_RPAREN, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + STATE(1630), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2997), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [38625] = 22, + [40887] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2999), 1, + ACTIONS(3052), 1, anon_sym_COMMA, - ACTIONS(3001), 1, + ACTIONS(3056), 1, anon_sym_RPAREN, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - STATE(1567), 1, + STATE(1610), 1, aux_sym_argument_list_repeat1, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38700] = 20, + [40962] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 3, + ACTIONS(3058), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - [38771] = 22, + [41033] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2999), 1, + ACTIONS(3052), 1, anon_sym_COMMA, - ACTIONS(3005), 1, + ACTIONS(3060), 1, anon_sym_RPAREN, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - STATE(1583), 1, + STATE(1577), 1, aux_sym_argument_list_repeat1, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38846] = 22, + [41108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3064), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3062), 23, + anon_sym___extension__, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [41145] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2999), 1, + ACTIONS(3066), 1, anon_sym_COMMA, - ACTIONS(3007), 1, - anon_sym_RPAREN, - STATE(707), 1, + ACTIONS(3068), 1, + anon_sym_RBRACE, + STATE(728), 1, sym_argument_list, - STATE(1672), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + STATE(1679), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38921] = 22, + [41220] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(3009), 1, + ACTIONS(3052), 1, anon_sym_COMMA, - ACTIONS(3011), 1, + ACTIONS(3070), 1, anon_sym_RPAREN, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - STATE(1677), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + STATE(1659), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38996] = 22, + [41295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3074), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3072), 23, + anon_sym___extension__, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [41332] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2999), 1, + ACTIONS(3030), 1, anon_sym_COMMA, - ACTIONS(3013), 1, - anon_sym_RPAREN, - STATE(707), 1, + ACTIONS(3076), 1, + anon_sym_SEMI, + STATE(728), 1, sym_argument_list, - STATE(1679), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39071] = 22, + [41404] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2785), 1, + anon_sym_LBRACE, + STATE(826), 1, + sym_attribute_specifier, + STATE(1125), 1, + sym_enumerator_list, + ACTIONS(2793), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2791), 18, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [41448] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(3015), 1, + ACTIONS(3030), 1, anon_sym_COMMA, - ACTIONS(3017), 1, - anon_sym_RBRACE, - STATE(707), 1, + ACTIONS(3078), 1, + anon_sym_SEMI, + STATE(728), 1, sym_argument_list, - STATE(1616), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39146] = 21, + [41520] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, + ACTIONS(3030), 1, anon_sym_COMMA, - ACTIONS(3019), 1, + ACTIONS(3080), 1, anon_sym_SEMI, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39218] = 20, + [41592] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2903), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39288] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1831), 1, - sym_identifier, - ACTIONS(3021), 1, - anon_sym_enum, - STATE(1123), 1, - sym__type_specifier, - STATE(1139), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1815), 1, - sym_type_descriptor, - STATE(1103), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1667), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [39344] = 21, + ACTIONS(3082), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41662] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, + ACTIONS(3030), 1, anon_sym_COMMA, - ACTIONS(3023), 1, - anon_sym_RPAREN, - STATE(707), 1, + ACTIONS(3084), 1, + anon_sym_COLON, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39416] = 21, + [41734] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2750), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - ACTIONS(3029), 1, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(3031), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3033), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(3035), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(3037), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(3039), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(3049), 1, + ACTIONS(2996), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2998), 1, anon_sym_QMARK, - STATE(707), 1, + ACTIONS(3030), 1, + anon_sym_COMMA, + ACTIONS(3086), 1, + anon_sym_RPAREN, + STATE(728), 1, sym_argument_list, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2424), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3025), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3041), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3043), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3047), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39488] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1669), 1, - anon_sym_enum, - ACTIONS(1831), 1, - sym_identifier, - STATE(1123), 1, - sym__type_specifier, - STATE(1139), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1960), 1, - sym_type_descriptor, - STATE(1102), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1667), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [39544] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1669), 1, - anon_sym_enum, - ACTIONS(3051), 1, - sym_identifier, - ACTIONS(3055), 1, - sym_primitive_type, - STATE(1176), 1, - sym__type_specifier, - STATE(1223), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1284), 1, - sym__type_definition_type, - STATE(1105), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3053), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [39600] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1669), 1, - anon_sym_enum, - ACTIONS(3051), 1, - sym_identifier, - ACTIONS(3055), 1, - sym_primitive_type, - STATE(1176), 1, - sym__type_specifier, - STATE(1223), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1280), 1, - sym__type_definition_type, - STATE(1105), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3053), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [39656] = 21, + [41806] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, + ACTIONS(3030), 1, anon_sym_COMMA, - ACTIONS(3057), 1, + ACTIONS(3088), 1, anon_sym_SEMI, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2974), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2976), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2990), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2992), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2994), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [41878] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2978), 1, + anon_sym_SLASH, + ACTIONS(2980), 1, + anon_sym_AMP_AMP, + ACTIONS(2982), 1, + anon_sym_PIPE, + ACTIONS(2984), 1, + anon_sym_CARET, + ACTIONS(2986), 1, + anon_sym_AMP, + ACTIONS(2996), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2998), 1, + anon_sym_QMARK, + ACTIONS(3030), 1, + anon_sym_COMMA, + ACTIONS(3090), 1, + anon_sym_COLON, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39728] = 16, + [41950] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2273), 1, + ACTIONS(2343), 1, anon_sym_DASH_GT, - ACTIONS(2750), 1, + ACTIONS(2822), 1, anon_sym_LPAREN2, - ACTIONS(2752), 1, + ACTIONS(2844), 1, anon_sym_DOT, - ACTIONS(3029), 1, + ACTIONS(3096), 1, anon_sym_SLASH, - STATE(707), 1, + ACTIONS(3098), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3100), 1, + anon_sym_AMP_AMP, + ACTIONS(3102), 1, + anon_sym_PIPE, + ACTIONS(3104), 1, + anon_sym_CARET, + ACTIONS(3106), 1, + anon_sym_AMP, + ACTIONS(3116), 1, + anon_sym_QMARK, + STATE(728), 1, sym_argument_list, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2346), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3025), 2, + ACTIONS(2600), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3041), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3043), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3047), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2348), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + [42022] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2978), 1, + anon_sym_SLASH, + ACTIONS(2980), 1, anon_sym_AMP_AMP, + ACTIONS(2982), 1, + anon_sym_PIPE, + ACTIONS(2984), 1, anon_sym_CARET, - anon_sym_RBRACK, + ACTIONS(2986), 1, + anon_sym_AMP, + ACTIONS(2996), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2998), 1, anon_sym_QMARK, - [39790] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1669), 1, - anon_sym_enum, - ACTIONS(1831), 1, - sym_identifier, - STATE(1123), 1, - sym__type_specifier, - STATE(1139), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1968), 1, - sym_type_descriptor, - STATE(1102), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1667), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [39846] = 18, + ACTIONS(3030), 1, + anon_sym_COMMA, + ACTIONS(3118), 1, + anon_sym_COLON, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2976), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2990), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2992), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2994), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [42094] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2273), 1, + ACTIONS(2343), 1, anon_sym_DASH_GT, - ACTIONS(2346), 1, - anon_sym_PIPE, - ACTIONS(2750), 1, + ACTIONS(2822), 1, anon_sym_LPAREN2, - ACTIONS(2752), 1, + ACTIONS(2844), 1, anon_sym_DOT, - ACTIONS(3029), 1, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(3037), 1, - anon_sym_CARET, - ACTIONS(3039), 1, - anon_sym_AMP, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3025), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3041), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3043), 2, + ACTIONS(2333), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(2335), 12, + anon_sym_DOT_DOT_DOT, + 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(3047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2348), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, - [39912] = 21, + [42146] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, + ACTIONS(3030), 1, anon_sym_COMMA, - ACTIONS(3059), 1, - anon_sym_SEMI, - STATE(707), 1, + ACTIONS(3120), 1, + anon_sym_RPAREN, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39984] = 21, + [42218] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, - anon_sym_COMMA, - ACTIONS(3061), 1, - anon_sym_SEMI, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40056] = 15, + ACTIONS(3122), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42288] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2273), 1, + ACTIONS(2343), 1, anon_sym_DASH_GT, - ACTIONS(2750), 1, + ACTIONS(2822), 1, anon_sym_LPAREN2, - ACTIONS(2752), 1, + ACTIONS(2844), 1, anon_sym_DOT, - ACTIONS(3029), 1, + ACTIONS(3096), 1, anon_sym_SLASH, - STATE(707), 1, + ACTIONS(3100), 1, + anon_sym_AMP_AMP, + ACTIONS(3102), 1, + anon_sym_PIPE, + ACTIONS(3104), 1, + anon_sym_CARET, + ACTIONS(3106), 1, + anon_sym_AMP, + STATE(728), 1, sym_argument_list, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2346), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3025), 2, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3043), 2, + ACTIONS(3108), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3047), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2348), 8, + ACTIONS(2335), 4, anon_sym_DOT_DOT_DOT, 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, - [40116] = 21, + [42356] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(2844), 1, + anon_sym_DOT, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(2913), 1, - anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(3102), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(3104), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(3106), 1, anon_sym_AMP, - ACTIONS(2937), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, - anon_sym_QMARK, - ACTIONS(2995), 1, - anon_sym_COMMA, - ACTIONS(3063), 1, - anon_sym_COLON, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40188] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1669), 1, - anon_sym_enum, - ACTIONS(3051), 1, - sym_identifier, - ACTIONS(3055), 1, - sym_primitive_type, - STATE(1176), 1, - sym__type_specifier, - STATE(1223), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1277), 1, - sym__type_definition_type, - STATE(1105), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3053), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [40244] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1831), 1, - sym_identifier, - ACTIONS(3021), 1, - anon_sym_enum, - STATE(1123), 1, - sym__type_specifier, - STATE(1139), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1868), 1, - sym_type_descriptor, - STATE(1103), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1667), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [40300] = 20, + ACTIONS(2335), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [42422] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2333), 1, + anon_sym_PIPE, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(2844), 1, + anon_sym_DOT, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(2913), 1, - anon_sym_AMP_AMP, - ACTIONS(2915), 1, - anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(3104), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(3106), 1, anon_sym_AMP, - ACTIONS(2937), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, - anon_sym_QMARK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3065), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [40370] = 21, + ACTIONS(2335), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [42488] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2333), 1, + anon_sym_PIPE, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(2844), 1, + anon_sym_DOT, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(2913), 1, - anon_sym_AMP_AMP, - ACTIONS(2915), 1, - anon_sym_PIPE, - ACTIONS(2917), 1, - anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(3106), 1, anon_sym_AMP, - ACTIONS(2937), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, - anon_sym_QMARK, - ACTIONS(2995), 1, - anon_sym_COMMA, - ACTIONS(3067), 1, - anon_sym_COLON, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40442] = 20, + ACTIONS(2335), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [42552] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(2844), 1, + anon_sym_DOT, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(2913), 1, - anon_sym_AMP_AMP, - ACTIONS(2915), 1, + STATE(728), 1, + sym_argument_list, + ACTIONS(2333), 2, anon_sym_PIPE, - ACTIONS(2917), 1, - anon_sym_CARET, - ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2937), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, - anon_sym_QMARK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3069), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [40512] = 21, + ACTIONS(2335), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [42614] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(2844), 1, + anon_sym_DOT, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(2913), 1, - anon_sym_AMP_AMP, - ACTIONS(2915), 1, + STATE(728), 1, + sym_argument_list, + ACTIONS(2333), 2, anon_sym_PIPE, - ACTIONS(2917), 1, - anon_sym_CARET, - ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2937), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, - anon_sym_QMARK, - ACTIONS(2995), 1, - anon_sym_COMMA, - ACTIONS(3071), 1, - anon_sym_RPAREN, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40584] = 13, + ACTIONS(2335), 8, + anon_sym_DOT_DOT_DOT, + 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, + [42674] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2273), 1, + ACTIONS(2343), 1, anon_sym_DASH_GT, - ACTIONS(2750), 1, + ACTIONS(2822), 1, anon_sym_LPAREN2, - ACTIONS(2752), 1, + ACTIONS(2844), 1, anon_sym_DOT, - ACTIONS(3029), 1, + ACTIONS(3096), 1, anon_sym_SLASH, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3025), 2, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3047), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2346), 4, + ACTIONS(2333), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2348), 10, + ACTIONS(2335), 10, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -97278,429 +100200,430 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, - [40640] = 21, + [42730] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, + ACTIONS(3030), 1, anon_sym_COMMA, - ACTIONS(3073), 1, - anon_sym_SEMI, - STATE(707), 1, + ACTIONS(3124), 1, + anon_sym_RPAREN, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40712] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1669), 1, - anon_sym_enum, - ACTIONS(3051), 1, - sym_identifier, - ACTIONS(3055), 1, - sym_primitive_type, - STATE(1176), 1, - sym__type_specifier, - STATE(1223), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1276), 1, - sym__type_definition_type, - STATE(1105), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3053), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [40768] = 18, + [42802] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2273), 1, + ACTIONS(2343), 1, anon_sym_DASH_GT, - ACTIONS(2750), 1, + ACTIONS(2822), 1, anon_sym_LPAREN2, - ACTIONS(2752), 1, + ACTIONS(2844), 1, anon_sym_DOT, - ACTIONS(3029), 1, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(3035), 1, - anon_sym_PIPE, - ACTIONS(3037), 1, - anon_sym_CARET, - ACTIONS(3039), 1, - anon_sym_AMP, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3025), 2, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3041), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3043), 2, + ACTIONS(2333), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(2335), 12, + anon_sym_DOT_DOT_DOT, + 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(3047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2348), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, - [40834] = 21, + [42856] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, + ACTIONS(3030), 1, anon_sym_COMMA, - ACTIONS(3075), 1, + ACTIONS(3126), 1, anon_sym_COLON, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40906] = 21, + [42928] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, + ACTIONS(3030), 1, anon_sym_COMMA, - ACTIONS(3077), 1, + ACTIONS(3128), 1, anon_sym_RPAREN, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40978] = 21, + [43000] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, - anon_sym_COMMA, - ACTIONS(3079), 1, - anon_sym_SEMI, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41050] = 21, + ACTIONS(3130), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [43070] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2273), 1, + ACTIONS(2343), 1, anon_sym_DASH_GT, - ACTIONS(2750), 1, + ACTIONS(2822), 1, anon_sym_LPAREN2, - ACTIONS(2752), 1, + ACTIONS(2844), 1, anon_sym_DOT, - ACTIONS(3029), 1, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(3031), 1, + ACTIONS(3098), 1, anon_sym_PIPE_PIPE, - ACTIONS(3033), 1, + ACTIONS(3100), 1, anon_sym_AMP_AMP, - ACTIONS(3035), 1, + ACTIONS(3102), 1, anon_sym_PIPE, - ACTIONS(3037), 1, + ACTIONS(3104), 1, anon_sym_CARET, - ACTIONS(3039), 1, + ACTIONS(3106), 1, anon_sym_AMP, - ACTIONS(3049), 1, + ACTIONS(3116), 1, anon_sym_QMARK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2416), 2, + ACTIONS(2499), 2, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, - ACTIONS(3025), 2, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3041), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3043), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3047), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41122] = 12, + [43142] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2750), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - ACTIONS(3029), 1, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2978), 1, anon_sym_SLASH, - STATE(707), 1, + ACTIONS(2980), 1, + anon_sym_AMP_AMP, + ACTIONS(2982), 1, + anon_sym_PIPE, + ACTIONS(2984), 1, + anon_sym_CARET, + ACTIONS(2986), 1, + anon_sym_AMP, + ACTIONS(2996), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2998), 1, + anon_sym_QMARK, + ACTIONS(3030), 1, + anon_sym_COMMA, + ACTIONS(3132), 1, + anon_sym_SEMI, + STATE(728), 1, sym_argument_list, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3025), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2346), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2348), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + ACTIONS(2992), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2994), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43214] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2978), 1, + anon_sym_SLASH, + ACTIONS(2980), 1, anon_sym_AMP_AMP, + ACTIONS(2982), 1, + anon_sym_PIPE, + ACTIONS(2984), 1, anon_sym_CARET, + ACTIONS(2986), 1, + anon_sym_AMP, + ACTIONS(2996), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2998), 1, + anon_sym_QMARK, + ACTIONS(3030), 1, + anon_sym_COMMA, + ACTIONS(3134), 1, + anon_sym_RPAREN, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2976), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2990), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [41176] = 13, + [43286] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1669), 1, - anon_sym_enum, - ACTIONS(3051), 1, - sym_identifier, - ACTIONS(3055), 1, - sym_primitive_type, - STATE(1176), 1, - sym__type_specifier, - STATE(1223), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1282), 1, - sym__type_definition_type, - STATE(1105), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3053), 4, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2785), 1, + anon_sym_LBRACE, + ACTIONS(3136), 1, + anon_sym_COLON, + STATE(788), 1, + sym_attribute_specifier, + STATE(1131), 1, + sym_enumerator_list, + ACTIONS(2780), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(2778), 18, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -97709,2315 +100632,2087 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [41232] = 21, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [43332] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, + ACTIONS(3030), 1, anon_sym_COMMA, - ACTIONS(3081), 1, - anon_sym_RPAREN, - STATE(707), 1, + ACTIONS(3138), 1, + anon_sym_SEMI, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2974), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2976), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2990), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2992), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2994), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43404] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2978), 1, + anon_sym_SLASH, + ACTIONS(2980), 1, + anon_sym_AMP_AMP, + ACTIONS(2982), 1, + anon_sym_PIPE, + ACTIONS(2984), 1, + anon_sym_CARET, + ACTIONS(2986), 1, + anon_sym_AMP, + ACTIONS(2996), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2998), 1, + anon_sym_QMARK, + ACTIONS(3030), 1, + anon_sym_COMMA, + ACTIONS(3140), 1, + anon_sym_SEMI, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41304] = 20, + [43476] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - STATE(707), 1, + ACTIONS(3030), 1, + anon_sym_COMMA, + ACTIONS(3142), 1, + anon_sym_RPAREN, + STATE(728), 1, + sym_argument_list, + ACTIONS(2341), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2976), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2988), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2990), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2992), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2994), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43548] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(2844), 1, + anon_sym_DOT, + ACTIONS(3096), 1, + anon_sym_SLASH, + ACTIONS(3098), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3100), 1, + anon_sym_AMP_AMP, + ACTIONS(3102), 1, + anon_sym_PIPE, + ACTIONS(3104), 1, + anon_sym_CARET, + ACTIONS(3106), 1, + anon_sym_AMP, + ACTIONS(3116), 1, + anon_sym_QMARK, + ACTIONS(3144), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3146), 1, + anon_sym_RBRACK, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3083), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [41374] = 19, + [43622] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2750), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - ACTIONS(3029), 1, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(3033), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(3035), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(3037), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(3039), 1, + ACTIONS(2986), 1, anon_sym_AMP, - STATE(707), 1, + ACTIONS(2996), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2998), 1, + anon_sym_QMARK, + ACTIONS(3030), 1, + anon_sym_COMMA, + ACTIONS(3148), 1, + anon_sym_RPAREN, + STATE(728), 1, sym_argument_list, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3025), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3041), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3043), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3047), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2348), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [41442] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1669), 1, - anon_sym_enum, - ACTIONS(1831), 1, - sym_identifier, - STATE(1123), 1, - sym__type_specifier, - STATE(1139), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1957), 1, - sym_type_descriptor, - STATE(1102), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1667), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [41498] = 11, + [43694] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2750), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - ACTIONS(3029), 1, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2978), 1, anon_sym_SLASH, - STATE(707), 1, + ACTIONS(2980), 1, + anon_sym_AMP_AMP, + ACTIONS(2982), 1, + anon_sym_PIPE, + ACTIONS(2984), 1, + anon_sym_CARET, + ACTIONS(2986), 1, + anon_sym_AMP, + ACTIONS(2996), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2998), 1, + anon_sym_QMARK, + STATE(728), 1, sym_argument_list, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3027), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2346), 6, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2348), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2976), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2990), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [41550] = 21, + ACTIONS(3150), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [43764] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, + ACTIONS(3030), 1, anon_sym_COMMA, - ACTIONS(3085), 1, - anon_sym_RPAREN, - STATE(707), 1, + ACTIONS(3152), 1, + anon_sym_SEMI, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41622] = 21, + [43836] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, + ACTIONS(3030), 1, anon_sym_COMMA, - ACTIONS(3087), 1, - anon_sym_RPAREN, - STATE(707), 1, + ACTIONS(3154), 1, + anon_sym_SEMI, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41694] = 21, + [43908] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, + ACTIONS(3030), 1, anon_sym_COMMA, - ACTIONS(3089), 1, - anon_sym_SEMI, - STATE(707), 1, + ACTIONS(3156), 1, + anon_sym_COLON, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41766] = 21, + [43980] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2750), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - ACTIONS(3029), 1, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(3031), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3033), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(3035), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(3037), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(3039), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(3049), 1, + ACTIONS(2996), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2998), 1, anon_sym_QMARK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2432), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3025), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3041), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3043), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3047), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41838] = 21, + ACTIONS(3158), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [44050] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, + ACTIONS(3030), 1, anon_sym_COMMA, - ACTIONS(3091), 1, - anon_sym_COLON, - STATE(707), 1, + ACTIONS(3160), 1, + anon_sym_SEMI, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41910] = 20, + [44122] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3093), 2, + ACTIONS(3162), 2, anon_sym_COMMA, anon_sym_RBRACE, - [41980] = 21, + [44192] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, + ACTIONS(3030), 1, anon_sym_COMMA, - ACTIONS(3095), 1, + ACTIONS(3164), 1, anon_sym_SEMI, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42052] = 20, + [44264] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - STATE(707), 1, + ACTIONS(3030), 1, + anon_sym_COMMA, + ACTIONS(3166), 1, + anon_sym_RPAREN, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3097), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42122] = 21, + [44336] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2343), 1, + anon_sym_DASH_GT, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(2844), 1, + anon_sym_DOT, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(3098), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3100), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(3102), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(3104), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(3106), 1, anon_sym_AMP, - ACTIONS(2937), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(3116), 1, anon_sym_QMARK, - ACTIONS(2995), 1, - anon_sym_COMMA, - ACTIONS(3099), 1, - anon_sym_RPAREN, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2592), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42194] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1669), 1, - anon_sym_enum, - ACTIONS(3051), 1, - sym_identifier, - ACTIONS(3055), 1, - sym_primitive_type, - STATE(1176), 1, - sym__type_specifier, - STATE(1223), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1279), 1, - sym__type_definition_type, - STATE(1105), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3053), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [42250] = 21, + [44408] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, + ACTIONS(3030), 1, anon_sym_COMMA, - ACTIONS(3101), 1, + ACTIONS(3168), 1, anon_sym_SEMI, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42322] = 17, + [44480] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2346), 1, - anon_sym_PIPE, - ACTIONS(2750), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - ACTIONS(3029), 1, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(3039), 1, + ACTIONS(2980), 1, + anon_sym_AMP_AMP, + ACTIONS(2982), 1, + anon_sym_PIPE, + ACTIONS(2984), 1, + anon_sym_CARET, + ACTIONS(2986), 1, anon_sym_AMP, - STATE(707), 1, + ACTIONS(2996), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2998), 1, + anon_sym_QMARK, + ACTIONS(3030), 1, + anon_sym_COMMA, + ACTIONS(3170), 1, + anon_sym_COLON, + STATE(728), 1, sym_argument_list, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3025), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3041), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3043), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3047), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2348), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [42386] = 21, + [44552] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, - anon_sym_COMMA, - ACTIONS(3103), 1, - anon_sym_COLON, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42458] = 20, + ACTIONS(3172), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [44622] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2944), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3105), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42528] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1669), 1, - anon_sym_enum, - ACTIONS(3051), 1, - sym_identifier, - ACTIONS(3055), 1, - sym_primitive_type, - STATE(1176), 1, - sym__type_specifier, - STATE(1223), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1283), 1, - sym__type_definition_type, - STATE(1105), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3053), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [42584] = 21, + [44692] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, - anon_sym_COMMA, - ACTIONS(3107), 1, + ACTIONS(3174), 1, anon_sym_COLON, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42656] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1669), 1, - anon_sym_enum, - ACTIONS(3051), 1, - sym_identifier, - ACTIONS(3055), 1, - sym_primitive_type, - STATE(1176), 1, - sym__type_specifier, - STATE(1223), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1278), 1, - sym__type_definition_type, - STATE(1105), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3053), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [42712] = 20, + [44761] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2082), 1, + anon_sym_RBRACK, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(3098), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3100), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(3102), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(3104), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(3106), 1, anon_sym_AMP, - ACTIONS(2937), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(3116), 1, anon_sym_QMARK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3109), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [42782] = 21, + [44830] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2070), 1, + anon_sym_RBRACK, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(3098), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3100), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(3102), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(3104), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(3106), 1, anon_sym_AMP, - ACTIONS(2937), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(3116), 1, anon_sym_QMARK, - ACTIONS(2995), 1, - anon_sym_COMMA, - ACTIONS(3111), 1, - anon_sym_RPAREN, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42854] = 21, + [44899] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2066), 1, + anon_sym_RBRACK, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(3098), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3100), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(3102), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(3104), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(3106), 1, anon_sym_AMP, - ACTIONS(2937), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(3116), 1, anon_sym_QMARK, - ACTIONS(2995), 1, - anon_sym_COMMA, - ACTIONS(3113), 1, - anon_sym_SEMI, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42926] = 22, + [44968] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2064), 1, + anon_sym_RBRACK, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2273), 1, - anon_sym_DASH_GT, - ACTIONS(2750), 1, + ACTIONS(2822), 1, anon_sym_LPAREN2, - ACTIONS(2752), 1, - anon_sym_DOT, - ACTIONS(3029), 1, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(3031), 1, + ACTIONS(3098), 1, anon_sym_PIPE_PIPE, - ACTIONS(3033), 1, + ACTIONS(3100), 1, anon_sym_AMP_AMP, - ACTIONS(3035), 1, + ACTIONS(3102), 1, anon_sym_PIPE, - ACTIONS(3037), 1, + ACTIONS(3104), 1, anon_sym_CARET, - ACTIONS(3039), 1, + ACTIONS(3106), 1, anon_sym_AMP, - ACTIONS(3049), 1, + ACTIONS(3116), 1, anon_sym_QMARK, - ACTIONS(3115), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3117), 1, - anon_sym_RBRACK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3025), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3041), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3043), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3047), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43000] = 21, + [45037] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(3098), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3100), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(3102), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(3104), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(3106), 1, anon_sym_AMP, - ACTIONS(2937), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(3116), 1, anon_sym_QMARK, - ACTIONS(2995), 1, - anon_sym_COMMA, - ACTIONS(3119), 1, - anon_sym_SEMI, - STATE(707), 1, + ACTIONS(3176), 1, + anon_sym_RBRACK, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43072] = 21, + [45106] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(2995), 1, - anon_sym_COMMA, - ACTIONS(3121), 1, - anon_sym_SEMI, - STATE(707), 1, + ACTIONS(3178), 1, + anon_sym_RPAREN, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43144] = 20, + [45175] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 1, - anon_sym_RBRACK, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2750), 1, + ACTIONS(2822), 1, anon_sym_LPAREN2, - ACTIONS(3029), 1, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(3031), 1, + ACTIONS(3098), 1, anon_sym_PIPE_PIPE, - ACTIONS(3033), 1, + ACTIONS(3100), 1, anon_sym_AMP_AMP, - ACTIONS(3035), 1, + ACTIONS(3102), 1, anon_sym_PIPE, - ACTIONS(3037), 1, + ACTIONS(3104), 1, anon_sym_CARET, - ACTIONS(3039), 1, + ACTIONS(3106), 1, anon_sym_AMP, - ACTIONS(3049), 1, + ACTIONS(3116), 1, anon_sym_QMARK, - STATE(707), 1, + ACTIONS(3180), 1, + anon_sym_RBRACK, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3025), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3041), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3043), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3047), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43213] = 20, + [45244] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(3123), 1, - anon_sym_RPAREN, - STATE(707), 1, + ACTIONS(3182), 1, + anon_sym_COLON, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43282] = 20, + [45313] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2036), 1, - anon_sym_RBRACK, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2750), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(3029), 1, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(3031), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3033), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(3035), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(3037), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(3039), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(3049), 1, + ACTIONS(2996), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2998), 1, anon_sym_QMARK, - STATE(707), 1, + ACTIONS(3184), 1, + anon_sym_COLON, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3025), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3041), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3043), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3047), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43351] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2850), 1, - sym_identifier, - ACTIONS(2852), 1, - anon_sym_LPAREN2, - ACTIONS(2854), 1, - anon_sym_STAR, - ACTIONS(2858), 1, - sym_primitive_type, - STATE(1361), 1, - sym__type_declarator, - STATE(1913), 1, - sym_ms_based_modifier, - STATE(1114), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2856), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1423), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [43404] = 20, + [45382] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2038), 1, + ACTIONS(2068), 1, anon_sym_RBRACK, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2750), 1, + ACTIONS(2822), 1, anon_sym_LPAREN2, - ACTIONS(3029), 1, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(3031), 1, + ACTIONS(3098), 1, anon_sym_PIPE_PIPE, - ACTIONS(3033), 1, + ACTIONS(3100), 1, anon_sym_AMP_AMP, - ACTIONS(3035), 1, + ACTIONS(3102), 1, anon_sym_PIPE, - ACTIONS(3037), 1, + ACTIONS(3104), 1, anon_sym_CARET, - ACTIONS(3039), 1, + ACTIONS(3106), 1, anon_sym_AMP, - ACTIONS(3049), 1, + ACTIONS(3116), 1, anon_sym_QMARK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3025), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3041), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3043), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3047), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43473] = 20, + [45451] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2052), 1, + ACTIONS(2088), 1, anon_sym_RBRACK, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2750), 1, + ACTIONS(2822), 1, anon_sym_LPAREN2, - ACTIONS(3029), 1, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(3031), 1, + ACTIONS(3098), 1, anon_sym_PIPE_PIPE, - ACTIONS(3033), 1, + ACTIONS(3100), 1, anon_sym_AMP_AMP, - ACTIONS(3035), 1, + ACTIONS(3102), 1, anon_sym_PIPE, - ACTIONS(3037), 1, + ACTIONS(3104), 1, anon_sym_CARET, - ACTIONS(3039), 1, + ACTIONS(3106), 1, anon_sym_AMP, - ACTIONS(3049), 1, + ACTIONS(3116), 1, anon_sym_QMARK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3025), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3041), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3043), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3047), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43542] = 20, + [45520] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2066), 1, + ACTIONS(2090), 1, anon_sym_RBRACK, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2750), 1, + ACTIONS(2822), 1, anon_sym_LPAREN2, - ACTIONS(3029), 1, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(3031), 1, + ACTIONS(3098), 1, anon_sym_PIPE_PIPE, - ACTIONS(3033), 1, + ACTIONS(3100), 1, anon_sym_AMP_AMP, - ACTIONS(3035), 1, + ACTIONS(3102), 1, anon_sym_PIPE, - ACTIONS(3037), 1, + ACTIONS(3104), 1, anon_sym_CARET, - ACTIONS(3039), 1, + ACTIONS(3106), 1, anon_sym_AMP, - ACTIONS(3049), 1, + ACTIONS(3116), 1, anon_sym_QMARK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3025), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3041), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3043), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3047), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43611] = 20, + [45589] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(3125), 1, - anon_sym_COLON, - STATE(707), 1, + ACTIONS(3186), 1, + anon_sym_COMMA, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43680] = 20, + [45658] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2046), 1, + ACTIONS(2086), 1, anon_sym_RBRACK, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2750), 1, + ACTIONS(2822), 1, anon_sym_LPAREN2, - ACTIONS(3029), 1, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(3031), 1, + ACTIONS(3098), 1, anon_sym_PIPE_PIPE, - ACTIONS(3033), 1, + ACTIONS(3100), 1, anon_sym_AMP_AMP, - ACTIONS(3035), 1, + ACTIONS(3102), 1, anon_sym_PIPE, - ACTIONS(3037), 1, + ACTIONS(3104), 1, anon_sym_CARET, - ACTIONS(3039), 1, + ACTIONS(3106), 1, anon_sym_AMP, - ACTIONS(3049), 1, + ACTIONS(3116), 1, anon_sym_QMARK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3025), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3041), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3043), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3047), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43749] = 20, + [45727] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(3127), 1, + ACTIONS(3188), 1, anon_sym_COLON, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43818] = 20, + [45796] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2044), 1, - anon_sym_RBRACK, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2750), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(3029), 1, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(3031), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3033), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(3035), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(3037), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(3039), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(3049), 1, + ACTIONS(2996), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2998), 1, anon_sym_QMARK, - STATE(707), 1, + ACTIONS(3190), 1, + anon_sym_RPAREN, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3025), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3041), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3043), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3047), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43887] = 20, + [45865] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2072), 1, + anon_sym_RBRACK, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2750), 1, + ACTIONS(2822), 1, anon_sym_LPAREN2, - ACTIONS(3029), 1, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(3031), 1, + ACTIONS(3098), 1, anon_sym_PIPE_PIPE, - ACTIONS(3033), 1, + ACTIONS(3100), 1, anon_sym_AMP_AMP, - ACTIONS(3035), 1, + ACTIONS(3102), 1, anon_sym_PIPE, - ACTIONS(3037), 1, + ACTIONS(3104), 1, anon_sym_CARET, - ACTIONS(3039), 1, + ACTIONS(3106), 1, anon_sym_AMP, - ACTIONS(3049), 1, + ACTIONS(3116), 1, anon_sym_QMARK, - ACTIONS(3129), 1, - anon_sym_RBRACK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3025), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3041), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3043), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3047), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43956] = 20, + [45934] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(3131), 1, - anon_sym_COLON, - STATE(707), 1, + ACTIONS(3192), 1, + anon_sym_RPAREN, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44025] = 12, + [46003] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2850), 1, - sym_identifier, - ACTIONS(2852), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2854), 1, - anon_sym_STAR, - ACTIONS(2858), 1, - sym_primitive_type, - STATE(1363), 1, - sym__type_declarator, - STATE(1913), 1, - sym_ms_based_modifier, - STATE(1114), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2856), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1423), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [44078] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2048), 1, - anon_sym_RBRACK, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2750), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(3031), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3033), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(3035), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(3037), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(3039), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(3049), 1, + ACTIONS(2996), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2998), 1, anon_sym_QMARK, - STATE(707), 1, + ACTIONS(3194), 1, + anon_sym_COLON, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3025), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3041), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3043), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3047), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44147] = 20, + [46072] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2008), 1, + ACTIONS(2080), 1, anon_sym_RBRACK, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2750), 1, + ACTIONS(2822), 1, anon_sym_LPAREN2, - ACTIONS(3029), 1, + ACTIONS(3096), 1, anon_sym_SLASH, - ACTIONS(3031), 1, + ACTIONS(3098), 1, anon_sym_PIPE_PIPE, - ACTIONS(3033), 1, + ACTIONS(3100), 1, anon_sym_AMP_AMP, - ACTIONS(3035), 1, + ACTIONS(3102), 1, anon_sym_PIPE, - ACTIONS(3037), 1, + ACTIONS(3104), 1, anon_sym_CARET, - ACTIONS(3039), 1, + ACTIONS(3106), 1, anon_sym_AMP, - ACTIONS(3049), 1, + ACTIONS(3116), 1, anon_sym_QMARK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3025), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(3094), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3041), 2, + ACTIONS(3108), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3043), 2, + ACTIONS(3110), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3045), 2, + ACTIONS(3112), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3047), 2, + ACTIONS(3114), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44216] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1669), 1, - anon_sym_enum, - ACTIONS(1831), 1, - sym_identifier, - STATE(1122), 1, - sym__type_specifier, - STATE(1139), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1114), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1667), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [44269] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1831), 1, - sym_identifier, - ACTIONS(3021), 1, - anon_sym_enum, - STATE(1122), 1, - sym__type_specifier, - STATE(1139), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1114), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1667), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [44322] = 20, + [46141] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - ACTIONS(3133), 1, - anon_sym_COLON, - STATE(707), 1, + ACTIONS(3196), 1, + anon_sym_RPAREN, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44391] = 12, + [46210] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1669), 1, - anon_sym_enum, - ACTIONS(3051), 1, - sym_identifier, - ACTIONS(3055), 1, - sym_primitive_type, - STATE(1198), 1, - sym__type_specifier, - STATE(1223), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1114), 2, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1888), 1, + anon_sym_LPAREN2, + ACTIONS(1890), 1, + anon_sym_STAR, + ACTIONS(2776), 1, + anon_sym_LBRACK, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1465), 1, + sym__abstract_declarator, + STATE(1494), 1, + sym_parameter_list, + ACTIONS(2916), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1039), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3053), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(825), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(3198), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1495), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2910), 8, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -100025,73 +102720,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44444] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2911), 1, - anon_sym_SLASH, - ACTIONS(2913), 1, - anon_sym_AMP_AMP, - ACTIONS(2915), 1, - anon_sym_PIPE, - ACTIONS(2917), 1, - anon_sym_CARET, - ACTIONS(2919), 1, - anon_sym_AMP, - ACTIONS(2937), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, - anon_sym_QMARK, - ACTIONS(3135), 1, - anon_sym_RPAREN, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2909), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2921), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2923), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2925), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2927), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44513] = 3, + [46264] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3139), 6, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(790), 1, + sym_attribute_specifier, + ACTIONS(2855), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3137), 21, + ACTIONS(2853), 18, anon_sym___extension__, anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -100104,26 +102749,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [44548] = 3, + [46302] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 6, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(803), 1, + sym_attribute_specifier, + ACTIONS(2868), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3141), 21, + ACTIONS(2866), 18, anon_sym___extension__, anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -100136,42 +102782,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [44583] = 12, + [46340] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2850), 1, - sym_identifier, - ACTIONS(2852), 1, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1888), 1, anon_sym_LPAREN2, - ACTIONS(2854), 1, + ACTIONS(1890), 1, anon_sym_STAR, - ACTIONS(2858), 1, - sym_primitive_type, - STATE(1368), 1, - sym__type_declarator, - STATE(1913), 1, - sym_ms_based_modifier, - STATE(1114), 2, + ACTIONS(2776), 1, + anon_sym_LBRACK, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1480), 1, + sym__abstract_declarator, + STATE(1494), 1, + sym_parameter_list, + ACTIONS(2916), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1039), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2856), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1423), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, + ACTIONS(3200), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1495), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2910), 8, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -100179,218 +102827,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44636] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2911), 1, - anon_sym_SLASH, - ACTIONS(2913), 1, - anon_sym_AMP_AMP, - ACTIONS(2915), 1, - anon_sym_PIPE, - ACTIONS(2917), 1, - anon_sym_CARET, - ACTIONS(2919), 1, - anon_sym_AMP, - ACTIONS(2937), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, - anon_sym_QMARK, - ACTIONS(3145), 1, - anon_sym_COLON, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2909), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2921), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2923), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2925), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2927), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44705] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2911), 1, - anon_sym_SLASH, - ACTIONS(2913), 1, - anon_sym_AMP_AMP, - ACTIONS(2915), 1, - anon_sym_PIPE, - ACTIONS(2917), 1, - anon_sym_CARET, - ACTIONS(2919), 1, - anon_sym_AMP, - ACTIONS(2937), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, - anon_sym_QMARK, - ACTIONS(3147), 1, - anon_sym_COMMA, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2909), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2921), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2923), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2925), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2927), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44774] = 20, + [46394] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, - anon_sym_LBRACK, - ACTIONS(2750), 1, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1888), 1, anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_SLASH, - ACTIONS(3031), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3033), 1, - anon_sym_AMP_AMP, - ACTIONS(3035), 1, - anon_sym_PIPE, - ACTIONS(3037), 1, - anon_sym_CARET, - ACTIONS(3039), 1, - anon_sym_AMP, - ACTIONS(3049), 1, - anon_sym_QMARK, - ACTIONS(3149), 1, - anon_sym_RBRACK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3025), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3027), 2, + ACTIONS(1890), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3041), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3043), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3045), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3047), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44843] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2020), 1, - anon_sym_RBRACK, - ACTIONS(2271), 1, + ACTIONS(2776), 1, anon_sym_LBRACK, - ACTIONS(2750), 1, - anon_sym_LPAREN2, - ACTIONS(3029), 1, - anon_sym_SLASH, - ACTIONS(3031), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3033), 1, - anon_sym_AMP_AMP, - ACTIONS(3035), 1, - anon_sym_PIPE, - ACTIONS(3037), 1, - anon_sym_CARET, - ACTIONS(3039), 1, - anon_sym_AMP, - ACTIONS(3049), 1, - anon_sym_QMARK, - STATE(707), 1, - sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3025), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3027), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3041), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3043), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3045), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3047), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44912] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1114), 2, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1449), 1, + sym__abstract_declarator, + STATE(1494), 1, + sym_parameter_list, + ACTIONS(2916), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1126), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3153), 6, + ACTIONS(3202), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3155), 9, + STATE(1495), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2910), 8, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -100398,23 +102868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(3151), 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, - [44951] = 4, + [46448] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3158), 1, + ACTIONS(3204), 1, anon_sym_SEMI, - ACTIONS(2233), 7, + ACTIONS(2317), 7, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -100422,87 +102881,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2235), 18, + ACTIONS(2319), 18, anon_sym_LPAREN2, 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, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [44987] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2744), 1, - anon_sym_LBRACE, - ACTIONS(3160), 1, - anon_sym_COLON, - STATE(827), 1, - sym_attribute_specifier, - STATE(1119), 1, - sym_enumerator_list, - ACTIONS(2739), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(2737), 16, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [45031] = 7, + 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_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [46484] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2744), 1, - anon_sym_LBRACE, - STATE(838), 1, - sym_attribute_specifier, - STATE(1121), 1, - sym_enumerator_list, - ACTIONS(2792), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1888), 1, anon_sym_LPAREN2, + ACTIONS(1890), 1, anon_sym_STAR, + ACTIONS(2776), 1, anon_sym_LBRACK, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1469), 1, + sym__abstract_declarator, + STATE(1494), 1, + sym_parameter_list, + ACTIONS(2916), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1039), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2770), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(2790), 16, + STATE(1495), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2910), 8, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -100510,70 +102941,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [45073] = 19, + [46538] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2911), 1, + ACTIONS(2978), 1, anon_sym_SLASH, - ACTIONS(2913), 1, + ACTIONS(2980), 1, anon_sym_AMP_AMP, - ACTIONS(2915), 1, + ACTIONS(2982), 1, anon_sym_PIPE, - ACTIONS(2917), 1, + ACTIONS(2984), 1, anon_sym_CARET, - ACTIONS(2919), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(2937), 1, + ACTIONS(2996), 1, anon_sym_PIPE_PIPE, - ACTIONS(2939), 1, + ACTIONS(2998), 1, anon_sym_QMARK, - STATE(707), 1, + STATE(728), 1, sym_argument_list, - ACTIONS(2273), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2279), 2, + ACTIONS(2341), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2907), 2, + ACTIONS(2343), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2974), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2909), 2, + ACTIONS(2976), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2921), 2, + ACTIONS(2988), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2923), 2, + ACTIONS(2990), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2925), 2, + ACTIONS(2992), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2927), 2, + ACTIONS(2994), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45139] = 5, + [46604] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(840), 1, + STATE(827), 1, sym_attribute_specifier, - ACTIONS(2823), 6, + ACTIONS(2848), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2821), 16, + ACTIONS(2846), 18, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -100588,61 +103017,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, sym_identifier, - [45175] = 5, + [46642] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(808), 1, - sym_attribute_specifier, - ACTIONS(2832), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1888), 1, anon_sym_LPAREN2, + ACTIONS(1890), 1, anon_sym_STAR, + ACTIONS(2776), 1, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2830), 16, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [45211] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(824), 1, - sym_attribute_specifier, - ACTIONS(2839), 6, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1475), 1, + sym__abstract_declarator, + STATE(1494), 1, + sym_parameter_list, + ACTIONS(2916), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1123), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3206), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2837), 16, + STATE(1495), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2910), 8, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -100650,36 +103062,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [45247] = 11, + [46696] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(1879), 1, + ACTIONS(1888), 1, anon_sym_LPAREN2, - ACTIONS(1881), 1, + ACTIONS(1890), 1, anon_sym_STAR, - ACTIONS(2764), 1, + ACTIONS(2776), 1, anon_sym_LBRACK, - STATE(1469), 1, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1473), 1, sym__abstract_declarator, - STATE(1488), 1, + STATE(1494), 1, sym_parameter_list, - STATE(1126), 2, + ACTIONS(2916), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1039), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3162), 3, + ACTIONS(2906), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1487), 4, + STATE(1495), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2953), 8, + ACTIONS(2910), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -100688,35 +103103,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45294] = 11, + [46750] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_STAR, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1339), 1, + sym__field_declarator, + STATE(1993), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1039), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, - ACTIONS(1879), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [46801] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2768), 1, + sym_identifier, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(1881), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(2764), 1, - anon_sym_LBRACK, - STATE(1446), 1, - sym__abstract_declarator, - STATE(1488), 1, - sym_parameter_list, - STATE(1127), 2, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1310), 1, + sym__declarator, + STATE(1943), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1039), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3164), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1487), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2953), 8, + STATE(1371), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -100724,35 +103181,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45341] = 11, + [46852] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2768), 1, + sym_identifier, + ACTIONS(2970), 1, + anon_sym_LPAREN2, + ACTIONS(2972), 1, + anon_sym_STAR, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1311), 1, + sym__declarator, + STATE(1943), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1039), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1371), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, - ACTIONS(1879), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [46903] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2768), 1, + sym_identifier, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(1881), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(2764), 1, - anon_sym_LBRACK, - STATE(1459), 1, - sym__abstract_declarator, - STATE(1488), 1, - sym_parameter_list, - STATE(1114), 2, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1319), 1, + sym__declarator, + STATE(1943), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1039), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2951), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1487), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2953), 8, + STATE(1371), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -100760,35 +103259,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45388] = 11, + [46954] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_STAR, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1355), 1, + sym__field_declarator, + STATE(1993), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1039), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, - ACTIONS(1879), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [47005] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(1881), 1, + ACTIONS(2938), 1, anon_sym_STAR, - ACTIONS(2764), 1, - anon_sym_LBRACK, - STATE(1475), 1, - sym__abstract_declarator, - STATE(1488), 1, - sym_parameter_list, - STATE(1114), 2, + STATE(754), 1, + sym_alignas_qualifier, + STATE(1353), 1, + sym__field_declarator, + STATE(1993), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1039), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2758), 3, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [47056] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2463), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(2467), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2677), 6, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_COLON, - STATE(1487), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2953), 8, + ACTIONS(2674), 11, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -100796,35 +103367,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45435] = 11, + anon_sym_alignas, + anon_sym__Alignas, + [47094] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(1879), 1, + ACTIONS(2497), 1, + sym_primitive_type, + ACTIONS(3208), 1, + sym_identifier, + STATE(1140), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3210), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2491), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1881), 1, anon_sym_STAR, - ACTIONS(2764), 1, anon_sym_LBRACK, - STATE(1473), 1, - sym__abstract_declarator, - STATE(1488), 1, - sym_parameter_list, - STATE(1114), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3166), 3, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_COLON, - STATE(1487), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2953), 8, + ACTIONS(2493), 11, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -100832,35 +103400,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45482] = 11, + anon_sym_alignas, + anon_sym__Alignas, + [47134] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + STATE(754), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3214), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1143), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3212), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, - ACTIONS(1879), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [47173] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(754), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3218), 2, anon_sym_LPAREN2, - ACTIONS(1881), 1, anon_sym_STAR, - ACTIONS(2764), 1, - anon_sym_LBRACK, - STATE(1448), 1, - sym__abstract_declarator, - STATE(1488), 1, - sym_parameter_list, - STATE(1114), 2, + STATE(1039), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3168), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1487), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2953), 8, + ACTIONS(3216), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(47), 9, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -100868,31 +103466,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45529] = 12, + [47212] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2850), 1, + ACTIONS(2873), 1, sym_identifier, - ACTIONS(2852), 1, + ACTIONS(2875), 1, anon_sym_LPAREN2, - ACTIONS(2854), 1, + ACTIONS(2877), 1, anon_sym_STAR, - ACTIONS(2858), 1, + ACTIONS(2881), 1, sym_primitive_type, - STATE(1288), 1, + STATE(1294), 1, sym_ms_call_modifier, - STATE(1437), 1, + STATE(1438), 1, sym__type_declarator, - STATE(1913), 1, + STATE(1909), 1, sym_ms_based_modifier, - ACTIONS(2856), 4, + ACTIONS(2879), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1444), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -100905,34 +103503,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [45578] = 15, + [47261] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + STATE(754), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3222), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1146), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3220), 7, anon_sym___based, - ACTIONS(2975), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [47300] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(754), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3226), 2, anon_sym_LPAREN2, - ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3170), 1, + STATE(1039), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3224), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [47339] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2970), 1, + anon_sym_LPAREN2, + ACTIONS(2972), 1, + anon_sym_STAR, + ACTIONS(3228), 1, sym_identifier, STATE(694), 1, sym__old_style_function_declarator, - STATE(1309), 1, + STATE(1318), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1362), 1, + STATE(1376), 1, sym__declarator, - STATE(1470), 1, + STATE(1485), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1626), 1, + STATE(1596), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -100944,102 +103606,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [45632] = 10, + [47393] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3232), 1, + anon_sym_LPAREN2, + STATE(1041), 1, + sym_preproc_argument_list, + ACTIONS(3234), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3230), 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, + [47427] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2969), 1, - sym_identifier, - ACTIONS(2971), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2973), 1, + ACTIONS(2972), 1, anon_sym_STAR, - STATE(1336), 1, - sym__field_declarator, - STATE(1929), 1, + ACTIONS(3228), 1, + sym_identifier, + STATE(688), 1, + sym__old_style_function_declarator, + STATE(1315), 1, + sym_ms_call_modifier, + STATE(1371), 1, + sym_function_declarator, + STATE(1374), 1, + sym__declarator, + STATE(1458), 1, + sym__declaration_declarator, + STATE(1524), 1, + sym__function_declaration_declarator, + STATE(1678), 1, + sym_init_declarator, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1114), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1398), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [45676] = 10, + STATE(1388), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [47481] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2969), 1, - sym_identifier, - ACTIONS(2971), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2973), 1, + ACTIONS(2972), 1, anon_sym_STAR, - STATE(1329), 1, - sym__field_declarator, - STATE(1929), 1, + ACTIONS(3228), 1, + sym_identifier, + STATE(700), 1, + sym__old_style_function_declarator, + STATE(1308), 1, + sym_ms_call_modifier, + STATE(1371), 1, + sym_function_declarator, + STATE(1373), 1, + sym__declarator, + STATE(1474), 1, + sym__declaration_declarator, + STATE(1524), 1, + sym__function_declaration_declarator, + STATE(1634), 1, + sym_init_declarator, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1114), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1398), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [45720] = 15, + STATE(1388), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [47535] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, - STATE(703), 1, + STATE(687), 1, sym__old_style_function_declarator, - STATE(1311), 1, + STATE(1314), 1, sym_ms_call_modifier, - STATE(1354), 1, - sym_function_declarator, - STATE(1358), 1, + STATE(1368), 1, sym__declarator, - STATE(1468), 1, + STATE(1371), 1, + sym_function_declarator, + STATE(1476), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1631), 1, + STATE(1639), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101051,28 +103752,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [45774] = 6, + [47589] = 10, ACTIONS(3), 1, sym_comment, - STATE(781), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2454), 2, - sym_primitive_type, + ACTIONS(3236), 1, sym_identifier, - ACTIONS(2458), 4, + ACTIONS(3238), 1, + anon_sym_RPAREN, + ACTIONS(3240), 1, + anon_sym_LPAREN2, + ACTIONS(3242), 1, + anon_sym_defined, + ACTIONS(3248), 1, + sym_number_literal, + ACTIONS(3244), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3246), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3250), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1176), 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, + [47632] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1161), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2666), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3252), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2642), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2664), 14, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [47665] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1157), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2640), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2639), 9, + ACTIONS(3255), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2638), 14, anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101081,34 +103837,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45810] = 15, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [47698] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, - STATE(688), 1, - sym__old_style_function_declarator, - STATE(1319), 1, + STATE(1315), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1359), 1, + STATE(1395), 1, sym__declarator, - STATE(1450), 1, + STATE(1458), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1607), 1, + STATE(1678), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101120,34 +103878,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [45864] = 15, + [47749] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, - STATE(720), 1, - sym__old_style_function_declarator, - STATE(1315), 1, + STATE(1322), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1370), 1, + STATE(1427), 1, sym__declarator, - STATE(1463), 1, + STATE(1481), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1622), 1, + STATE(1668), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101159,66 +103915,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [45918] = 10, + [47800] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2756), 1, - sym_identifier, - ACTIONS(2975), 1, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2554), 2, anon_sym_LPAREN2, - ACTIONS(2977), 1, anon_sym_STAR, - STATE(1312), 1, - sym__declarator, - STATE(1803), 1, - sym_ms_based_modifier, - STATE(1114), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, + ACTIONS(3258), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2552), 14, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [45962] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2756), 1, - sym_identifier, - ACTIONS(2975), 1, - anon_sym_LPAREN2, - ACTIONS(2977), 1, - anon_sym_STAR, - STATE(1307), 1, - sym__declarator, - STATE(1803), 1, - sym_ms_based_modifier, - STATE(1114), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101227,63 +103939,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46006] = 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [47833] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2969), 1, - sym_identifier, - ACTIONS(2971), 1, - anon_sym_LPAREN2, - ACTIONS(2973), 1, + ACTIONS(3261), 1, + anon_sym_COMMA, + ACTIONS(3263), 1, + anon_sym_RPAREN, + ACTIONS(3269), 1, + anon_sym_SLASH, + ACTIONS(3271), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3273), 1, + anon_sym_AMP_AMP, + ACTIONS(3275), 1, + anon_sym_PIPE, + ACTIONS(3277), 1, + anon_sym_CARET, + ACTIONS(3279), 1, + anon_sym_AMP, + STATE(1600), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3265), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3267), 2, anon_sym_STAR, - STATE(1350), 1, - sym__field_declarator, - STATE(1929), 1, - sym_ms_based_modifier, - STATE(1114), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1398), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [46050] = 7, + anon_sym_PERCENT, + ACTIONS(3281), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3283), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3285), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3287), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47888] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2681), 1, - sym_primitive_type, - ACTIONS(3172), 1, - sym_identifier, - STATE(1133), 1, + STATE(776), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3174), 4, + ACTIONS(2558), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3289), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2675), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2677), 9, + ACTIONS(2556), 14, anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101292,61 +104006,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46088] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3178), 1, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [47921] = 5, + ACTIONS(3230), 1, + anon_sym_LF, + ACTIONS(3292), 1, anon_sym_LPAREN2, - STATE(1010), 1, + ACTIONS(3294), 1, + sym_comment, + STATE(1258), 1, sym_preproc_argument_list, - ACTIONS(3180), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3176), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3234), 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, - [46122] = 10, + [47954] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2756), 1, - sym_identifier, - ACTIONS(2975), 1, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2562), 2, anon_sym_LPAREN2, - ACTIONS(2977), 1, anon_sym_STAR, - STATE(1321), 1, - sym__declarator, - STATE(1803), 1, - sym_ms_based_modifier, - STATE(1114), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, + ACTIONS(3296), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2560), 14, anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101355,69 +104062,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46166] = 14, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [47987] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2975), 1, - anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(1713), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(2549), 1, + anon_sym_LPAREN2, + STATE(1179), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3299), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1700), 14, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - STATE(1305), 1, - sym_ms_call_modifier, - STATE(1354), 1, - sym_function_declarator, - STATE(1439), 1, - sym__declarator, - STATE(1480), 1, - sym__declaration_declarator, - STATE(1501), 1, - sym__function_declaration_declarator, - STATE(1596), 1, - sym_init_declarator, - STATE(1803), 1, - sym_ms_based_modifier, - STATE(1391), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [46217] = 14, + [48022] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, - STATE(1311), 1, + STATE(1327), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1379), 1, + STATE(1427), 1, sym__declarator, - STATE(1468), 1, + STATE(1474), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1631), 1, + STATE(1634), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101429,32 +104132,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46268] = 14, + [48073] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, - STATE(1308), 1, + STATE(1309), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1439), 1, + STATE(1427), 1, sym__declarator, - STATE(1450), 1, + STATE(1476), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1607), 1, + STATE(1639), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101466,32 +104169,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46319] = 14, + [48124] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3236), 1, + sym_identifier, + ACTIONS(3240), 1, + anon_sym_LPAREN2, + ACTIONS(3242), 1, + anon_sym_defined, + ACTIONS(3302), 1, + anon_sym_RPAREN, + ACTIONS(3304), 1, + sym_number_literal, + ACTIONS(3244), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3246), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3250), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1170), 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, + [48167] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, - STATE(1313), 1, + STATE(1328), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1439), 1, + STATE(1427), 1, sym__declarator, - STATE(1470), 1, + STATE(1479), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1626), 1, + STATE(1650), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101503,65 +104239,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46370] = 10, + [48218] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 1, - sym_identifier, - ACTIONS(3184), 1, - anon_sym_RPAREN, - ACTIONS(3186), 1, + STATE(1159), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2622), 2, anon_sym_LPAREN2, - ACTIONS(3188), 1, - anon_sym_defined, - ACTIONS(3194), 1, - sym_number_literal, - ACTIONS(3190), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3192), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3196), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1148), 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, - [46413] = 14, + anon_sym_STAR, + ACTIONS(3306), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2620), 14, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [48251] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, STATE(1320), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1439), 1, + STATE(1427), 1, sym__declarator, - STATE(1444), 1, + STATE(1458), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1594), 1, + STATE(1678), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101573,71 +104304,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46464] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3198), 1, - anon_sym_COMMA, - ACTIONS(3200), 1, - anon_sym_RPAREN, - ACTIONS(3206), 1, - anon_sym_SLASH, - ACTIONS(3208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3210), 1, - anon_sym_AMP_AMP, - ACTIONS(3212), 1, - anon_sym_PIPE, - ACTIONS(3214), 1, - anon_sym_CARET, - ACTIONS(3216), 1, - anon_sym_AMP, - STATE(1684), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3202), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3204), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3218), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3220), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3222), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3224), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46519] = 14, + [48302] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, - STATE(1306), 1, + STATE(1308), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1439), 1, + STATE(1383), 1, sym__declarator, - STATE(1491), 1, + STATE(1474), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1712), 1, + STATE(1634), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101649,99 +104341,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46570] = 16, + [48353] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3198), 1, + ACTIONS(3261), 1, anon_sym_COMMA, - ACTIONS(3206), 1, + ACTIONS(3269), 1, anon_sym_SLASH, - ACTIONS(3208), 1, + ACTIONS(3271), 1, anon_sym_PIPE_PIPE, - ACTIONS(3210), 1, + ACTIONS(3273), 1, anon_sym_AMP_AMP, - ACTIONS(3212), 1, + ACTIONS(3275), 1, anon_sym_PIPE, - ACTIONS(3214), 1, + ACTIONS(3277), 1, anon_sym_CARET, - ACTIONS(3216), 1, + ACTIONS(3279), 1, anon_sym_AMP, - ACTIONS(3226), 1, + ACTIONS(3309), 1, anon_sym_RPAREN, - STATE(1673), 1, + STATE(1628), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3202), 2, + ACTIONS(3265), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3204), 2, + ACTIONS(3267), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3218), 2, + ACTIONS(3281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3220), 2, + ACTIONS(3283), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3222), 2, + ACTIONS(3285), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3224), 2, + ACTIONS(3287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46625] = 5, - ACTIONS(3176), 1, - anon_sym_LF, - ACTIONS(3228), 1, - anon_sym_LPAREN2, - ACTIONS(3230), 1, + [48408] = 7, + ACTIONS(3), 1, sym_comment, - STATE(1251), 1, - sym_preproc_argument_list, - ACTIONS(3180), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3311), 1, + sym_identifier, + ACTIONS(3317), 1, + sym_primitive_type, + STATE(1174), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2491), 2, + anon_sym_LPAREN2, 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, - [46658] = 10, + ACTIONS(3314), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2493), 12, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + [48445] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 1, + ACTIONS(3236), 1, sym_identifier, - ACTIONS(3186), 1, + ACTIONS(3240), 1, anon_sym_LPAREN2, - ACTIONS(3188), 1, + ACTIONS(3242), 1, anon_sym_defined, - ACTIONS(3232), 1, + ACTIONS(3320), 1, anon_sym_RPAREN, - ACTIONS(3234), 1, + ACTIONS(3322), 1, sym_number_literal, - ACTIONS(3190), 2, + ACTIONS(3244), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3192), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 5, + ACTIONS(3250), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1150), 7, + STATE(1158), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -101749,69 +104443,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [46701] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2975), 1, - anon_sym_LPAREN2, - ACTIONS(2977), 1, - anon_sym_STAR, - ACTIONS(3170), 1, - sym_identifier, - STATE(1314), 1, - sym_ms_call_modifier, - STATE(1354), 1, - sym_function_declarator, - STATE(1439), 1, - sym__declarator, - STATE(1468), 1, - sym__declaration_declarator, - STATE(1501), 1, - sym__function_declaration_declarator, - STATE(1631), 1, - sym_init_declarator, - STATE(1803), 1, - sym_ms_based_modifier, - STATE(1391), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [46752] = 14, + [48488] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, - STATE(1315), 1, + STATE(1321), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1381), 1, + STATE(1427), 1, sym__declarator, - STATE(1463), 1, + STATE(1485), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1622), 1, + STATE(1596), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101823,69 +104480,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46803] = 14, + [48539] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2975), 1, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2677), 2, anon_sym_LPAREN2, - ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3324), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2674), 14, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - STATE(1319), 1, - sym_ms_call_modifier, - STATE(1354), 1, - sym_function_declarator, - STATE(1377), 1, - sym__declarator, - STATE(1450), 1, - sym__declaration_declarator, - STATE(1501), 1, - sym__function_declaration_declarator, - STATE(1607), 1, - sym_init_declarator, - STATE(1803), 1, - sym_ms_based_modifier, - STATE(1391), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [46854] = 14, + [48572] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, - STATE(1309), 1, + STATE(1314), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1373), 1, + STATE(1382), 1, sym__declarator, - STATE(1470), 1, + STATE(1476), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1626), 1, + STATE(1639), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101897,71 +104545,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46905] = 16, + [48623] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3198), 1, + ACTIONS(3261), 1, anon_sym_COMMA, - ACTIONS(3206), 1, + ACTIONS(3269), 1, anon_sym_SLASH, - ACTIONS(3208), 1, + ACTIONS(3271), 1, anon_sym_PIPE_PIPE, - ACTIONS(3210), 1, + ACTIONS(3273), 1, anon_sym_AMP_AMP, - ACTIONS(3212), 1, + ACTIONS(3275), 1, anon_sym_PIPE, - ACTIONS(3214), 1, + ACTIONS(3277), 1, anon_sym_CARET, - ACTIONS(3216), 1, + ACTIONS(3279), 1, anon_sym_AMP, - ACTIONS(3236), 1, + ACTIONS(3328), 1, anon_sym_RPAREN, - STATE(1595), 1, + STATE(1692), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3202), 2, + ACTIONS(3265), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3204), 2, + ACTIONS(3267), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3218), 2, + ACTIONS(3281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3220), 2, + ACTIONS(3283), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3222), 2, + ACTIONS(3285), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3224), 2, + ACTIONS(3287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46960] = 14, + [48678] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, - STATE(1304), 1, + STATE(1313), 1, sym_ms_call_modifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1439), 1, + STATE(1427), 1, sym__declarator, - STATE(1463), 1, + STATE(1488), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1622), 1, + STATE(1774), 1, sym_init_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101973,32 +104621,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [47011] = 10, + [48729] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 1, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2970), 1, + anon_sym_LPAREN2, + ACTIONS(2972), 1, + anon_sym_STAR, + ACTIONS(3228), 1, sym_identifier, - ACTIONS(3186), 1, + STATE(1318), 1, + sym_ms_call_modifier, + STATE(1371), 1, + sym_function_declarator, + STATE(1390), 1, + sym__declarator, + STATE(1485), 1, + sym__declaration_declarator, + STATE(1524), 1, + sym__function_declaration_declarator, + STATE(1596), 1, + sym_init_declarator, + STATE(1943), 1, + sym_ms_based_modifier, + STATE(1388), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [48780] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(776), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2529), 2, anon_sym_LPAREN2, - ACTIONS(3188), 1, + anon_sym_STAR, + ACTIONS(3330), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2527), 14, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [48813] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3333), 1, + sym_identifier, + ACTIONS(3335), 1, + anon_sym_LPAREN2, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3238), 1, - anon_sym_RPAREN, - ACTIONS(3240), 1, + ACTIONS(3343), 1, sym_number_literal, - ACTIONS(3190), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3192), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1157), 7, + STATE(1259), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -102006,60 +104717,90 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47054] = 14, + [48853] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3206), 1, - anon_sym_SLASH, - ACTIONS(3208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3210), 1, - anon_sym_AMP_AMP, - ACTIONS(3212), 1, - anon_sym_PIPE, - ACTIONS(3214), 1, - anon_sym_CARET, - ACTIONS(3216), 1, - anon_sym_AMP, - ACTIONS(3202), 2, + ACTIONS(3236), 1, + sym_identifier, + ACTIONS(3240), 1, + anon_sym_LPAREN2, + ACTIONS(3242), 1, + anon_sym_defined, + ACTIONS(3347), 1, + sym_number_literal, + ACTIONS(3244), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3204), 2, + ACTIONS(3250), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1197), 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, + [48893] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1760), 1, + anon_sym_LPAREN2, + ACTIONS(1762), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3218), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3220), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3222), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3224), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3242), 2, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2768), 1, + sym_identifier, + ACTIONS(2776), 1, + anon_sym_LBRACK, + STATE(1405), 1, + sym__declarator, + STATE(1494), 1, + sym_parameter_list, + STATE(1502), 1, + sym__abstract_declarator, + STATE(1943), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, anon_sym_COMMA, anon_sym_RPAREN, - [47104] = 9, + STATE(1495), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1371), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [48941] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3254), 1, + ACTIONS(3351), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -102073,183 +104814,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47144] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3206), 1, - anon_sym_SLASH, - ACTIONS(3202), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3204), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3260), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3258), 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47178] = 7, + [48981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(3355), 5, anon_sym_SLASH, - ACTIONS(3202), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3204), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3224), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3260), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3258), 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, - [47214] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3206), 1, - anon_sym_SLASH, - ACTIONS(3202), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3204), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3220), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3222), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3224), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3260), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3258), 7, + ACTIONS(3353), 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, - [47254] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3206), 1, - anon_sym_SLASH, - ACTIONS(3202), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3218), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3220), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3222), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3224), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3260), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3258), 5, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [47296] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3206), 1, - anon_sym_SLASH, - ACTIONS(3216), 1, - anon_sym_AMP, - ACTIONS(3260), 1, - anon_sym_PIPE, - ACTIONS(3202), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3204), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3220), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3222), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3258), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [47340] = 9, + [49009] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3262), 1, + ACTIONS(3357), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1242), 7, + STATE(1248), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -102257,133 +104870,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47380] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3206), 1, - anon_sym_SLASH, - ACTIONS(3214), 1, - anon_sym_CARET, - ACTIONS(3216), 1, - anon_sym_AMP, - ACTIONS(3260), 1, - anon_sym_PIPE, - ACTIONS(3202), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3204), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3218), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3220), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3222), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3224), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3258), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [47426] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3206), 1, - anon_sym_SLASH, - ACTIONS(3212), 1, - anon_sym_PIPE, - ACTIONS(3214), 1, - anon_sym_CARET, - ACTIONS(3216), 1, - anon_sym_AMP, - ACTIONS(3202), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3204), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3218), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3220), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3222), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3224), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3258), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [47472] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3206), 1, - anon_sym_SLASH, - ACTIONS(3210), 1, - anon_sym_AMP_AMP, - ACTIONS(3212), 1, - anon_sym_PIPE, - ACTIONS(3214), 1, - anon_sym_CARET, - ACTIONS(3216), 1, - anon_sym_AMP, - ACTIONS(3202), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3204), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3218), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3220), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3222), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3224), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3258), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [47520] = 9, + [49049] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3264), 1, + ACTIONS(3359), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1227), 7, + STATE(1240), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -102391,30 +104901,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47560] = 9, + [49089] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3266), 1, + ACTIONS(3361), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1266), 7, + STATE(1254), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -102422,30 +104932,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47600] = 9, + [49129] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3268), 1, + ACTIONS(3363), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1248), 7, + STATE(1245), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -102453,109 +104963,66 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47640] = 3, + [49169] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 5, + ACTIONS(3269), 1, anon_sym_SLASH, + ACTIONS(3271), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3273), 1, + anon_sym_AMP_AMP, + ACTIONS(3275), 1, anon_sym_PIPE, + ACTIONS(3277), 1, + anon_sym_CARET, + ACTIONS(3279), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3258), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3265), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3267), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47668] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3206), 1, - anon_sym_SLASH, - ACTIONS(3204), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3260), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3283), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3258), 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, + ACTIONS(3285), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47700] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3272), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1196), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3270), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [47732] = 9, + ACTIONS(3365), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [49219] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3236), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3240), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3242), 1, anon_sym_defined, - ACTIONS(3274), 1, + ACTIONS(3367), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3244), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3250), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1252), 7, + STATE(1216), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -102563,30 +105030,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47772] = 9, + [49259] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3236), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3240), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3242), 1, anon_sym_defined, - ACTIONS(3276), 1, + ACTIONS(3369), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3244), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3250), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1221), 7, + STATE(1239), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -102594,30 +105061,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47812] = 9, + [49299] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3186), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3188), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3278), 1, + ACTIONS(3371), 1, sym_number_literal, - ACTIONS(3190), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3192), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1254), 7, + STATE(1251), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -102625,16 +105092,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47852] = 3, + [49339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3282), 5, + ACTIONS(3375), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3280), 15, + ACTIONS(3373), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -102650,158 +105117,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [47880] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3244), 1, - sym_identifier, - ACTIONS(3246), 1, - anon_sym_LPAREN2, - ACTIONS(3248), 1, - anon_sym_defined, - ACTIONS(3284), 1, - sym_number_literal, - ACTIONS(3250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1257), 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, - [47920] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3244), 1, - sym_identifier, - ACTIONS(3246), 1, - anon_sym_LPAREN2, - ACTIONS(3248), 1, - anon_sym_defined, - ACTIONS(3286), 1, - sym_number_literal, - ACTIONS(3250), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3252), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3256), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1264), 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, - [47960] = 9, + [49367] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3236), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3240), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3242), 1, anon_sym_defined, - ACTIONS(3288), 1, + ACTIONS(3377), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3244), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3250), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1247), 7, + STATE(1205), 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, - [48000] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1749), 1, - anon_sym_LPAREN2, - ACTIONS(1751), 1, - anon_sym_STAR, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2756), 1, - sym_identifier, - ACTIONS(2764), 1, - anon_sym_LBRACK, - STATE(1394), 1, - sym__declarator, - STATE(1488), 1, - sym_parameter_list, - STATE(1490), 1, - sym__abstract_declarator, - STATE(1803), 1, - sym_ms_based_modifier, - ACTIONS(3290), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1487), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [48048] = 9, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [49407] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3236), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3240), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3242), 1, anon_sym_defined, - ACTIONS(3292), 1, + ACTIONS(3379), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3244), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3250), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1244), 7, + STATE(1241), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -102809,30 +105179,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48088] = 9, + [49447] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3236), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3240), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3242), 1, anon_sym_defined, - ACTIONS(3294), 1, + ACTIONS(3381), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3244), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3250), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1238), 7, + STATE(1206), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -102840,30 +105210,57 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48128] = 9, + [49487] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3269), 1, + anon_sym_SLASH, + ACTIONS(3267), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3383), 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, + [49519] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3236), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3240), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3242), 1, anon_sym_defined, - ACTIONS(3296), 1, + ACTIONS(3387), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3244), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3250), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1231), 7, + STATE(1210), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -102871,30 +105268,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48168] = 9, + [49559] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3236), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3240), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3242), 1, anon_sym_defined, - ACTIONS(3298), 1, + ACTIONS(3389), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3244), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3250), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1256), 7, + STATE(1214), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -102902,30 +105299,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48208] = 9, + [49599] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3236), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3240), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3242), 1, anon_sym_defined, - ACTIONS(3300), 1, + ACTIONS(3391), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3244), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3250), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1230), 7, + STATE(1215), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -102933,30 +105330,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48248] = 9, + [49639] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 1, + ACTIONS(3236), 1, sym_identifier, - ACTIONS(3186), 1, + ACTIONS(3240), 1, anon_sym_LPAREN2, - ACTIONS(3188), 1, + ACTIONS(3242), 1, anon_sym_defined, - ACTIONS(3302), 1, + ACTIONS(3393), 1, sym_number_literal, - ACTIONS(3190), 2, + ACTIONS(3244), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3192), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 5, + ACTIONS(3250), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1170), 7, + STATE(1217), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -102964,30 +105361,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48288] = 9, + [49679] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 1, + ACTIONS(3236), 1, sym_identifier, - ACTIONS(3186), 1, + ACTIONS(3240), 1, anon_sym_LPAREN2, - ACTIONS(3188), 1, + ACTIONS(3242), 1, anon_sym_defined, - ACTIONS(3304), 1, + ACTIONS(3395), 1, sym_number_literal, - ACTIONS(3190), 2, + ACTIONS(3244), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3192), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 5, + ACTIONS(3250), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1207), 7, + STATE(1219), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -102995,16 +105392,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48328] = 3, + [49719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 5, + ACTIONS(3385), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3306), 15, + ACTIONS(3383), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -103020,30 +105417,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [48356] = 9, + [49747] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3236), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3240), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3242), 1, anon_sym_defined, - ACTIONS(3310), 1, + ACTIONS(3397), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3244), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3250), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1225), 7, + STATE(1231), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103051,30 +105448,124 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48396] = 9, + [49787] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 1, + ACTIONS(3269), 1, + anon_sym_SLASH, + ACTIONS(3273), 1, + anon_sym_AMP_AMP, + ACTIONS(3275), 1, + anon_sym_PIPE, + ACTIONS(3277), 1, + anon_sym_CARET, + ACTIONS(3279), 1, + anon_sym_AMP, + ACTIONS(3265), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3267), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3281), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3283), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3285), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3287), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3383), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [49835] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3269), 1, + anon_sym_SLASH, + ACTIONS(3275), 1, + anon_sym_PIPE, + ACTIONS(3277), 1, + anon_sym_CARET, + ACTIONS(3279), 1, + anon_sym_AMP, + ACTIONS(3265), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3267), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3281), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3283), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3285), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3287), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3383), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [49881] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2281), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2283), 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, + [49909] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3186), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3188), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3312), 1, + ACTIONS(3399), 1, sym_number_literal, - ACTIONS(3190), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3192), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1237), 7, + STATE(1264), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103082,30 +105573,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48436] = 9, + [49949] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3314), 1, + ACTIONS(3401), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1246), 7, + STATE(1247), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103113,109 +105604,64 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48476] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3318), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1114), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3316), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [48508] = 3, + [49989] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2189), 5, + ACTIONS(3269), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(3277), 1, + anon_sym_CARET, + ACTIONS(3279), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2191), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3385), 1, + anon_sym_PIPE, + ACTIONS(3265), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3267), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3283), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3285), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48536] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3322), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1218), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3320), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [48568] = 9, + ACTIONS(3383), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [50035] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3324), 1, + ACTIONS(3403), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1243), 7, + STATE(1269), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103223,30 +105669,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48608] = 9, + [50075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3407), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3405), 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, + [50103] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3326), 1, + ACTIONS(3409), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1250), 7, + STATE(1261), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103254,30 +105725,151 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48648] = 9, + [50143] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3269), 1, + anon_sym_SLASH, + ACTIONS(3279), 1, + anon_sym_AMP, + ACTIONS(3385), 1, + anon_sym_PIPE, + ACTIONS(3265), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3267), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3281), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3283), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3285), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3287), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3383), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [50187] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3269), 1, + anon_sym_SLASH, + ACTIONS(3265), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3267), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3281), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3283), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3285), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3287), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3385), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3383), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [50229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3413), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3411), 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, + [50257] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3269), 1, + anon_sym_SLASH, + ACTIONS(3265), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3267), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3283), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3285), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3287), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3385), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3383), 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, + [50297] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3236), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3240), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3242), 1, anon_sym_defined, - ACTIONS(3328), 1, + ACTIONS(3415), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3244), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3250), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1240), 7, + STATE(1189), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103285,30 +105877,59 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48688] = 9, + [50337] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3269), 1, + anon_sym_SLASH, + ACTIONS(3265), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3267), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3287), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3385), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3383), 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, + [50373] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3330), 1, + ACTIONS(3417), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1234), 7, + STATE(1263), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103316,30 +105937,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48728] = 9, + [50413] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 1, + ACTIONS(3236), 1, sym_identifier, - ACTIONS(3186), 1, + ACTIONS(3240), 1, anon_sym_LPAREN2, - ACTIONS(3188), 1, + ACTIONS(3242), 1, anon_sym_defined, - ACTIONS(3332), 1, + ACTIONS(3419), 1, sym_number_literal, - ACTIONS(3190), 2, + ACTIONS(3244), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3192), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 5, + ACTIONS(3250), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1174), 7, + STATE(1203), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103347,30 +105968,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48768] = 9, + [50453] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3186), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3188), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3334), 1, + ACTIONS(3421), 1, sym_number_literal, - ACTIONS(3190), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3192), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1175), 7, + STATE(1265), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103378,30 +105999,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48808] = 9, + [50493] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3186), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3188), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3336), 1, + ACTIONS(3423), 1, sym_number_literal, - ACTIONS(3190), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3192), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1160), 7, + STATE(1268), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103409,30 +106030,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48848] = 9, + [50533] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3338), 1, + ACTIONS(3425), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1232), 7, + STATE(1274), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103440,55 +106061,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48888] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3342), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3340), 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, - [48916] = 9, + [50573] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3186), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3188), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3344), 1, + ACTIONS(3427), 1, sym_number_literal, - ACTIONS(3190), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3192), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1162), 7, + STATE(1272), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103496,30 +106092,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48956] = 9, + [50613] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3186), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3188), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3346), 1, + ACTIONS(3429), 1, sym_number_literal, - ACTIONS(3190), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3192), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1163), 7, + STATE(1266), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103527,30 +106123,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48996] = 9, + [50653] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3186), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3188), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3348), 1, + ACTIONS(3431), 1, sym_number_literal, - ACTIONS(3190), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3192), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1164), 7, + STATE(1246), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103558,55 +106154,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49036] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3352), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3350), 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, - [49064] = 9, + [50693] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3186), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3188), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3354), 1, + ACTIONS(3433), 1, sym_number_literal, - ACTIONS(3190), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3192), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1165), 7, + STATE(1249), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103614,30 +106185,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49104] = 9, + [50733] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3186), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3188), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3356), 1, + ACTIONS(3435), 1, sym_number_literal, - ACTIONS(3190), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3192), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1166), 7, + STATE(1262), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103645,30 +106216,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49144] = 9, + [50773] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3186), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3188), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3358), 1, + ACTIONS(3437), 1, sym_number_literal, - ACTIONS(3190), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3192), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1168), 7, + STATE(1275), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103676,30 +106247,58 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49184] = 9, + [50813] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3269), 1, + anon_sym_SLASH, + ACTIONS(3265), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3267), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3383), 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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50847] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3360), 1, + ACTIONS(3439), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1267), 7, + STATE(1273), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103707,30 +106306,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49224] = 9, + [50887] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3362), 1, + ACTIONS(3441), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1233), 7, + STATE(1270), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103738,30 +106337,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49264] = 9, + [50927] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3186), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3188), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3364), 1, + ACTIONS(3443), 1, sym_number_literal, - ACTIONS(3190), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3192), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3196), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1169), 7, + STATE(1243), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103769,57 +106368,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49304] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3368), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1114), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3366), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [49336] = 9, + [50967] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 1, + ACTIONS(3333), 1, sym_identifier, - ACTIONS(3246), 1, + ACTIONS(3335), 1, anon_sym_LPAREN2, - ACTIONS(3248), 1, + ACTIONS(3337), 1, anon_sym_defined, - ACTIONS(3370), 1, + ACTIONS(3445), 1, sym_number_literal, - ACTIONS(3250), 2, + ACTIONS(3339), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3252), 2, + ACTIONS(3341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3256), 5, + ACTIONS(3345), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1262), 7, + STATE(1236), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103827,67 +106399,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49376] = 3, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(3350), 1, - anon_sym_LF, - ACTIONS(3352), 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, - [49403] = 10, - ACTIONS(3230), 1, + [51007] = 12, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3258), 1, + ACTIONS(3447), 1, anon_sym_LF, - ACTIONS(3376), 1, + ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3457), 1, + anon_sym_PIPE, + ACTIONS(3459), 1, anon_sym_CARET, - ACTIONS(3378), 1, + ACTIONS(3461), 1, anon_sym_AMP, - ACTIONS(3372), 2, + ACTIONS(3449), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3380), 2, + ACTIONS(3463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 2, + ACTIONS(3467), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3260), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(3374), 3, + ACTIONS(3451), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3382), 4, + ACTIONS(3465), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49444] = 3, - ACTIONS(2191), 1, + [51052] = 3, + ACTIONS(2283), 1, anon_sym_LF, - ACTIONS(3230), 1, + ACTIONS(3294), 1, sym_comment, - ACTIONS(2189), 18, + ACTIONS(2281), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -103906,200 +106456,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [49471] = 7, + [51079] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 1, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2768), 1, sym_identifier, - ACTIONS(3392), 1, - sym_primitive_type, - STATE(1261), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2675), 2, + ACTIONS(2970), 1, anon_sym_LPAREN2, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3389), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2677), 10, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [49506] = 3, - ACTIONS(2985), 1, - anon_sym_LF, - ACTIONS(3230), 1, + STATE(701), 1, + sym__old_style_function_declarator, + STATE(1348), 1, + sym_ms_call_modifier, + STATE(1392), 1, + sym__declarator, + STATE(1943), 1, + sym_ms_based_modifier, + STATE(1371), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [51122] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3269), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3271), 1, anon_sym_PIPE_PIPE, + ACTIONS(3273), 1, anon_sym_AMP_AMP, + ACTIONS(3275), 1, anon_sym_PIPE, + ACTIONS(3277), 1, anon_sym_CARET, + ACTIONS(3279), 1, anon_sym_AMP, + ACTIONS(3469), 1, + anon_sym_RPAREN, + ACTIONS(3265), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3267), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3283), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3285), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49533] = 12, - ACTIONS(3230), 1, + [51171] = 12, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3376), 1, - anon_sym_CARET, - ACTIONS(3378), 1, - anon_sym_AMP, - ACTIONS(3395), 1, - anon_sym_LF, - ACTIONS(3397), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3399), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3401), 1, + ACTIONS(3457), 1, anon_sym_PIPE, - ACTIONS(3372), 2, + ACTIONS(3459), 1, + anon_sym_CARET, + ACTIONS(3461), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_LF, + ACTIONS(3449), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3380), 2, + ACTIONS(3463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 2, + ACTIONS(3467), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3374), 3, + ACTIONS(3451), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3382), 4, + ACTIONS(3465), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49578] = 11, + [51216] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2756), 1, - sym_identifier, - ACTIONS(2975), 1, - anon_sym_LPAREN2, - ACTIONS(2977), 1, - anon_sym_STAR, - STATE(717), 1, - sym__old_style_function_declarator, - STATE(1327), 1, - sym_ms_call_modifier, - STATE(1378), 1, - sym__declarator, - STATE(1803), 1, - sym_ms_based_modifier, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [49621] = 4, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(3258), 1, - anon_sym_LF, - ACTIONS(3374), 3, - anon_sym_STAR, + ACTIONS(3269), 1, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3260), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3271), 1, anon_sym_PIPE_PIPE, + ACTIONS(3273), 1, anon_sym_AMP_AMP, + ACTIONS(3275), 1, anon_sym_PIPE, + ACTIONS(3277), 1, anon_sym_CARET, + ACTIONS(3279), 1, anon_sym_AMP, + ACTIONS(3473), 1, + anon_sym_RPAREN, + ACTIONS(3265), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3267), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3283), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3285), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49650] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2756), 1, - sym_identifier, - ACTIONS(2975), 1, - anon_sym_LPAREN2, - ACTIONS(2977), 1, - anon_sym_STAR, - STATE(699), 1, - sym__old_style_function_declarator, - STATE(1342), 1, - sym_ms_call_modifier, - STATE(1375), 1, - sym__declarator, - STATE(1803), 1, - sym_ms_based_modifier, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [49693] = 11, + [51265] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2756), 1, + ACTIONS(2768), 1, sym_identifier, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - STATE(711), 1, + STATE(693), 1, sym__old_style_function_declarator, - STATE(1353), 1, + STATE(1347), 1, sym_ms_call_modifier, - STATE(1389), 1, + STATE(1386), 1, sym__declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1354), 5, + STATE(1371), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -104112,270 +106623,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [49736] = 12, - ACTIONS(3230), 1, + [51308] = 12, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3376), 1, - anon_sym_CARET, - ACTIONS(3378), 1, - anon_sym_AMP, - ACTIONS(3397), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3399), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3401), 1, + ACTIONS(3457), 1, anon_sym_PIPE, - ACTIONS(3403), 1, + ACTIONS(3459), 1, + anon_sym_CARET, + ACTIONS(3461), 1, + anon_sym_AMP, + ACTIONS(3475), 1, anon_sym_LF, - ACTIONS(3372), 2, + ACTIONS(3449), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3380), 2, + ACTIONS(3463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 2, + ACTIONS(3467), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3374), 3, + ACTIONS(3451), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3382), 4, + ACTIONS(3465), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49781] = 12, - ACTIONS(3230), 1, + [51353] = 3, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3376), 1, + ACTIONS(3373), 1, + anon_sym_LF, + ACTIONS(3375), 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, - ACTIONS(3378), 1, anon_sym_AMP, - ACTIONS(3397), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51380] = 12, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3399), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3401), 1, + ACTIONS(3457), 1, anon_sym_PIPE, - ACTIONS(3405), 1, + ACTIONS(3459), 1, + anon_sym_CARET, + ACTIONS(3461), 1, + anon_sym_AMP, + ACTIONS(3477), 1, anon_sym_LF, - ACTIONS(3372), 2, + ACTIONS(3449), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3380), 2, + ACTIONS(3463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 2, + ACTIONS(3467), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3374), 3, + ACTIONS(3451), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3382), 4, + ACTIONS(3465), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49826] = 12, - ACTIONS(3230), 1, + [51425] = 11, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3376), 1, + ACTIONS(3383), 1, + anon_sym_LF, + ACTIONS(3457), 1, + anon_sym_PIPE, + ACTIONS(3459), 1, anon_sym_CARET, - ACTIONS(3378), 1, + ACTIONS(3461), 1, anon_sym_AMP, - ACTIONS(3397), 1, + ACTIONS(3385), 2, anon_sym_PIPE_PIPE, - ACTIONS(3399), 1, anon_sym_AMP_AMP, - ACTIONS(3401), 1, - anon_sym_PIPE, - ACTIONS(3407), 1, - anon_sym_LF, - ACTIONS(3372), 2, + ACTIONS(3449), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3380), 2, + ACTIONS(3463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 2, + ACTIONS(3467), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3374), 3, + ACTIONS(3451), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3382), 4, + ACTIONS(3465), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49871] = 12, - ACTIONS(3230), 1, + [51468] = 12, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3376), 1, - anon_sym_CARET, - ACTIONS(3378), 1, - anon_sym_AMP, - ACTIONS(3397), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3399), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3401), 1, + ACTIONS(3457), 1, anon_sym_PIPE, - ACTIONS(3409), 1, + ACTIONS(3459), 1, + anon_sym_CARET, + ACTIONS(3461), 1, + anon_sym_AMP, + ACTIONS(3479), 1, anon_sym_LF, - ACTIONS(3372), 2, + ACTIONS(3449), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3380), 2, + ACTIONS(3463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 2, + ACTIONS(3467), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3374), 3, + ACTIONS(3451), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3382), 4, + ACTIONS(3465), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49916] = 12, - ACTIONS(3230), 1, + [51513] = 12, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3376), 1, - anon_sym_CARET, - ACTIONS(3378), 1, - anon_sym_AMP, - ACTIONS(3397), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3399), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3401), 1, + ACTIONS(3457), 1, anon_sym_PIPE, - ACTIONS(3411), 1, + ACTIONS(3459), 1, + anon_sym_CARET, + ACTIONS(3461), 1, + anon_sym_AMP, + ACTIONS(3481), 1, anon_sym_LF, - ACTIONS(3372), 2, + ACTIONS(3449), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3380), 2, + ACTIONS(3463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 2, + ACTIONS(3467), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3374), 3, + ACTIONS(3451), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3382), 4, + ACTIONS(3465), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49961] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1710), 1, - anon_sym_STAR, - ACTIONS(2669), 1, - anon_sym_LPAREN2, - STATE(1249), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3413), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1697), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [49994] = 3, - ACTIONS(3230), 1, + [51558] = 12, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3280), 1, + ACTIONS(3383), 1, anon_sym_LF, - ACTIONS(3282), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3385), 1, anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, anon_sym_AMP_AMP, + ACTIONS(3457), 1, anon_sym_PIPE, + ACTIONS(3459), 1, anon_sym_CARET, + ACTIONS(3461), 1, anon_sym_AMP, + ACTIONS(3449), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3467), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3451), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3465), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50021] = 14, - ACTIONS(3), 1, + [51603] = 3, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3206), 1, + ACTIONS(3353), 1, + anon_sym_LF, + ACTIONS(3355), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3208), 1, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(3210), 1, anon_sym_AMP_AMP, - ACTIONS(3212), 1, anon_sym_PIPE, - ACTIONS(3214), 1, anon_sym_CARET, - ACTIONS(3216), 1, anon_sym_AMP, - ACTIONS(3416), 1, - anon_sym_RPAREN, - ACTIONS(3202), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3204), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3220), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3222), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3224), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50070] = 5, - ACTIONS(3230), 1, + [51630] = 3, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3258), 1, + ACTIONS(3411), 1, anon_sym_LF, - ACTIONS(3372), 2, + ACTIONS(3413), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3260), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -104389,71 +106892,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50101] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(781), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2623), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3418), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2621), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [50132] = 12, - ACTIONS(3230), 1, + [51657] = 3, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3376), 1, - anon_sym_CARET, - ACTIONS(3378), 1, - anon_sym_AMP, - ACTIONS(3397), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3399), 1, - anon_sym_AMP_AMP, - ACTIONS(3401), 1, - anon_sym_PIPE, - ACTIONS(3421), 1, + ACTIONS(3405), 1, anon_sym_LF, - ACTIONS(3372), 2, + ACTIONS(3407), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3380), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3384), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3382), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50177] = 3, - ACTIONS(2993), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51684] = 3, + ACTIONS(3024), 1, anon_sym_LF, - ACTIONS(3230), 1, + ACTIONS(3294), 1, sym_comment, - ACTIONS(2991), 18, + ACTIONS(3022), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104472,119 +106940,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50204] = 12, - ACTIONS(3230), 1, + [51711] = 12, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3376), 1, - anon_sym_CARET, - ACTIONS(3378), 1, - anon_sym_AMP, - ACTIONS(3397), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3399), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3401), 1, + ACTIONS(3457), 1, anon_sym_PIPE, - ACTIONS(3423), 1, + ACTIONS(3459), 1, + anon_sym_CARET, + ACTIONS(3461), 1, + anon_sym_AMP, + ACTIONS(3483), 1, anon_sym_LF, - ACTIONS(3372), 2, + ACTIONS(3449), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3380), 2, + ACTIONS(3463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 2, + ACTIONS(3467), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3374), 3, + ACTIONS(3451), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3382), 4, + ACTIONS(3465), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50249] = 12, - ACTIONS(3230), 1, + [51756] = 12, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3376), 1, - anon_sym_CARET, - ACTIONS(3378), 1, - anon_sym_AMP, - ACTIONS(3397), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3399), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3401), 1, + ACTIONS(3457), 1, anon_sym_PIPE, - ACTIONS(3425), 1, + ACTIONS(3459), 1, + anon_sym_CARET, + ACTIONS(3461), 1, + anon_sym_AMP, + ACTIONS(3485), 1, anon_sym_LF, - ACTIONS(3372), 2, + ACTIONS(3449), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3380), 2, + ACTIONS(3463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 2, + ACTIONS(3467), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3374), 3, + ACTIONS(3451), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3382), 4, + ACTIONS(3465), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50294] = 6, - ACTIONS(3230), 1, + [51801] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(3258), 1, - anon_sym_LF, - ACTIONS(3372), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3384), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3374), 3, + ACTIONS(2778), 1, + anon_sym_const, + ACTIONS(2785), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym___attribute__, + ACTIONS(3489), 1, + anon_sym_COLON, + STATE(788), 1, + sym_attribute_specifier, + STATE(1131), 1, + sym_enumerator_list, + ACTIONS(2780), 13, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3260), 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, - [50327] = 11, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_alignas, + anon_sym__Alignas, + [51838] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2756), 1, + ACTIONS(2768), 1, sym_identifier, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - STATE(719), 1, + STATE(691), 1, sym__old_style_function_declarator, - STATE(1347), 1, + STATE(1332), 1, sym_ms_call_modifier, - STATE(1376), 1, + STATE(1380), 1, sym__declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1354), 5, + STATE(1371), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -104597,12 +107067,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50370] = 3, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(3340), 1, + [51881] = 3, + ACTIONS(3046), 1, anon_sym_LF, - ACTIONS(3342), 18, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(3044), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104621,27 +107091,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50397] = 7, - ACTIONS(3230), 1, + [51908] = 5, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3258), 1, + ACTIONS(3383), 1, anon_sym_LF, - ACTIONS(3372), 2, + ACTIONS(3449), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3384), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3374), 3, + ACTIONS(3451), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3382), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(3260), 7, + ACTIONS(3385), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -104649,104 +107111,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [50432] = 12, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(3258), 1, - anon_sym_LF, - ACTIONS(3260), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3376), 1, - anon_sym_CARET, - ACTIONS(3378), 1, - anon_sym_AMP, - ACTIONS(3399), 1, - anon_sym_AMP_AMP, - ACTIONS(3401), 1, - anon_sym_PIPE, - ACTIONS(3372), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3380), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3384), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3374), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50477] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(781), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2537), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3427), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2535), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [50508] = 12, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(3376), 1, - anon_sym_CARET, - ACTIONS(3378), 1, - anon_sym_AMP, - ACTIONS(3397), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3399), 1, - anon_sym_AMP_AMP, - ACTIONS(3401), 1, - anon_sym_PIPE, - ACTIONS(3430), 1, - anon_sym_LF, - ACTIONS(3372), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3380), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3374), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3382), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [50553] = 3, - ACTIONS(2981), 1, + [51939] = 3, + ACTIONS(3028), 1, anon_sym_LF, - ACTIONS(3230), 1, + ACTIONS(3294), 1, sym_comment, - ACTIONS(2979), 18, + ACTIONS(3026), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104765,417 +107141,319 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50580] = 11, - ACTIONS(3230), 1, + [51966] = 12, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3258), 1, - anon_sym_LF, - ACTIONS(3376), 1, - anon_sym_CARET, - ACTIONS(3378), 1, - anon_sym_AMP, - ACTIONS(3401), 1, - anon_sym_PIPE, - ACTIONS(3260), 2, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3372), 2, + ACTIONS(3457), 1, + anon_sym_PIPE, + ACTIONS(3459), 1, + anon_sym_CARET, + ACTIONS(3461), 1, + anon_sym_AMP, + ACTIONS(3492), 1, + anon_sym_LF, + ACTIONS(3449), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3380), 2, + ACTIONS(3463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 2, + ACTIONS(3467), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3374), 3, + ACTIONS(3451), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3382), 4, + ACTIONS(3465), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50623] = 5, - ACTIONS(3), 1, + [52011] = 3, + ACTIONS(3294), 1, sym_comment, - STATE(781), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2543), 2, - anon_sym_LPAREN2, + ACTIONS(3383), 1, + anon_sym_LF, + ACTIONS(3385), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(3432), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2541), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [50654] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3206), 1, anon_sym_SLASH, - ACTIONS(3208), 1, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(3210), 1, anon_sym_AMP_AMP, - ACTIONS(3212), 1, anon_sym_PIPE, - ACTIONS(3214), 1, - anon_sym_CARET, - ACTIONS(3216), 1, - anon_sym_AMP, - ACTIONS(3435), 1, - anon_sym_RPAREN, - ACTIONS(3202), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3204), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3218), 2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3220), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3222), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3224), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50703] = 12, - ACTIONS(3230), 1, + [52038] = 12, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3376), 1, - anon_sym_CARET, - ACTIONS(3378), 1, - anon_sym_AMP, - ACTIONS(3397), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3399), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3401), 1, + ACTIONS(3457), 1, anon_sym_PIPE, - ACTIONS(3437), 1, + ACTIONS(3459), 1, + anon_sym_CARET, + ACTIONS(3461), 1, + anon_sym_AMP, + ACTIONS(3494), 1, anon_sym_LF, - ACTIONS(3372), 2, + ACTIONS(3449), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3380), 2, + ACTIONS(3463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 2, + ACTIONS(3467), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3374), 3, + ACTIONS(3451), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3382), 4, + ACTIONS(3465), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50748] = 12, - ACTIONS(3230), 1, + [52083] = 12, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3376), 1, - anon_sym_CARET, - ACTIONS(3378), 1, - anon_sym_AMP, - ACTIONS(3397), 1, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3399), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3401), 1, + ACTIONS(3457), 1, anon_sym_PIPE, - ACTIONS(3439), 1, + ACTIONS(3459), 1, + anon_sym_CARET, + ACTIONS(3461), 1, + anon_sym_AMP, + ACTIONS(3496), 1, anon_sym_LF, - ACTIONS(3372), 2, + ACTIONS(3449), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3380), 2, + ACTIONS(3463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 2, + ACTIONS(3467), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3374), 3, + ACTIONS(3451), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3382), 4, + ACTIONS(3465), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50793] = 9, - ACTIONS(3230), 1, + [52128] = 6, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3258), 1, + ACTIONS(3383), 1, anon_sym_LF, - ACTIONS(3378), 1, - anon_sym_AMP, - ACTIONS(3372), 2, + ACTIONS(3449), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3380), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3384), 2, + ACTIONS(3467), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3374), 3, + ACTIONS(3451), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3260), 4, + ACTIONS(3385), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3382), 4, + 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, - [50832] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(781), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2571), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3441), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2569), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [50863] = 3, - ACTIONS(3230), 1, + [52161] = 10, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3306), 1, + ACTIONS(3383), 1, anon_sym_LF, - ACTIONS(3308), 18, + ACTIONS(3459), 1, + anon_sym_CARET, + ACTIONS(3461), 1, + anon_sym_AMP, + ACTIONS(3449), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3463), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3467), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3385), 3, 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(3451), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3465), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50890] = 5, + [52202] = 11, ACTIONS(3), 1, sym_comment, - STATE(1253), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2631), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3444), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2629), 12, - anon_sym___extension__, + ACTIONS(1764), 1, anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, + ACTIONS(2768), 1, sym_identifier, - [50921] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(781), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2642), 2, + ACTIONS(2970), 1, anon_sym_LPAREN2, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3447), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2639), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [50952] = 12, - ACTIONS(3230), 1, + STATE(698), 1, + sym__old_style_function_declarator, + STATE(1349), 1, + sym_ms_call_modifier, + STATE(1381), 1, + sym__declarator, + STATE(1943), 1, + sym_ms_based_modifier, + STATE(1371), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [52245] = 7, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3376), 1, + ACTIONS(3383), 1, + anon_sym_LF, + ACTIONS(3449), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3467), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3451), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3465), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(3385), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3378), 1, anon_sym_AMP, - ACTIONS(3397), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [52280] = 12, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(3453), 1, anon_sym_PIPE_PIPE, - ACTIONS(3399), 1, + ACTIONS(3455), 1, anon_sym_AMP_AMP, - ACTIONS(3401), 1, + ACTIONS(3457), 1, anon_sym_PIPE, - ACTIONS(3451), 1, + ACTIONS(3459), 1, + anon_sym_CARET, + ACTIONS(3461), 1, + anon_sym_AMP, + ACTIONS(3498), 1, anon_sym_LF, - ACTIONS(3372), 2, + ACTIONS(3449), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3380), 2, + ACTIONS(3463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 2, + ACTIONS(3467), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3374), 3, + ACTIONS(3451), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3382), 4, + ACTIONS(3465), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50997] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1258), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2561), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3453), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2559), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [51028] = 8, - ACTIONS(3230), 1, + [52325] = 12, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3258), 1, + ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3457), 1, + anon_sym_PIPE, + ACTIONS(3459), 1, + anon_sym_CARET, + ACTIONS(3461), 1, + anon_sym_AMP, + ACTIONS(3500), 1, anon_sym_LF, - ACTIONS(3372), 2, + ACTIONS(3449), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3380), 2, + ACTIONS(3463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 2, + ACTIONS(3467), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3374), 3, + ACTIONS(3451), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3382), 4, + ACTIONS(3465), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3260), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - [51065] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1239), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2555), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3456), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2553), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [51096] = 3, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(3258), 1, + [52370] = 3, + ACTIONS(3020), 1, anon_sym_LF, - ACTIONS(3260), 18, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(3018), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -105194,50 +107472,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51123] = 12, - ACTIONS(3230), 1, + [52397] = 9, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3376), 1, - anon_sym_CARET, - ACTIONS(3378), 1, + ACTIONS(3383), 1, + anon_sym_LF, + ACTIONS(3461), 1, anon_sym_AMP, - ACTIONS(3397), 1, + ACTIONS(3449), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3463), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3467), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3451), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_PIPE_PIPE, - ACTIONS(3399), 1, anon_sym_AMP_AMP, - ACTIONS(3401), 1, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3465), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [52436] = 12, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(3453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3455), 1, + anon_sym_AMP_AMP, + ACTIONS(3457), 1, anon_sym_PIPE, ACTIONS(3459), 1, + anon_sym_CARET, + ACTIONS(3461), 1, + anon_sym_AMP, + ACTIONS(3502), 1, anon_sym_LF, - ACTIONS(3372), 2, + ACTIONS(3449), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3380), 2, + ACTIONS(3463), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3384), 2, + ACTIONS(3467), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3374), 3, + ACTIONS(3451), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3382), 4, + ACTIONS(3465), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51168] = 3, - ACTIONS(2989), 1, - anon_sym_LF, - ACTIONS(3230), 1, + [52481] = 8, + ACTIONS(3294), 1, sym_comment, - ACTIONS(2987), 18, + ACTIONS(3383), 1, + anon_sym_LF, + ACTIONS(3449), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3463), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3467), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3451), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3465), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(3385), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + [52518] = 4, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_LF, + ACTIONS(3451), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3385), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -105251,29 +107589,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51195] = 10, + [52547] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2756), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2975), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2938), 1, anon_sym_STAR, - STATE(1334), 1, + STATE(1356), 1, sym_ms_call_modifier, - STATE(1421), 1, - sym__declarator, - STATE(1803), 1, + STATE(1428), 1, + sym__field_declarator, + STATE(1993), 1, sym_ms_based_modifier, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(39), 6, anon_sym___cdecl, anon_sym___clrcall, @@ -105281,24 +107619,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51235] = 10, + [52587] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2756), 1, + ACTIONS(2768), 1, sym_identifier, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - STATE(1342), 1, + STATE(1349), 1, sym_ms_call_modifier, - STATE(1397), 1, + STATE(1413), 1, sym__declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1354), 5, + STATE(1371), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -105311,24 +107649,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51275] = 10, + [52627] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2756), 1, + ACTIONS(2768), 1, sym_identifier, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - STATE(1347), 1, + STATE(1332), 1, sym_ms_call_modifier, - STATE(1401), 1, + STATE(1404), 1, sym__declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1354), 5, + STATE(1371), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -105341,54 +107679,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51315] = 10, + [52667] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2756), 1, - sym_identifier, - ACTIONS(2975), 1, + ACTIONS(1760), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(1762), 1, anon_sym_STAR, - STATE(1353), 1, - sym_ms_call_modifier, - STATE(1408), 1, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2768), 1, + sym_identifier, + ACTIONS(2776), 1, + anon_sym_LBRACK, + STATE(1429), 1, sym__declarator, - STATE(1803), 1, + STATE(1494), 1, + sym_parameter_list, + STATE(1534), 1, + sym__abstract_declarator, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1354), 5, + STATE(1495), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1371), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [51355] = 10, + [52711] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2756), 1, + ACTIONS(2768), 1, sym_identifier, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - STATE(1327), 1, + STATE(1347), 1, sym_ms_call_modifier, - STATE(1413), 1, + STATE(1412), 1, sym__declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1354), 5, + STATE(1371), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -105401,29 +107741,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51395] = 10, + [52751] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2969), 1, + ACTIONS(2768), 1, sym_identifier, - ACTIONS(2971), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2973), 1, + ACTIONS(2972), 1, anon_sym_STAR, - STATE(1333), 1, + STATE(1348), 1, sym_ms_call_modifier, - STATE(1425), 1, - sym__field_declarator, - STATE(1929), 1, + STATE(1423), 1, + sym__declarator, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1398), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1371), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(39), 6, anon_sym___cdecl, anon_sym___clrcall, @@ -105431,539 +107771,432 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51435] = 12, + [52791] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 1, - anon_sym_LPAREN2, - ACTIONS(1751), 1, - anon_sym_STAR, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2756), 1, + ACTIONS(2768), 1, sym_identifier, - ACTIONS(2764), 1, - anon_sym_LBRACK, - STATE(1432), 1, + ACTIONS(2970), 1, + anon_sym_LPAREN2, + ACTIONS(2972), 1, + anon_sym_STAR, + STATE(1346), 1, + sym_ms_call_modifier, + STATE(1434), 1, sym__declarator, - STATE(1488), 1, - sym_parameter_list, - STATE(1534), 1, - sym__abstract_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1487), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1354), 5, + STATE(1371), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [51479] = 11, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [52831] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2850), 1, + ACTIONS(2873), 1, sym_identifier, - ACTIONS(2852), 1, + ACTIONS(2875), 1, anon_sym_LPAREN2, - ACTIONS(2854), 1, + ACTIONS(2877), 1, anon_sym_STAR, - ACTIONS(2858), 1, + ACTIONS(2881), 1, sym_primitive_type, - STATE(1360), 1, + STATE(1365), 1, sym__type_declarator, - STATE(1542), 1, + STATE(1525), 1, sym__type_definition_declarators, - STATE(1913), 1, + STATE(1909), 1, sym_ms_based_modifier, - ACTIONS(2856), 4, + ACTIONS(2879), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1444), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51520] = 11, + [52872] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2850), 1, + ACTIONS(2873), 1, sym_identifier, - ACTIONS(2852), 1, + ACTIONS(2875), 1, anon_sym_LPAREN2, - ACTIONS(2854), 1, + ACTIONS(2877), 1, anon_sym_STAR, - ACTIONS(2858), 1, + ACTIONS(2881), 1, sym_primitive_type, - STATE(1360), 1, + STATE(1365), 1, sym__type_declarator, - STATE(1531), 1, + STATE(1547), 1, sym__type_definition_declarators, - STATE(1913), 1, + STATE(1909), 1, sym_ms_based_modifier, - ACTIONS(2856), 4, + ACTIONS(2879), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1444), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51561] = 11, + [52913] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2850), 1, + ACTIONS(2873), 1, sym_identifier, - ACTIONS(2852), 1, + ACTIONS(2875), 1, anon_sym_LPAREN2, - ACTIONS(2854), 1, + ACTIONS(2877), 1, anon_sym_STAR, - ACTIONS(2858), 1, + ACTIONS(2881), 1, sym_primitive_type, - STATE(1360), 1, + STATE(1365), 1, sym__type_declarator, - STATE(1547), 1, + STATE(1541), 1, sym__type_definition_declarators, - STATE(1913), 1, + STATE(1909), 1, sym_ms_based_modifier, - ACTIONS(2856), 4, + ACTIONS(2879), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1444), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51602] = 11, + [52954] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2850), 1, + ACTIONS(2873), 1, sym_identifier, - ACTIONS(2852), 1, + ACTIONS(2875), 1, anon_sym_LPAREN2, - ACTIONS(2854), 1, + ACTIONS(2877), 1, anon_sym_STAR, - ACTIONS(2858), 1, + ACTIONS(2881), 1, sym_primitive_type, - STATE(1360), 1, + STATE(1365), 1, sym__type_declarator, - STATE(1550), 1, + STATE(1518), 1, sym__type_definition_declarators, - STATE(1913), 1, + STATE(1909), 1, sym_ms_based_modifier, - ACTIONS(2856), 4, + ACTIONS(2879), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1444), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51643] = 11, + [52995] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2850), 1, + ACTIONS(2873), 1, sym_identifier, - ACTIONS(2852), 1, + ACTIONS(2875), 1, anon_sym_LPAREN2, - ACTIONS(2854), 1, + ACTIONS(2877), 1, anon_sym_STAR, - ACTIONS(2858), 1, + ACTIONS(2881), 1, sym_primitive_type, - STATE(1360), 1, + STATE(1365), 1, sym__type_declarator, - STATE(1508), 1, + STATE(1551), 1, sym__type_definition_declarators, - STATE(1913), 1, + STATE(1909), 1, sym_ms_based_modifier, - ACTIONS(2856), 4, + ACTIONS(2879), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1444), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51684] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2737), 1, - anon_sym_const, - ACTIONS(2744), 1, - anon_sym_LBRACE, - ACTIONS(3461), 1, - anon_sym___attribute__, - ACTIONS(3463), 1, - anon_sym_COLON, - STATE(827), 1, - sym_attribute_specifier, - STATE(1119), 1, - sym_enumerator_list, - ACTIONS(2739), 11, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [51719] = 11, + [53036] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2850), 1, + ACTIONS(2873), 1, sym_identifier, - ACTIONS(2852), 1, + ACTIONS(2875), 1, anon_sym_LPAREN2, - ACTIONS(2854), 1, + ACTIONS(2877), 1, anon_sym_STAR, - ACTIONS(2858), 1, + ACTIONS(2881), 1, sym_primitive_type, - STATE(1360), 1, + STATE(1365), 1, sym__type_declarator, - STATE(1555), 1, + STATE(1539), 1, sym__type_definition_declarators, - STATE(1913), 1, + STATE(1909), 1, sym_ms_based_modifier, - ACTIONS(2856), 4, + ACTIONS(2879), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1444), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51760] = 11, + [53077] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2850), 1, + ACTIONS(2873), 1, sym_identifier, - ACTIONS(2852), 1, + ACTIONS(2875), 1, anon_sym_LPAREN2, - ACTIONS(2854), 1, + ACTIONS(2877), 1, anon_sym_STAR, - ACTIONS(2858), 1, + ACTIONS(2881), 1, sym_primitive_type, - STATE(1360), 1, + STATE(1365), 1, sym__type_declarator, - STATE(1510), 1, + STATE(1555), 1, sym__type_definition_declarators, - STATE(1913), 1, + STATE(1909), 1, sym_ms_based_modifier, - ACTIONS(2856), 4, + ACTIONS(2879), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1444), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51801] = 11, + [53118] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2850), 1, + ACTIONS(2873), 1, sym_identifier, - ACTIONS(2852), 1, + ACTIONS(2875), 1, anon_sym_LPAREN2, - ACTIONS(2854), 1, + ACTIONS(2877), 1, anon_sym_STAR, - ACTIONS(2858), 1, + ACTIONS(2881), 1, sym_primitive_type, - STATE(1360), 1, + STATE(1365), 1, sym__type_declarator, - STATE(1505), 1, + STATE(1516), 1, sym__type_definition_declarators, - STATE(1913), 1, + STATE(1909), 1, sym_ms_based_modifier, - ACTIONS(2856), 4, + ACTIONS(2879), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1444), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51842] = 11, + [53159] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3466), 1, + ACTIONS(3504), 1, sym_identifier, - ACTIONS(3472), 1, + ACTIONS(3508), 1, anon_sym_LBRACK, - STATE(1291), 1, + STATE(1305), 1, sym_gnu_asm_expression, - STATE(1340), 1, - sym_attribute_specifier, - STATE(1424), 1, - aux_sym_type_definition_repeat1, - ACTIONS(89), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(3468), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1297), 2, + STATE(1296), 3, sym_preproc_call_expression, + sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3470), 4, + ACTIONS(3506), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [51882] = 8, + [53193] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3466), 1, + ACTIONS(3504), 1, sym_identifier, - ACTIONS(3472), 1, + ACTIONS(3508), 1, anon_sym_LBRACK, - STATE(1296), 1, + STATE(1303), 1, sym_gnu_asm_expression, - ACTIONS(89), 2, + STATE(1331), 1, + sym_attribute_specifier, + STATE(1448), 1, + aux_sym_type_definition_repeat1, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - STATE(1297), 3, + ACTIONS(3510), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1296), 2, sym_preproc_call_expression, - sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3470), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3506), 4, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [51916] = 10, + [53233] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2850), 1, + ACTIONS(2873), 1, sym_identifier, - ACTIONS(2852), 1, + ACTIONS(2875), 1, anon_sym_LPAREN2, - ACTIONS(2854), 1, + ACTIONS(2877), 1, anon_sym_STAR, - ACTIONS(2858), 1, + ACTIONS(2881), 1, sym_primitive_type, - STATE(1384), 1, + STATE(1393), 1, sym__type_declarator, - STATE(1913), 1, + STATE(1909), 1, sym_ms_based_modifier, - ACTIONS(2856), 4, + ACTIONS(2879), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1444), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51954] = 10, + [53271] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2850), 1, + ACTIONS(2873), 1, sym_identifier, - ACTIONS(2852), 1, + ACTIONS(2875), 1, anon_sym_LPAREN2, - ACTIONS(2854), 1, + ACTIONS(2877), 1, anon_sym_STAR, - ACTIONS(2858), 1, + ACTIONS(2881), 1, sym_primitive_type, - STATE(1430), 1, + STATE(1433), 1, sym__type_declarator, - STATE(1913), 1, + STATE(1909), 1, sym_ms_based_modifier, - ACTIONS(2856), 4, + ACTIONS(2879), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1423), 5, + STATE(1444), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51992] = 12, + [53309] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2969), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2971), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2973), 1, + ACTIONS(2938), 1, anon_sym_STAR, - ACTIONS(3474), 1, + ACTIONS(3512), 1, anon_sym_SEMI, - STATE(1323), 1, + STATE(1329), 1, sym__field_declarator, - STATE(1613), 1, + STATE(1689), 1, sym__field_declaration_declarator, - STATE(1929), 1, - sym_ms_based_modifier, - STATE(2001), 1, - sym_attribute_specifier, - STATE(1398), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [52033] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3476), 1, - sym_identifier, - ACTIONS(3478), 1, - aux_sym_preproc_if_token2, - ACTIONS(3480), 1, - aux_sym_preproc_else_token1, - ACTIONS(3482), 1, - aux_sym_preproc_elif_token1, - STATE(1348), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1351), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1442), 1, - sym_enumerator, - ACTIONS(3484), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1776), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(1780), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [52072] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(3466), 1, - sym_identifier, - ACTIONS(3490), 1, - anon_sym_LBRACK, - STATE(1340), 1, - sym_attribute_specifier, - STATE(1436), 1, - aux_sym_type_definition_repeat1, - ACTIONS(3486), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3492), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1293), 2, - sym_preproc_call_expression, - aux_sym_function_declarator_repeat1, - ACTIONS(3488), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [52109] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3494), 1, - sym_identifier, - ACTIONS(3499), 1, - anon_sym___attribute__, - ACTIONS(3502), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - STATE(1292), 3, - sym_preproc_call_expression, + STATE(1862), 1, sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3497), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [52138] = 6, + STATE(1993), 1, + sym_ms_based_modifier, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [53350] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3466), 1, + ACTIONS(3504), 1, sym_identifier, - ACTIONS(3506), 3, + ACTIONS(3516), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - STATE(1292), 3, + STATE(1302), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3504), 7, + ACTIONS(3514), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -105971,79 +108204,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52167] = 11, + [53379] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(3518), 1, sym_identifier, - ACTIONS(3480), 1, + ACTIONS(3520), 1, + aux_sym_preproc_if_token2, + ACTIONS(3522), 1, aux_sym_preproc_else_token1, - ACTIONS(3482), 1, + ACTIONS(3524), 1, aux_sym_preproc_elif_token1, - ACTIONS(3508), 1, + STATE(1336), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1359), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1441), 1, + sym_enumerator, + ACTIONS(3526), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1902), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + STATE(2021), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [53418] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 1, + sym_identifier, + ACTIONS(3522), 1, + aux_sym_preproc_else_token1, + ACTIONS(3524), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3528), 1, aux_sym_preproc_if_token2, - STATE(1338), 1, + STATE(1342), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1343), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1339), 1, + STATE(1441), 1, + sym_enumerator, + ACTIONS(3526), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1882), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(1885), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [53457] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 1, + sym_identifier, + ACTIONS(3522), 1, + aux_sym_preproc_else_token1, + ACTIONS(3524), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3530), 1, + aux_sym_preproc_if_token2, + STATE(1334), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1335), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1441), 1, + sym_enumerator, + ACTIONS(3526), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1933), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + STATE(1934), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [53496] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 1, + sym_identifier, + ACTIONS(3522), 1, + aux_sym_preproc_else_token1, + ACTIONS(3524), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3532), 1, + aux_sym_preproc_if_token2, + STATE(1333), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1345), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1442), 1, + STATE(1441), 1, sym_enumerator, - ACTIONS(3484), 2, + ACTIONS(3526), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1944), 3, + STATE(1915), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - STATE(1947), 3, + STATE(1916), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [52206] = 12, + [53535] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2969), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2971), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2973), 1, + ACTIONS(2938), 1, anon_sym_STAR, - ACTIONS(3510), 1, + ACTIONS(3534), 1, anon_sym_SEMI, - STATE(1323), 1, + STATE(1329), 1, sym__field_declarator, - STATE(1678), 1, + STATE(1590), 1, sym__field_declaration_declarator, - STATE(1850), 1, + STATE(1826), 1, sym_attribute_specifier, - STATE(1929), 1, + STATE(1993), 1, sym_ms_based_modifier, - STATE(1398), 5, + STATE(1414), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [52247] = 6, + [53576] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(3466), 1, + ACTIONS(3536), 1, sym_identifier, - ACTIONS(3490), 3, + ACTIONS(3541), 1, + anon_sym___attribute__, + ACTIONS(3544), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - STATE(1293), 3, + STATE(1302), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3488), 7, + ACTIONS(3539), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106051,22 +108368,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52276] = 6, + [53605] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(3504), 1, + sym_identifier, + ACTIONS(3516), 1, + anon_sym_LBRACK, + STATE(1331), 1, + sym_attribute_specifier, + STATE(1431), 1, + aux_sym_type_definition_repeat1, + ACTIONS(3546), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3548), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1304), 2, + sym_preproc_call_expression, + aux_sym_function_declarator_repeat1, + ACTIONS(3514), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [53642] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3466), 1, + ACTIONS(3504), 1, sym_identifier, - ACTIONS(3490), 3, + ACTIONS(3552), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - STATE(1292), 3, + STATE(1302), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3488), 7, + ACTIONS(3550), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106074,102 +108418,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52305] = 11, + [53671] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(3504), 1, sym_identifier, - ACTIONS(3480), 1, - aux_sym_preproc_else_token1, - ACTIONS(3482), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3512), 1, - aux_sym_preproc_if_token2, - STATE(1341), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1346), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1442), 1, - sym_enumerator, - ACTIONS(3484), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1899), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - STATE(1900), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [52344] = 12, + ACTIONS(3516), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + STATE(1304), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3514), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [53700] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2969), 1, + ACTIONS(2934), 1, sym_identifier, - ACTIONS(2971), 1, + ACTIONS(2936), 1, anon_sym_LPAREN2, - ACTIONS(2973), 1, + ACTIONS(2938), 1, anon_sym_STAR, - ACTIONS(3514), 1, + ACTIONS(3554), 1, anon_sym_SEMI, - STATE(1323), 1, + STATE(1329), 1, sym__field_declarator, - STATE(1664), 1, + STATE(1572), 1, sym__field_declaration_declarator, - STATE(1904), 1, + STATE(1980), 1, sym_attribute_specifier, - STATE(1929), 1, + STATE(1993), 1, sym_ms_based_modifier, - STATE(1398), 5, + STATE(1414), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [52385] = 11, + [53741] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, - sym_identifier, - ACTIONS(3480), 1, - aux_sym_preproc_else_token1, - ACTIONS(3482), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3516), 1, - aux_sym_preproc_if_token2, - STATE(1325), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1331), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1442), 1, - sym_enumerator, - ACTIONS(3484), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1907), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - STATE(1919), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [52424] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3520), 1, + ACTIONS(3558), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3523), 1, + ACTIONS(3561), 1, anon_sym_LBRACK, - STATE(1301), 2, + STATE(1307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3518), 10, + ACTIONS(3556), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106180,39 +108491,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [52450] = 3, + [53767] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2819), 5, - anon_sym___attribute__, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2970), 1, + anon_sym_LPAREN2, + ACTIONS(2972), 1, + anon_sym_STAR, + ACTIONS(3228), 1, + sym_identifier, + STATE(1371), 1, + sym_function_declarator, + STATE(1418), 1, + sym__declarator, + STATE(1471), 1, + sym__declaration_declarator, + STATE(1524), 1, + sym__function_declaration_declarator, + STATE(1943), 1, + sym_ms_based_modifier, + STATE(1388), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [53804] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2970), 1, + anon_sym_LPAREN2, + ACTIONS(2972), 1, + anon_sym_STAR, + ACTIONS(3228), 1, + sym_identifier, + STATE(1371), 1, + sym_function_declarator, + STATE(1464), 1, + sym__declarator, + STATE(1484), 1, + sym__declaration_declarator, + STATE(1524), 1, + sym__function_declaration_declarator, + STATE(1943), 1, + sym_ms_based_modifier, + STATE(1388), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [53841] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3565), 1, + anon_sym_LPAREN2, + ACTIONS(3567), 1, anon_sym_LBRACK, + STATE(1291), 1, + sym_parameter_list, + STATE(1330), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3563), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - sym_identifier, - ACTIONS(2812), 8, + [53870] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3565), 1, + anon_sym_LPAREN2, + ACTIONS(3567), 1, + anon_sym_LBRACK, + STATE(1291), 1, + sym_parameter_list, + STATE(1330), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3569), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [52471] = 7, + anon_sym_asm, + anon_sym___asm__, + [53899] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - STATE(1286), 1, + STATE(1291), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3525), 7, + ACTIONS(3571), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -106220,223 +108609,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [52500] = 11, + [53928] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1449), 1, + STATE(1464), 1, sym__declarator, - STATE(1461), 1, + STATE(1504), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52537] = 11, + [53965] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1449), 1, + STATE(1406), 1, sym__declarator, - STATE(1466), 1, + STATE(1484), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52574] = 11, + [54002] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1449), 1, + STATE(1422), 1, sym__declarator, - STATE(1495), 1, + STATE(1482), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52611] = 7, + [54039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(2808), 5, + anon_sym___attribute__, anon_sym_LBRACK, - STATE(1286), 1, - sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3531), 7, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(2801), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [52640] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2975), 1, - anon_sym_LPAREN2, - ACTIONS(2977), 1, - anon_sym_STAR, - ACTIONS(3170), 1, - sym_identifier, - STATE(1354), 1, - sym_function_declarator, - STATE(1449), 1, - sym__declarator, - STATE(1472), 1, - sym__declaration_declarator, - STATE(1501), 1, - sym__function_declaration_declarator, - STATE(1803), 1, - sym_ms_based_modifier, - STATE(1391), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [52677] = 11, + anon_sym_COLON, + [54060] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(3232), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, - anon_sym_STAR, - ACTIONS(3170), 1, - sym_identifier, - STATE(1354), 1, - sym_function_declarator, - STATE(1400), 1, - sym__declarator, - STATE(1458), 1, - sym__declaration_declarator, - STATE(1501), 1, - sym__function_declaration_declarator, - STATE(1803), 1, - sym_ms_based_modifier, - STATE(1391), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [52714] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(3533), 1, + STATE(1041), 1, + sym_preproc_argument_list, + ACTIONS(3573), 5, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - ACTIONS(3535), 1, - aux_sym_preproc_if_token1, - ACTIONS(3539), 1, - anon_sym_RBRACE, - ACTIONS(3537), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1726), 2, - sym_preproc_call, - sym_enumerator, - STATE(1905), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1349), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [52747] = 11, + ACTIONS(3575), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [54085] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1414), 1, + STATE(1407), 1, sym__declarator, - STATE(1479), 1, + STATE(1470), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52784] = 7, + [54122] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - STATE(1286), 1, + STATE(1291), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3541), 7, + ACTIONS(3577), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -106444,274 +108773,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [52813] = 11, + [54151] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1449), 1, + STATE(1464), 1, sym__declarator, - STATE(1458), 1, + STATE(1482), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52850] = 11, + [54188] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1449), 1, + STATE(1464), 1, sym__declarator, - STATE(1479), 1, + STATE(1470), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52887] = 11, + [54225] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1412), 1, + STATE(1464), 1, sym__declarator, - STATE(1461), 1, + STATE(1483), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52924] = 5, + [54262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3178), 1, + ACTIONS(3579), 5, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3581), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(1010), 1, - sym_preproc_argument_list, - ACTIONS(3543), 5, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [54283] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2820), 5, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(3545), 6, + ACTIONS(2813), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52949] = 9, + anon_sym_COLON, + [54304] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(3533), 1, + ACTIONS(3583), 1, sym_identifier, - ACTIONS(3535), 1, + ACTIONS(3585), 1, aux_sym_preproc_if_token1, - ACTIONS(3547), 1, + ACTIONS(3589), 1, anon_sym_RBRACE, - ACTIONS(3537), 2, + ACTIONS(3587), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1739), 2, + STATE(1717), 2, sym_preproc_call, sym_enumerator, - STATE(1928), 2, + STATE(1961), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1310), 3, + STATE(1337), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [52982] = 3, + [54337] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 5, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(3583), 1, sym_identifier, - ACTIONS(3551), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [53003] = 11, + ACTIONS(3585), 1, + aux_sym_preproc_if_token1, + ACTIONS(3591), 1, + anon_sym_RBRACE, + ACTIONS(3587), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1741), 2, + sym_preproc_call, + sym_enumerator, + STATE(1886), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(1325), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [54370] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1402), 1, + STATE(1464), 1, sym__declarator, - STATE(1472), 1, + STATE(1471), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [53040] = 11, + [54407] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - ACTIONS(3170), 1, + ACTIONS(3228), 1, sym_identifier, - STATE(1354), 1, + STATE(1371), 1, sym_function_declarator, - STATE(1449), 1, + STATE(1464), 1, sym__declarator, - STATE(1477), 1, + STATE(1478), 1, sym__declaration_declarator, - STATE(1501), 1, + STATE(1524), 1, sym__function_declaration_declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1391), 4, + STATE(1388), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [53077] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - ACTIONS(3529), 1, - anon_sym_LBRACK, - STATE(1286), 1, - sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3553), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [53106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2807), 5, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(2800), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [53127] = 11, + [54444] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3555), 1, + ACTIONS(3593), 1, anon_sym_COMMA, - ACTIONS(3559), 1, + ACTIONS(3597), 1, anon_sym_LBRACK, - ACTIONS(3561), 1, + ACTIONS(3599), 1, anon_sym_COLON, - STATE(1395), 1, + STATE(1417), 1, sym_parameter_list, - STATE(1536), 1, + STATE(1550), 1, aux_sym__field_declaration_declarator_repeat1, - STATE(1537), 1, + STATE(1553), 1, sym_bitfield_clause, - ACTIONS(3557), 2, + ACTIONS(3595), 2, anon_sym_SEMI, anon_sym___attribute__, - STATE(1371), 2, + STATE(1378), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53163] = 5, + [54480] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3565), 1, + ACTIONS(3603), 1, anon_sym_LBRACK, - STATE(1301), 2, + STATE(1307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3563), 8, + ACTIONS(3601), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106720,622 +109031,622 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [53187] = 8, + [54504] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, - sym_identifier, - ACTIONS(3567), 1, - aux_sym_preproc_if_token2, - ACTIONS(3569), 1, - aux_sym_preproc_else_token1, - ACTIONS(3571), 1, - aux_sym_preproc_elif_token1, + ACTIONS(3607), 1, + anon_sym___attribute__, ACTIONS(3573), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1410), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1785), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [53216] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3476), 1, + anon_sym_LBRACK, sym_identifier, - ACTIONS(3569), 1, - aux_sym_preproc_else_token1, - ACTIONS(3571), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3575), 1, - aux_sym_preproc_if_token2, - ACTIONS(3573), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1348), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1780), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [53245] = 8, + ACTIONS(3605), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3610), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3575), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [54529] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2756), 1, + ACTIONS(2768), 1, sym_identifier, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - STATE(1403), 1, + STATE(1409), 1, sym__declarator, - STATE(1803), 1, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1354), 5, + STATE(1371), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [53274] = 9, + [54558] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3516), 1, - aux_sym_preproc_if_token2, - ACTIONS(3533), 1, + ACTIONS(3583), 1, sym_identifier, - ACTIONS(3577), 1, + ACTIONS(3612), 1, + aux_sym_preproc_if_token2, + ACTIONS(3614), 1, aux_sym_preproc_else_token1, - ACTIONS(3579), 1, + ACTIONS(3616), 1, aux_sym_preproc_elif_token1, - STATE(1331), 1, + STATE(1399), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, + STATE(1894), 1, sym_enumerator, - ACTIONS(3581), 2, + ACTIONS(3618), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1919), 3, + STATE(1953), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [53305] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - ACTIONS(3559), 1, - anon_sym_LBRACK, - STATE(1395), 1, - sym_parameter_list, - STATE(1371), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3583), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [53332] = 8, + [54589] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(3583), 1, sym_identifier, - ACTIONS(3569), 1, + ACTIONS(3614), 1, aux_sym_preproc_else_token1, - ACTIONS(3571), 1, + ACTIONS(3616), 1, aux_sym_preproc_elif_token1, - ACTIONS(3585), 1, + ACTIONS(3620), 1, aux_sym_preproc_if_token2, - ACTIONS(3573), 2, + STATE(1399), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1894), 1, + sym_enumerator, + ACTIONS(3618), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1871), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [54620] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 1, + sym_identifier, + ACTIONS(3622), 1, + aux_sym_preproc_if_token2, + ACTIONS(3624), 1, + aux_sym_preproc_else_token1, + ACTIONS(3626), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3628), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1325), 2, + STATE(1424), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1907), 3, + STATE(1875), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [53361] = 9, + [54649] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 1, + ACTIONS(3583), 1, sym_identifier, - ACTIONS(3577), 1, + ACTIONS(3614), 1, aux_sym_preproc_else_token1, - ACTIONS(3579), 1, + ACTIONS(3616), 1, aux_sym_preproc_elif_token1, - ACTIONS(3587), 1, + ACTIONS(3630), 1, aux_sym_preproc_if_token2, - STATE(1409), 1, + STATE(1399), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, + STATE(1894), 1, sym_enumerator, - ACTIONS(3581), 2, + ACTIONS(3618), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1779), 3, + STATE(1828), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [53392] = 9, + [54680] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3632), 1, + sym_identifier, + ACTIONS(3635), 1, + aux_sym_preproc_if_token1, + ACTIONS(3641), 1, + sym_preproc_directive, + ACTIONS(3644), 1, + anon_sym_RBRACE, + ACTIONS(3638), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1968), 2, + sym_preproc_call, + sym_enumerator, + STATE(1337), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [54709] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 1, + ACTIONS(3518), 1, sym_identifier, - ACTIONS(3577), 1, + ACTIONS(3624), 1, aux_sym_preproc_else_token1, - ACTIONS(3579), 1, + ACTIONS(3626), 1, aux_sym_preproc_elif_token1, - ACTIONS(3589), 1, + ACTIONS(3646), 1, aux_sym_preproc_if_token2, - STATE(1338), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, - sym_enumerator, - ACTIONS(3581), 2, + ACTIONS(3628), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1944), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [53423] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2969), 1, - sym_identifier, - ACTIONS(2971), 1, - anon_sym_LPAREN2, - ACTIONS(2973), 1, - anon_sym_STAR, - STATE(1428), 1, - sym__field_declarator, - STATE(1929), 1, - sym_ms_based_modifier, - STATE(1398), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [53452] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2756), 1, - sym_identifier, - ACTIONS(2975), 1, - anon_sym_LPAREN2, - ACTIONS(2977), 1, - anon_sym_STAR, - STATE(1432), 1, - sym__declarator, - STATE(1803), 1, - sym_ms_based_modifier, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [53481] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - ACTIONS(3559), 1, - anon_sym_LBRACK, - STATE(1395), 1, - sym_parameter_list, - STATE(1371), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3591), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [53508] = 7, + STATE(1342), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1885), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [54738] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3559), 1, + ACTIONS(3597), 1, anon_sym_LBRACK, - STATE(1395), 1, + STATE(1417), 1, sym_parameter_list, - STATE(1371), 2, + STATE(1378), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3593), 5, + ACTIONS(3648), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [53535] = 8, + [54765] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2969), 1, + ACTIONS(3532), 1, + aux_sym_preproc_if_token2, + ACTIONS(3583), 1, sym_identifier, - ACTIONS(2971), 1, - anon_sym_LPAREN2, - ACTIONS(2973), 1, - anon_sym_STAR, - STATE(1343), 1, - sym__field_declarator, - STATE(1929), 1, - sym_ms_based_modifier, - STATE(1398), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [53564] = 9, + ACTIONS(3614), 1, + aux_sym_preproc_else_token1, + ACTIONS(3616), 1, + aux_sym_preproc_elif_token1, + STATE(1333), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1894), 1, + sym_enumerator, + ACTIONS(3618), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1915), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [54796] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 1, + ACTIONS(3528), 1, + aux_sym_preproc_if_token2, + ACTIONS(3583), 1, sym_identifier, - ACTIONS(3577), 1, + ACTIONS(3614), 1, aux_sym_preproc_else_token1, - ACTIONS(3579), 1, + ACTIONS(3616), 1, aux_sym_preproc_elif_token1, - ACTIONS(3595), 1, - aux_sym_preproc_if_token2, - STATE(1409), 1, + STATE(1343), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, + STATE(1894), 1, sym_enumerator, - ACTIONS(3581), 2, + ACTIONS(3618), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1939), 3, + STATE(1882), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [53595] = 8, + [54827] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(3518), 1, sym_identifier, - ACTIONS(3569), 1, + ACTIONS(3624), 1, aux_sym_preproc_else_token1, - ACTIONS(3571), 1, + ACTIONS(3626), 1, aux_sym_preproc_elif_token1, - ACTIONS(3597), 1, + ACTIONS(3650), 1, aux_sym_preproc_if_token2, - ACTIONS(3573), 2, + ACTIONS(3628), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1410), 2, + STATE(1424), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1932), 3, + STATE(1925), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [53624] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3601), 1, - anon_sym___attribute__, - ACTIONS(3543), 2, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(3599), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3604), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(3545), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [53649] = 9, + [54856] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 1, + ACTIONS(3583), 1, sym_identifier, - ACTIONS(3577), 1, + ACTIONS(3614), 1, aux_sym_preproc_else_token1, - ACTIONS(3579), 1, + ACTIONS(3616), 1, aux_sym_preproc_elif_token1, - ACTIONS(3606), 1, + ACTIONS(3652), 1, aux_sym_preproc_if_token2, - STATE(1409), 1, + STATE(1399), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, + STATE(1894), 1, sym_enumerator, - ACTIONS(3581), 2, + ACTIONS(3618), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1962), 3, + STATE(1924), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [53680] = 8, + [54887] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 1, + sym_identifier, + ACTIONS(3624), 1, + aux_sym_preproc_else_token1, + ACTIONS(3626), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3654), 1, + aux_sym_preproc_if_token2, + ACTIONS(3628), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1345), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1916), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [54916] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 1, + sym_identifier, + ACTIONS(3624), 1, + aux_sym_preproc_else_token1, + ACTIONS(3626), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3656), 1, + aux_sym_preproc_if_token2, + ACTIONS(3628), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1424), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1954), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [54945] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, + ACTIONS(1764), 1, anon_sym___based, - ACTIONS(2756), 1, + ACTIONS(2768), 1, sym_identifier, - ACTIONS(2975), 1, + ACTIONS(2970), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, + ACTIONS(2972), 1, anon_sym_STAR, - STATE(1404), 1, + STATE(1429), 1, sym__declarator, - STATE(1803), 1, + STATE(1943), 1, + sym_ms_based_modifier, + STATE(1371), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [54974] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2768), 1, + sym_identifier, + ACTIONS(2970), 1, + anon_sym_LPAREN2, + ACTIONS(2972), 1, + anon_sym_STAR, + STATE(1416), 1, + sym__declarator, + STATE(1943), 1, + sym_ms_based_modifier, + STATE(1371), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [55003] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2768), 1, + sym_identifier, + ACTIONS(2970), 1, + anon_sym_LPAREN2, + ACTIONS(2972), 1, + anon_sym_STAR, + STATE(1400), 1, + sym__declarator, + STATE(1943), 1, + sym_ms_based_modifier, + STATE(1371), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [55032] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2768), 1, + sym_identifier, + ACTIONS(2970), 1, + anon_sym_LPAREN2, + ACTIONS(2972), 1, + anon_sym_STAR, + STATE(1398), 1, + sym__declarator, + STATE(1943), 1, sym_ms_based_modifier, - STATE(1354), 5, + STATE(1371), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [53709] = 9, + [55061] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_STAR, + STATE(1351), 1, + sym__field_declarator, + STATE(1993), 1, + sym_ms_based_modifier, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [55090] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3559), 1, + ACTIONS(3597), 1, anon_sym_LBRACK, - ACTIONS(3561), 1, + ACTIONS(3599), 1, anon_sym_COLON, - STATE(1395), 1, + STATE(1417), 1, sym_parameter_list, - STATE(1641), 1, + STATE(1603), 1, sym_bitfield_clause, - STATE(1371), 2, + STATE(1378), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3608), 3, + ACTIONS(3658), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - [53740] = 6, + [55121] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3610), 1, + ACTIONS(3660), 1, sym_identifier, - STATE(687), 1, + STATE(707), 1, sym_string_literal, - ACTIONS(3612), 2, + ACTIONS(3662), 2, anon_sym_RPAREN, anon_sym_COLON, - STATE(1509), 2, + STATE(1530), 2, sym__string, sym_concatenated_string, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [53765] = 9, + [55146] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, - aux_sym_preproc_if_token2, - ACTIONS(3533), 1, - sym_identifier, - ACTIONS(3577), 1, - aux_sym_preproc_else_token1, - ACTIONS(3579), 1, - aux_sym_preproc_elif_token1, - STATE(1351), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, - sym_enumerator, - ACTIONS(3581), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1776), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [53796] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3476), 1, - sym_identifier, - ACTIONS(3569), 1, - aux_sym_preproc_else_token1, - ACTIONS(3571), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3614), 1, - aux_sym_preproc_if_token2, - ACTIONS(3573), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1410), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1966), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [53825] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2756), 1, - sym_identifier, - ACTIONS(2975), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(2977), 1, - anon_sym_STAR, - STATE(1392), 1, - sym__declarator, - STATE(1803), 1, - sym_ms_based_modifier, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [53854] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3476), 1, - sym_identifier, - ACTIONS(3569), 1, - aux_sym_preproc_else_token1, - ACTIONS(3571), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3616), 1, - aux_sym_preproc_if_token2, - ACTIONS(3573), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1410), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1865), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [53883] = 8, + ACTIONS(3597), 1, + anon_sym_LBRACK, + STATE(1417), 1, + sym_parameter_list, + STATE(1378), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3664), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [55173] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3618), 1, - sym_identifier, - ACTIONS(3621), 1, - aux_sym_preproc_if_token1, - ACTIONS(3627), 1, - sym_preproc_directive, - ACTIONS(3630), 1, - anon_sym_RBRACE, - ACTIONS(3624), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1889), 2, - sym_preproc_call, - sym_enumerator, - STATE(1349), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [53912] = 7, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3565), 1, + anon_sym_LPAREN2, + ACTIONS(3597), 1, + anon_sym_LBRACK, + STATE(1417), 1, + sym_parameter_list, + STATE(1378), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3666), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [55200] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3559), 1, + ACTIONS(3597), 1, anon_sym_LBRACK, - STATE(1395), 1, + STATE(1417), 1, sym_parameter_list, - STATE(1371), 2, + STATE(1378), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3632), 5, + ACTIONS(3668), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [53939] = 9, + [55227] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym___based, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 1, + anon_sym_LPAREN2, + ACTIONS(2938), 1, + anon_sym_STAR, + STATE(1430), 1, + sym__field_declarator, + STATE(1993), 1, + sym_ms_based_modifier, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [55256] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 1, + ACTIONS(3583), 1, sym_identifier, - ACTIONS(3577), 1, + ACTIONS(3614), 1, aux_sym_preproc_else_token1, - ACTIONS(3579), 1, + ACTIONS(3616), 1, aux_sym_preproc_elif_token1, - ACTIONS(3634), 1, + ACTIONS(3670), 1, aux_sym_preproc_if_token2, - STATE(1409), 1, + STATE(1336), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, + STATE(1894), 1, sym_enumerator, - ACTIONS(3581), 2, + ACTIONS(3618), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1864), 3, + STATE(2021), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [53970] = 9, + [55287] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 1, + ACTIONS(3583), 1, sym_identifier, - ACTIONS(3577), 1, + ACTIONS(3614), 1, aux_sym_preproc_else_token1, - ACTIONS(3579), 1, + ACTIONS(3616), 1, aux_sym_preproc_elif_token1, - ACTIONS(3636), 1, + ACTIONS(3672), 1, aux_sym_preproc_if_token2, - STATE(1341), 1, + STATE(1334), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, + STATE(1894), 1, sym_enumerator, - ACTIONS(3581), 2, + ACTIONS(3618), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1900), 3, + STATE(1934), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [54001] = 8, + [55318] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2756), 1, + ACTIONS(3518), 1, sym_identifier, - ACTIONS(2975), 1, - anon_sym_LPAREN2, - ACTIONS(2977), 1, - anon_sym_STAR, - STATE(1406), 1, - sym__declarator, - STATE(1803), 1, - sym_ms_based_modifier, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [54030] = 3, + ACTIONS(3624), 1, + aux_sym_preproc_else_token1, + ACTIONS(3626), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3674), 1, + aux_sym_preproc_if_token2, + ACTIONS(3628), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1424), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1837), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [55347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3640), 1, + ACTIONS(3678), 1, anon_sym_LBRACK, - ACTIONS(3638), 9, + ACTIONS(3676), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107345,30 +109656,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54048] = 6, + [55365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 1, - anon_sym_LBRACK, - STATE(1529), 1, - sym_gnu_asm_input_operand, - STATE(1990), 1, - sym_string_literal, - ACTIONS(3642), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [54072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3648), 1, + ACTIONS(3682), 1, anon_sym_LBRACK, - ACTIONS(3646), 9, + ACTIONS(3680), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107378,12 +109671,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54090] = 3, + [55383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3652), 1, + ACTIONS(3686), 1, anon_sym_LBRACK, - ACTIONS(3650), 9, + ACTIONS(3684), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107393,152 +109686,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54108] = 10, + [55401] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(3529), 1, - anon_sym_LBRACK, - ACTIONS(3654), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3656), 1, - anon_sym_EQ, - STATE(149), 1, - sym_compound_statement, - STATE(989), 1, - sym__old_style_parameter_list, - STATE(1285), 1, + ACTIONS(3690), 1, + anon_sym_LBRACK, + STATE(1447), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1397), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54140] = 10, + ACTIONS(3688), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + [55427] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(371), 1, - anon_sym_LBRACE, - ACTIONS(3529), 1, - anon_sym_LBRACK, - ACTIONS(3654), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3656), 1, - anon_sym_EQ, - STATE(401), 1, - sym_compound_statement, - STATE(989), 1, - sym__old_style_parameter_list, - STATE(1285), 1, + ACTIONS(3690), 1, + anon_sym_LBRACK, + STATE(1447), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1397), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54172] = 9, + ACTIONS(3692), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + [55453] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3658), 1, - anon_sym_COMMA, - ACTIONS(3662), 1, + ACTIONS(3690), 1, anon_sym_LBRACK, - STATE(1427), 1, + ACTIONS(3694), 1, + anon_sym_COMMA, + STATE(1447), 1, sym_parameter_list, - STATE(1543), 1, + STATE(1560), 1, aux_sym__type_definition_declarators_repeat1, - ACTIONS(3660), 2, + ACTIONS(3696), 2, anon_sym_SEMI, anon_sym___attribute__, - STATE(1382), 2, + STATE(1397), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54202] = 7, + [55483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - ACTIONS(3662), 1, + ACTIONS(3700), 1, anon_sym_LBRACK, - STATE(1427), 1, - sym_parameter_list, - STATE(1382), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3664), 4, + ACTIONS(3698), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - [54228] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3529), 1, - anon_sym_LBRACK, - ACTIONS(3654), 1, - anon_sym_LPAREN2, - ACTIONS(3656), 1, anon_sym_EQ, - STATE(419), 1, - sym_compound_statement, - STATE(989), 1, - sym__old_style_parameter_list, - STATE(1285), 1, - sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [54260] = 7, + anon_sym_asm, + anon_sym___asm__, + [55501] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3662), 1, + ACTIONS(3690), 1, anon_sym_LBRACK, - STATE(1427), 1, + STATE(1447), 1, sym_parameter_list, - STATE(1382), 2, + STATE(1397), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3666), 4, + ACTIONS(3702), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [54286] = 3, + [55527] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3670), 1, - anon_sym_LBRACK, - ACTIONS(3668), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(131), 1, anon_sym_LBRACE, + ACTIONS(3567), 1, + anon_sym_LBRACK, + ACTIONS(3704), 1, + anon_sym_LPAREN2, + ACTIONS(3706), 1, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [54304] = 3, + STATE(143), 1, + sym_compound_statement, + STATE(974), 1, + sym__old_style_parameter_list, + STATE(1292), 1, + sym_parameter_list, + STATE(1330), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3674), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - ACTIONS(3672), 9, + ACTIONS(3708), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107548,122 +109816,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54322] = 6, + [55577] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3678), 1, + ACTIONS(3714), 1, anon_sym_LBRACK, STATE(1521), 1, - sym_gnu_asm_output_operand, - STATE(1826), 1, + sym_gnu_asm_input_operand, + STATE(1829), 1, sym_string_literal, - ACTIONS(3676), 2, + ACTIONS(3712), 2, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54346] = 7, + [55601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - ACTIONS(3662), 1, + ACTIONS(3718), 1, anon_sym_LBRACK, - STATE(1427), 1, - sym_parameter_list, - STATE(1382), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3680), 4, + ACTIONS(3716), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - [54372] = 7, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [55619] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3662), 1, + ACTIONS(3690), 1, anon_sym_LBRACK, - STATE(1427), 1, + STATE(1447), 1, sym_parameter_list, - STATE(1382), 2, + STATE(1397), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3682), 4, + ACTIONS(3720), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [54398] = 3, + [55645] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 1, - anon_sym_LBRACK, - ACTIONS(3684), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(432), 1, anon_sym_LBRACE, + ACTIONS(3567), 1, + anon_sym_LBRACK, + ACTIONS(3704), 1, + anon_sym_LPAREN2, + ACTIONS(3706), 1, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [54416] = 10, + STATE(348), 1, + sym_compound_statement, + STATE(974), 1, + sym__old_style_parameter_list, + STATE(1292), 1, + sym_parameter_list, + STATE(1330), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55677] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(423), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - ACTIONS(3654), 1, + ACTIONS(3704), 1, anon_sym_LPAREN2, - ACTIONS(3656), 1, + ACTIONS(3706), 1, anon_sym_EQ, - STATE(336), 1, + STATE(363), 1, sym_compound_statement, - STATE(989), 1, + STATE(974), 1, sym__old_style_parameter_list, - STATE(1285), 1, + STATE(1292), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54448] = 5, + [55709] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3724), 1, + anon_sym_LBRACK, + STATE(1537), 1, + sym_gnu_asm_output_operand, + STATE(1863), 1, + sym_string_literal, + ACTIONS(3722), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [55733] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3690), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3567), 1, anon_sym_LBRACK, - STATE(1301), 2, + ACTIONS(3704), 1, + anon_sym_LPAREN2, + ACTIONS(3706), 1, + anon_sym_EQ, + STATE(432), 1, + sym_compound_statement, + STATE(974), 1, + sym__old_style_parameter_list, + STATE(1292), 1, + sym_parameter_list, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3688), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [54470] = 3, + [55765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3694), 1, + ACTIONS(3728), 1, anon_sym_LBRACK, - ACTIONS(3692), 9, + ACTIONS(3726), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107673,456 +109967,450 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54488] = 9, + [55783] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3732), 1, anon_sym_LBRACK, - ACTIONS(3656), 1, - anon_sym_EQ, - STATE(419), 1, - sym_compound_statement, - STATE(1285), 1, - sym_parameter_list, - STATE(1324), 2, + STATE(1307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54517] = 5, + ACTIONS(3730), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [55805] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3696), 1, + ACTIONS(3660), 1, sym_identifier, - ACTIONS(3700), 1, - sym_system_lib_string, - STATE(1908), 2, - sym_preproc_call_expression, + STATE(707), 1, sym_string_literal, - ACTIONS(3698), 5, + STATE(1673), 2, + sym__string, + sym_concatenated_string, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54538] = 9, + [55826] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(423), 1, + ACTIONS(432), 1, anon_sym_LBRACE, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - ACTIONS(3654), 1, + ACTIONS(3704), 1, anon_sym_LPAREN2, - STATE(326), 1, + STATE(337), 1, sym_compound_statement, - STATE(989), 1, + STATE(974), 1, sym__old_style_parameter_list, - STATE(1286), 1, + STATE(1291), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54567] = 9, + [55855] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - ACTIONS(3654), 1, + ACTIONS(3704), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(321), 1, sym_compound_statement, - STATE(989), 1, + STATE(974), 1, sym__old_style_parameter_list, - STATE(1286), 1, + STATE(1291), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54596] = 9, + [55884] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(371), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - ACTIONS(3656), 1, + ACTIONS(3706), 1, anon_sym_EQ, - STATE(401), 1, + STATE(143), 1, sym_compound_statement, - STATE(1285), 1, + STATE(1292), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54625] = 9, + [55913] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(371), 1, + ACTIONS(432), 1, anon_sym_LBRACE, - ACTIONS(3529), 1, - anon_sym_LBRACK, - ACTIONS(3654), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - STATE(382), 1, + ACTIONS(3567), 1, + anon_sym_LBRACK, + ACTIONS(3706), 1, + anon_sym_EQ, + STATE(348), 1, sym_compound_statement, - STATE(989), 1, - sym__old_style_parameter_list, - STATE(1286), 1, + STATE(1292), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54654] = 9, + [55942] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(3527), 1, + ACTIONS(1888), 1, anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(1890), 1, + anon_sym_STAR, + ACTIONS(2776), 1, anon_sym_LBRACK, - ACTIONS(3656), 1, - anon_sym_EQ, - STATE(149), 1, - sym_compound_statement, - STATE(1285), 1, + STATE(1494), 1, sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [54683] = 5, + STATE(1534), 1, + sym__abstract_declarator, + STATE(1495), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + [55967] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3610), 1, + ACTIONS(3734), 1, sym_identifier, - STATE(687), 1, + ACTIONS(3738), 1, + sym_system_lib_string, + STATE(1857), 2, + sym_preproc_call_expression, sym_string_literal, - STATE(1602), 2, - sym__string, - sym_concatenated_string, - ACTIONS(95), 5, + ACTIONS(3736), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54704] = 9, + [55988] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(423), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - ACTIONS(3656), 1, - anon_sym_EQ, - STATE(336), 1, + ACTIONS(3704), 1, + anon_sym_LPAREN2, + STATE(142), 1, sym_compound_statement, - STATE(1285), 1, + STATE(974), 1, + sym__old_style_parameter_list, + STATE(1291), 1, sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [54733] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3704), 1, - anon_sym_LBRACK, - STATE(1301), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3702), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - [54754] = 5, + [56017] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, + ACTIONS(3660), 1, sym_identifier, - ACTIONS(3708), 1, - sym_system_lib_string, - STATE(1931), 2, - sym_preproc_call_expression, + STATE(707), 1, sym_string_literal, - ACTIONS(3698), 5, + STATE(1583), 2, + sym__string, + sym_concatenated_string, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54775] = 7, + [56038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - ACTIONS(3662), 1, + ACTIONS(3718), 1, anon_sym_LBRACK, - STATE(1427), 1, - sym_parameter_list, - STATE(1382), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3710), 3, + ACTIONS(3716), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3740), 4, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, - [54800] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3610), 1, - sym_identifier, - STATE(687), 1, - sym_string_literal, - STATE(1649), 2, - sym__string, - sym_concatenated_string, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [54821] = 5, + anon_sym_asm, + anon_sym___asm__, + [56057] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3712), 1, + ACTIONS(3742), 1, sym_identifier, - ACTIONS(3714), 1, + ACTIONS(3744), 1, sym_system_lib_string, - STATE(1812), 2, + STATE(1997), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3698), 5, + ACTIONS(3736), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54842] = 5, + [56078] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3610), 1, - sym_identifier, - STATE(687), 1, - sym_string_literal, - STATE(1582), 2, - sym__string, - sym_concatenated_string, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [54863] = 5, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3565), 1, + anon_sym_LPAREN2, + ACTIONS(3567), 1, + anon_sym_LBRACK, + ACTIONS(3706), 1, + anon_sym_EQ, + STATE(432), 1, + sym_compound_statement, + STATE(1292), 1, + sym_parameter_list, + STATE(1330), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56107] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, + ACTIONS(3746), 1, sym_identifier, - ACTIONS(3718), 1, + ACTIONS(3748), 1, sym_system_lib_string, - STATE(1875), 2, + STATE(1786), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3698), 5, + ACTIONS(3736), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54884] = 9, + [56128] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - ACTIONS(3654), 1, + ACTIONS(3704), 1, anon_sym_LPAREN2, - STATE(414), 1, + STATE(410), 1, sym_compound_statement, - STATE(989), 1, + STATE(974), 1, sym__old_style_parameter_list, - STATE(1286), 1, + STATE(1291), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54913] = 7, + [56157] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(1881), 1, - anon_sym_STAR, - ACTIONS(2764), 1, + ACTIONS(3690), 1, anon_sym_LBRACK, - STATE(1488), 1, + STATE(1447), 1, sym_parameter_list, - STATE(1534), 1, - sym__abstract_declarator, - STATE(1487), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - [54938] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3640), 1, - anon_sym_LBRACK, - ACTIONS(3638), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3720), 4, + STATE(1397), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3750), 3, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [54957] = 8, + anon_sym___attribute__, + [56182] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3660), 1, + sym_identifier, + STATE(707), 1, + sym_string_literal, + STATE(1607), 2, + sym__string, + sym_concatenated_string, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [56203] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - STATE(145), 1, + ACTIONS(3706), 1, + anon_sym_EQ, + STATE(363), 1, sym_compound_statement, - STATE(1286), 1, + STATE(1292), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54983] = 3, + [56232] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3724), 1, + ACTIONS(3752), 1, + sym_identifier, + ACTIONS(3754), 1, + sym_system_lib_string, + STATE(1890), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3736), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [56253] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3758), 1, anon_sym_LBRACK, - ACTIONS(3722), 7, + STATE(1307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3756), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [54999] = 7, + [56274] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, + ACTIONS(376), 1, + anon_sym_LBRACE, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - STATE(1286), 1, + STATE(345), 1, + sym_compound_statement, + STATE(1291), 1, sym_parameter_list, - ACTIONS(3726), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1324), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55023] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3730), 1, - anon_sym_LBRACK, - ACTIONS(3728), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [55039] = 3, + [56300] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, - anon_sym_LBRACK, - ACTIONS(3732), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [55055] = 8, + ACTIONS(3760), 1, + sym_identifier, + ACTIONS(3765), 1, + aux_sym_preproc_elif_token1, + STATE(1399), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1894), 1, + sym_enumerator, + ACTIONS(3763), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [56322] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(423), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - STATE(326), 1, + STATE(411), 1, sym_compound_statement, - STATE(1286), 1, + STATE(1291), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55081] = 3, + [56348] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3738), 1, + ACTIONS(3714), 1, anon_sym_LBRACK, - ACTIONS(3736), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [55097] = 3, + STATE(1591), 1, + sym_gnu_asm_input_operand, + STATE(1829), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [56368] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3742), 1, + ACTIONS(3724), 1, + anon_sym_LBRACK, + STATE(1599), 1, + sym_gnu_asm_output_operand, + STATE(1863), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [56388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3769), 1, anon_sym_LBRACK, - ACTIONS(3740), 7, + ACTIONS(3767), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108130,102 +110418,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [55113] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - ACTIONS(3529), 1, - anon_sym_LBRACK, - STATE(433), 1, - sym_compound_statement, - STATE(1285), 1, - sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55139] = 8, + [56404] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(432), 1, anon_sym_LBRACE, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - STATE(139), 1, + STATE(337), 1, sym_compound_statement, - STATE(1286), 1, + STATE(1291), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55165] = 8, + [56430] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(371), 1, - anon_sym_LBRACE, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - STATE(392), 1, - sym_compound_statement, - STATE(1285), 1, + STATE(1291), 1, sym_parameter_list, - STATE(1324), 2, + ACTIONS(3771), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55191] = 8, + [56454] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(371), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - STATE(347), 1, + STATE(131), 1, sym_compound_statement, - STATE(1286), 1, + STATE(1292), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55217] = 8, + [56480] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(423), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - STATE(309), 1, + STATE(407), 1, sym_compound_statement, - STATE(1286), 1, + STATE(1292), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55243] = 3, + [56506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 1, + ACTIONS(3775), 1, anon_sym_LBRACK, - ACTIONS(3744), 7, + ACTIONS(3773), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108233,30 +110502,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [55259] = 8, + [56522] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(432), 1, anon_sym_LBRACE, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - STATE(427), 1, + STATE(327), 1, sym_compound_statement, - STATE(1286), 1, + STATE(1291), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55285] = 3, + [56548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3750), 1, + ACTIONS(3779), 1, anon_sym_LBRACK, - ACTIONS(3748), 7, + ACTIONS(3777), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108264,129 +110533,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [55301] = 8, + [56564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3783), 1, anon_sym_LBRACK, - STATE(414), 1, - sym_compound_statement, - STATE(1286), 1, - sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55327] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3752), 1, - sym_identifier, - ACTIONS(3757), 1, - aux_sym_preproc_elif_token1, - STATE(1409), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, - sym_enumerator, - ACTIONS(3755), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [55349] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3759), 1, - sym_identifier, - ACTIONS(3764), 1, - aux_sym_preproc_elif_token1, - STATE(1410), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(3762), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [55369] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3768), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3770), 1, - anon_sym_EQ, - ACTIONS(3766), 6, + ACTIONS(3781), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [55387] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(423), 1, - anon_sym_LBRACE, - ACTIONS(3527), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3529), 1, - anon_sym_LBRACK, - STATE(328), 1, - sym_compound_statement, - STATE(1285), 1, - sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55413] = 8, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [56580] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(371), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - STATE(382), 1, + STATE(142), 1, sym_compound_statement, - STATE(1286), 1, + STATE(1291), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55439] = 8, + [56606] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - STATE(128), 1, + STATE(321), 1, sym_compound_statement, - STATE(1285), 1, + STATE(1291), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55465] = 3, + [56632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3774), 1, + ACTIONS(3787), 1, anon_sym_LBRACK, - ACTIONS(3772), 7, + ACTIONS(3785), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108394,27 +110595,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [55481] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3644), 1, - anon_sym_LBRACK, - STATE(1675), 1, - sym_gnu_asm_input_operand, - STATE(1990), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [55501] = 3, + [56648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 1, + ACTIONS(3791), 1, anon_sym_LBRACK, - ACTIONS(3776), 7, + ACTIONS(3789), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108422,6106 +110608,6259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [55517] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3678), 1, - anon_sym_LBRACK, - STATE(1637), 1, - sym_gnu_asm_output_operand, - STATE(1826), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [55537] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3782), 1, - anon_sym_LBRACK, - ACTIONS(3780), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [55552] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3786), 1, - anon_sym_LBRACK, - ACTIONS(3784), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [55567] = 7, + [56664] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, + ACTIONS(131), 1, + anon_sym_LBRACE, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - ACTIONS(3788), 1, - anon_sym_RPAREN, - STATE(1286), 1, + STATE(155), 1, + sym_compound_statement, + STATE(1291), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1330), 2, sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55590] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3792), 1, - anon_sym_LBRACK, - ACTIONS(3790), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [55605] = 3, + aux_sym_attributed_declarator_repeat1, + [56690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(3795), 1, anon_sym_LBRACK, - ACTIONS(3794), 6, + ACTIONS(3793), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55620] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3461), 1, - anon_sym___attribute__, - STATE(1434), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3486), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [55637] = 7, + anon_sym_COLON, + [56706] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, + ACTIONS(432), 1, + anon_sym_LBRACE, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3559), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - ACTIONS(3798), 1, - anon_sym_RPAREN, - STATE(1395), 1, + STATE(317), 1, + sym_compound_statement, + STATE(1292), 1, sym_parameter_list, - STATE(1371), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55660] = 3, + [56732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3802), 1, + ACTIONS(3799), 1, anon_sym_LBRACK, - ACTIONS(3800), 6, + ACTIONS(3797), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55675] = 3, + anon_sym_COLON, + [56748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(3803), 1, anon_sym_LBRACK, - ACTIONS(3804), 6, + ACTIONS(3801), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55690] = 7, + anon_sym_COLON, + [56764] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3807), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3809), 1, + anon_sym_EQ, + ACTIONS(3805), 6, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [56782] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(376), 1, + anon_sym_LBRACE, + ACTIONS(3565), 1, + anon_sym_LPAREN2, + ACTIONS(3567), 1, + anon_sym_LBRACK, + STATE(324), 1, + sym_compound_statement, + STATE(1292), 1, + sym_parameter_list, + STATE(1330), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56808] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3559), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - ACTIONS(3808), 1, - anon_sym_RPAREN, - STATE(1395), 1, + STATE(410), 1, + sym_compound_statement, + STATE(1291), 1, sym_parameter_list, - STATE(1371), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55713] = 5, + [56834] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3811), 1, + sym_identifier, + ACTIONS(3816), 1, + aux_sym_preproc_elif_token1, + STATE(1424), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(3814), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [56854] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2397), 1, + anon_sym_LBRACE, + ACTIONS(3818), 1, + sym_identifier, + STATE(783), 1, + sym_field_declaration_list, + STATE(1487), 1, + sym_attribute_specifier, + STATE(1585), 1, + sym_ms_declspec_modifier, + [56879] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 1, + ACTIONS(1854), 1, anon_sym_LBRACK, - ACTIONS(3810), 1, + ACTIONS(3820), 1, anon_sym_EQ, - ACTIONS(3812), 1, + ACTIONS(3822), 1, anon_sym_DOT, STATE(1440), 4, sym_subscript_designator, sym_subscript_range_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [55732] = 7, + [56898] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3662), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_RPAREN, - STATE(1427), 1, + ACTIONS(3706), 1, + anon_sym_EQ, + STATE(1292), 1, sym_parameter_list, - STATE(1382), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55755] = 3, + [56921] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3818), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3565), 1, + anon_sym_LPAREN2, + ACTIONS(3597), 1, anon_sym_LBRACK, - ACTIONS(3816), 6, - anon_sym_COMMA, + ACTIONS(3824), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [55770] = 7, + STATE(1417), 1, + sym_parameter_list, + STATE(1378), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56944] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - ACTIONS(3820), 1, + ACTIONS(3826), 1, anon_sym_RPAREN, - STATE(1286), 1, + STATE(1291), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55793] = 8, + [56967] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2368), 1, - anon_sym_LBRACE, - ACTIONS(3822), 1, - sym_identifier, - STATE(792), 1, - sym_field_declaration_list, - STATE(1486), 1, - sym_attribute_specifier, - STATE(1588), 1, - sym_ms_declspec_modifier, - [55818] = 4, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3565), 1, + anon_sym_LPAREN2, + ACTIONS(3597), 1, + anon_sym_LBRACK, + ACTIONS(3828), 1, + anon_sym_RPAREN, + STATE(1417), 1, + sym_parameter_list, + STATE(1378), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56990] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3826), 1, + ACTIONS(3487), 1, anon_sym___attribute__, - STATE(1434), 2, + STATE(1443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(3824), 4, + ACTIONS(3830), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [55835] = 3, + [57007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3831), 1, + ACTIONS(3834), 1, anon_sym_LBRACK, - ACTIONS(3829), 6, + ACTIONS(3832), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55850] = 4, + [57022] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, - anon_sym___attribute__, - STATE(1434), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3833), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [55867] = 7, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3565), 1, + anon_sym_LPAREN2, + ACTIONS(3690), 1, + anon_sym_LBRACK, + ACTIONS(3836), 1, + anon_sym_RPAREN, + STATE(1447), 1, + sym_parameter_list, + STATE(1397), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [57045] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3662), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - ACTIONS(3835), 1, + ACTIONS(3838), 1, anon_sym_RPAREN, - STATE(1427), 1, + STATE(1291), 1, sym_parameter_list, - STATE(1382), 2, + STATE(1330), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55890] = 3, + [57068] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3842), 1, + anon_sym_LBRACK, + ACTIONS(3840), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [57083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3846), 1, + anon_sym_LBRACK, + ACTIONS(3844), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [57098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3839), 1, + ACTIONS(3850), 1, anon_sym_LBRACK, - ACTIONS(3837), 6, + ACTIONS(3848), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55905] = 7, + [57113] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3690), 1, anon_sym_LBRACK, - ACTIONS(3656), 1, - anon_sym_EQ, - STATE(1285), 1, + ACTIONS(3852), 1, + anon_sym_RPAREN, + STATE(1447), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1397), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55928] = 5, + [57136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3856), 1, + anon_sym_LBRACK, + ACTIONS(3854), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [57151] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3841), 1, + ACTIONS(3858), 1, anon_sym_LBRACK, - ACTIONS(3844), 1, + ACTIONS(3861), 1, anon_sym_EQ, - ACTIONS(3846), 1, + ACTIONS(3863), 1, anon_sym_DOT, STATE(1440), 4, sym_subscript_designator, sym_subscript_range_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [55947] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3851), 1, - anon_sym_LBRACK, - ACTIONS(3849), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [55962] = 4, + [57170] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, + ACTIONS(3868), 1, anon_sym_COMMA, - ACTIONS(3857), 1, + ACTIONS(3870), 1, aux_sym_preproc_elif_token1, - ACTIONS(3853), 5, + ACTIONS(3866), 5, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [55979] = 4, + [57187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3874), 1, + anon_sym_LBRACK, + ACTIONS(3872), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(1460), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3861), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [55995] = 6, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [57202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3878), 1, + anon_sym___attribute__, + STATE(1443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3876), 4, anon_sym_COMMA, - ACTIONS(3865), 1, anon_sym_SEMI, - STATE(1585), 1, - aux_sym_declaration_repeat1, - STATE(1587), 1, - sym_gnu_asm_expression, - ACTIONS(3867), 2, anon_sym_asm, anon_sym___asm__, - [56015] = 4, + [57219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3869), 1, + ACTIONS(3883), 1, + anon_sym_LBRACK, + ACTIONS(3881), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(1445), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3871), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [56031] = 5, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [57234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - ACTIONS(3876), 1, + ACTIONS(3887), 1, anon_sym_LBRACK, - STATE(1492), 1, - sym_parameter_list, - ACTIONS(3874), 3, + ACTIONS(3885), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [56049] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3878), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(3880), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [56063] = 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [57249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - ACTIONS(3876), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - STATE(1492), 1, - sym_parameter_list, - ACTIONS(3882), 3, + ACTIONS(3889), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [56081] = 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [57264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - ACTIONS(3529), 1, + ACTIONS(3895), 1, anon_sym_LBRACK, - STATE(1285), 1, - sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [56101] = 6, + ACTIONS(3893), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [57279] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3487), 1, + anon_sym___attribute__, + STATE(1443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3546), 4, anon_sym_COMMA, - ACTIONS(3884), 1, anon_sym_SEMI, - STATE(1575), 1, - aux_sym_declaration_repeat1, - STATE(1576), 1, - sym_gnu_asm_expression, - ACTIONS(3867), 2, anon_sym_asm, anon_sym___asm__, - [56121] = 3, + [57296] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3565), 1, + anon_sym_LPAREN2, + ACTIONS(3899), 1, + anon_sym_LBRACK, + STATE(1505), 1, + sym_parameter_list, + ACTIONS(3897), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [57314] = 3, ACTIONS(3), 1, sym_comment, - STATE(1871), 1, + STATE(1969), 1, sym_string_literal, - ACTIONS(95), 5, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [57328] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1940), 1, + sym_string_literal, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [56135] = 3, + [57342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 2, + ACTIONS(3901), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3888), 4, + ACTIONS(3903), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56149] = 3, + [57356] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3765), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3763), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [57370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 2, + ACTIONS(3905), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3892), 4, + ACTIONS(3907), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56163] = 3, + [57384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 2, + ACTIONS(3905), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3894), 4, + ACTIONS(3907), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56177] = 3, + [57398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 2, + ACTIONS(3909), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3898), 4, + ACTIONS(3911), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56191] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(664), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [56205] = 3, + [57412] = 3, ACTIONS(3), 1, sym_comment, - STATE(1849), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [56219] = 6, + ACTIONS(3913), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(3915), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [57426] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(3900), 1, + ACTIONS(3919), 1, anon_sym_SEMI, - STATE(1592), 1, - sym_gnu_asm_expression, - STATE(1598), 1, + STATE(1683), 1, aux_sym_declaration_repeat1, - ACTIONS(3867), 2, + STATE(1685), 1, + sym_gnu_asm_expression, + ACTIONS(3921), 2, anon_sym_asm, anon_sym___asm__, - [56239] = 5, + [57446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - ACTIONS(3876), 1, - anon_sym_LBRACK, - STATE(1492), 1, - sym_parameter_list, - ACTIONS(3902), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [56257] = 4, + ACTIONS(3923), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(3925), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [57460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3904), 1, + ACTIONS(3927), 1, anon_sym_LPAREN2, - STATE(1445), 2, + STATE(1477), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3861), 3, + ACTIONS(3929), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [56273] = 6, + [57476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_COMMA, - ACTIONS(3906), 1, - anon_sym_SEMI, - STATE(1639), 1, - sym_gnu_asm_expression, - STATE(1662), 1, - aux_sym_declaration_repeat1, - ACTIONS(3867), 2, - anon_sym_asm, - anon_sym___asm__, - [56293] = 3, + STATE(670), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [57490] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3931), 1, + anon_sym_LPAREN2, + STATE(1462), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3933), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [57506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 2, + ACTIONS(3936), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3910), 4, + ACTIONS(3938), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56307] = 6, + [57520] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3565), 1, + anon_sym_LPAREN2, + ACTIONS(3567), 1, + anon_sym_LBRACK, + STATE(1292), 1, + sym_parameter_list, + STATE(1330), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [57540] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3565), 1, + anon_sym_LPAREN2, + ACTIONS(3899), 1, + anon_sym_LBRACK, + STATE(1505), 1, + sym_parameter_list, + ACTIONS(3940), 3, anon_sym_COMMA, - ACTIONS(3912), 1, - anon_sym_SEMI, - STATE(1566), 1, - aux_sym_declaration_repeat1, - STATE(1625), 1, - sym_gnu_asm_expression, - ACTIONS(3867), 2, - anon_sym_asm, - anon_sym___asm__, - [56327] = 3, + anon_sym_RPAREN, + anon_sym_COLON, + [57558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3914), 2, + ACTIONS(3942), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3916), 4, + ACTIONS(3944), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56341] = 3, + [57572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3757), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3755), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(3644), 2, + anon_sym_RBRACE, sym_identifier, - [56355] = 6, + ACTIONS(3946), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [57586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3948), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(3950), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [57600] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3565), 1, + anon_sym_LPAREN2, + ACTIONS(3899), 1, + anon_sym_LBRACK, + STATE(1505), 1, + sym_parameter_list, + ACTIONS(3952), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [57618] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(3918), 1, + ACTIONS(3954), 1, anon_sym_SEMI, - STATE(1608), 1, + STATE(1647), 1, + aux_sym_declaration_repeat1, + STATE(1669), 1, sym_gnu_asm_expression, - STATE(1609), 1, + ACTIONS(3921), 2, + anon_sym_asm, + anon_sym___asm__, + [57638] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3917), 1, + anon_sym_COMMA, + ACTIONS(3956), 1, + anon_sym_SEMI, + STATE(1626), 1, aux_sym_declaration_repeat1, - ACTIONS(3867), 2, + STATE(1627), 1, + sym_gnu_asm_expression, + ACTIONS(3921), 2, anon_sym_asm, anon_sym___asm__, - [56375] = 3, + [57658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3920), 2, + ACTIONS(3948), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3922), 4, + ACTIONS(3950), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56389] = 6, + [57672] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3565), 1, + anon_sym_LPAREN2, + ACTIONS(3899), 1, + anon_sym_LBRACK, + STATE(1505), 1, + sym_parameter_list, + ACTIONS(3958), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [57690] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(3924), 1, + ACTIONS(3960), 1, anon_sym_SEMI, - STATE(1652), 1, - sym_gnu_asm_expression, - STATE(1653), 1, + STATE(1631), 1, aux_sym_declaration_repeat1, - ACTIONS(3867), 2, + STATE(1632), 1, + sym_gnu_asm_expression, + ACTIONS(3921), 2, anon_sym_asm, anon_sym___asm__, - [56409] = 5, + [57710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3876), 1, + ACTIONS(3899), 1, anon_sym_LBRACK, - STATE(1492), 1, + STATE(1505), 1, sym_parameter_list, - ACTIONS(3926), 3, + ACTIONS(3962), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [56427] = 6, + [57728] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(3928), 1, + ACTIONS(3964), 1, anon_sym_SEMI, STATE(1571), 1, - aux_sym_declaration_repeat1, - STATE(1572), 1, sym_gnu_asm_expression, - ACTIONS(3867), 2, + STATE(1661), 1, + aux_sym_declaration_repeat1, + ACTIONS(3921), 2, anon_sym_asm, anon_sym___asm__, - [56447] = 3, + [57748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3878), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(3880), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [56461] = 6, + ACTIONS(3966), 1, + anon_sym_LPAREN2, + STATE(1462), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3929), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [57764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(3930), 1, + ACTIONS(3968), 1, anon_sym_SEMI, - STATE(1628), 1, - sym_gnu_asm_expression, - STATE(1636), 1, + STATE(1642), 1, aux_sym_declaration_repeat1, - ACTIONS(3867), 2, + STATE(1643), 1, + sym_gnu_asm_expression, + ACTIONS(3921), 2, anon_sym_asm, anon_sym___asm__, - [56481] = 5, + [57784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - ACTIONS(3876), 1, - anon_sym_LBRACK, - STATE(1492), 1, - sym_parameter_list, - ACTIONS(3932), 3, + ACTIONS(3917), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [56499] = 5, + ACTIONS(3970), 1, + anon_sym_SEMI, + STATE(1646), 1, + aux_sym_declaration_repeat1, + STATE(1648), 1, + sym_gnu_asm_expression, + ACTIONS(3921), 2, + anon_sym_asm, + anon_sym___asm__, + [57804] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3876), 1, + ACTIONS(3899), 1, anon_sym_LBRACK, - STATE(1492), 1, + STATE(1505), 1, sym_parameter_list, - ACTIONS(3934), 3, + ACTIONS(3972), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [56517] = 5, + [57822] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - ACTIONS(3876), 1, - anon_sym_LBRACK, - STATE(1492), 1, - sym_parameter_list, - ACTIONS(3936), 3, + ACTIONS(3917), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [56535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3938), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(3940), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [56549] = 6, + ACTIONS(3974), 1, + anon_sym_SEMI, + STATE(1665), 1, + aux_sym_declaration_repeat1, + STATE(1666), 1, + sym_gnu_asm_expression, + ACTIONS(3921), 2, + anon_sym_asm, + anon_sym___asm__, + [57842] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(3942), 1, + ACTIONS(3976), 1, anon_sym_SEMI, - STATE(1577), 1, + STATE(1615), 1, aux_sym_declaration_repeat1, - STATE(1578), 1, + STATE(1616), 1, sym_gnu_asm_expression, - ACTIONS(3867), 2, + ACTIONS(3921), 2, anon_sym_asm, anon_sym___asm__, - [56569] = 3, + [57862] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(3898), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [56583] = 6, + ACTIONS(3917), 1, + anon_sym_COMMA, + ACTIONS(3978), 1, + anon_sym_SEMI, + STATE(1657), 1, + aux_sym_declaration_repeat1, + STATE(1658), 1, + sym_gnu_asm_expression, + ACTIONS(3921), 2, + anon_sym_asm, + anon_sym___asm__, + [57882] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(3944), 1, + ACTIONS(3980), 1, anon_sym_SEMI, - STATE(1681), 1, + STATE(1688), 1, sym_gnu_asm_expression, - STATE(1682), 1, + STATE(1690), 1, aux_sym_declaration_repeat1, - ACTIONS(3867), 2, + ACTIONS(3921), 2, anon_sym_asm, anon_sym___asm__, - [56603] = 6, + [57902] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(3946), 1, + ACTIONS(3982), 1, anon_sym_SEMI, - STATE(1601), 1, + STATE(1613), 1, sym_gnu_asm_expression, - STATE(1605), 1, + STATE(1618), 1, aux_sym_declaration_repeat1, - ACTIONS(3867), 2, + ACTIONS(3921), 2, anon_sym_asm, anon_sym___asm__, - [56623] = 2, + [57922] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3948), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3565), 1, anon_sym_LPAREN2, + ACTIONS(3899), 1, anon_sym_LBRACK, + STATE(1505), 1, + sym_parameter_list, + ACTIONS(3984), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - [56634] = 2, + [57940] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3950), 5, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2397), 1, + anon_sym_LBRACE, + ACTIONS(3986), 1, + sym_identifier, + STATE(779), 1, + sym_field_declaration_list, + STATE(1606), 1, + sym_ms_declspec_modifier, + [57959] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1775), 1, + sym_gnu_asm_expression, + ACTIONS(3921), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3988), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [56645] = 2, + anon_sym_SEMI, + [57974] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2397), 1, + anon_sym_LBRACE, + ACTIONS(3990), 1, + sym_identifier, + STATE(775), 1, + sym_field_declaration_list, + STATE(1586), 1, + sym_ms_declspec_modifier, + [57993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 5, + ACTIONS(3992), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56656] = 2, + [58004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3954), 5, + ACTIONS(3994), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56667] = 5, + [58015] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 1, + sym_identifier, + ACTIONS(3996), 1, + aux_sym_preproc_if_token2, + STATE(1441), 1, + sym_enumerator, + STATE(1556), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1559), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [58034] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(3958), 1, + ACTIONS(4000), 1, anon_sym_COLON_COLON, - STATE(1728), 1, + STATE(1734), 1, sym_argument_list, - ACTIONS(3956), 2, + ACTIONS(3998), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [56684] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2368), 1, - anon_sym_LBRACE, - ACTIONS(3960), 1, - sym_identifier, - STATE(784), 1, - sym_field_declaration_list, - STATE(1599), 1, - sym_ms_declspec_modifier, - [56703] = 2, + [58051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3962), 5, + ACTIONS(4002), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56714] = 2, + [58062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3964), 5, + ACTIONS(4004), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56725] = 2, + [58073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3966), 5, + ACTIONS(4006), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56736] = 5, + [58084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, + ACTIONS(4008), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3876), 1, anon_sym_LBRACK, - STATE(1492), 1, - sym_parameter_list, - ACTIONS(3726), 2, + anon_sym_COLON, + [58095] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4010), 5, anon_sym_COMMA, anon_sym_RPAREN, - [56753] = 4, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [58106] = 2, ACTIONS(3), 1, sym_comment, - STATE(1698), 1, - sym_gnu_asm_expression, - ACTIONS(3867), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(3968), 2, + ACTIONS(4012), 5, anon_sym_COMMA, - anon_sym_SEMI, - [56768] = 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [58117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3970), 5, + ACTIONS(4014), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56779] = 2, + [58128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3972), 5, + ACTIONS(4016), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56790] = 6, + [58139] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, - sym_identifier, - ACTIONS(3974), 1, - aux_sym_preproc_if_token2, - STATE(1442), 1, - sym_enumerator, - STATE(1553), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1554), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - [56809] = 4, + ACTIONS(3565), 1, + anon_sym_LPAREN2, + ACTIONS(3899), 1, + anon_sym_LBRACK, + STATE(1505), 1, + sym_parameter_list, + ACTIONS(3771), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58156] = 2, ACTIONS(3), 1, sym_comment, - STATE(1766), 1, + ACTIONS(4018), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [58167] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1747), 1, sym_gnu_asm_expression, - ACTIONS(3867), 2, + ACTIONS(3921), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(3976), 2, + ACTIONS(4020), 2, anon_sym_COMMA, anon_sym_SEMI, - [56824] = 2, + [58182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 5, + ACTIONS(4022), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56835] = 2, + [58193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3980), 5, + ACTIONS(4024), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56846] = 2, + [58204] = 5, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4026), 1, + aux_sym_preproc_include_token2, + ACTIONS(4028), 1, + anon_sym_LPAREN, + ACTIONS(4030), 1, + sym_preproc_arg, + STATE(1756), 1, + sym_preproc_params, + [58220] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3982), 5, + ACTIONS(3593), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [56857] = 6, + STATE(1538), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4032), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [58234] = 5, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4028), 1, + anon_sym_LPAREN, + ACTIONS(4034), 1, + aux_sym_preproc_include_token2, + ACTIONS(4036), 1, + sym_preproc_arg, + STATE(1776), 1, + sym_preproc_params, + [58250] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2368), 1, - anon_sym_LBRACE, - ACTIONS(3984), 1, + ACTIONS(3583), 1, sym_identifier, - STATE(803), 1, - sym_field_declaration_list, - STATE(1603), 1, - sym_ms_declspec_modifier, - [56876] = 2, + ACTIONS(3996), 1, + aux_sym_preproc_if_token2, + STATE(1556), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1894), 1, + sym_enumerator, + [58266] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3986), 5, + ACTIONS(4038), 1, anon_sym_COMMA, + STATE(1569), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4040), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, anon_sym_COLON, - [56887] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3988), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [56897] = 4, - ACTIONS(3230), 1, + [58280] = 5, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3990), 1, - anon_sym_SQUOTE, - STATE(1560), 1, - aux_sym_char_literal_repeat1, - ACTIONS(3992), 2, - aux_sym_char_literal_token1, + ACTIONS(4042), 1, + anon_sym_DQUOTE, + ACTIONS(4044), 1, + aux_sym_string_literal_token1, + ACTIONS(4046), 1, sym_escape_sequence, - [56911] = 4, + STATE(1535), 1, + aux_sym_string_literal_repeat1, + [58296] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, - anon_sym___attribute__, - ACTIONS(3994), 1, - anon_sym_SEMI, - STATE(1434), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [56925] = 4, + ACTIONS(4048), 1, + anon_sym___except, + ACTIONS(4050), 1, + anon_sym___finally, + STATE(110), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [58310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, + ACTIONS(3487), 1, anon_sym___attribute__, - ACTIONS(3996), 1, + ACTIONS(4052), 1, anon_sym_SEMI, - STATE(1434), 2, + STATE(1443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [56939] = 4, + [58324] = 4, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4054), 1, + anon_sym_SQUOTE, + STATE(1546), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4056), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [58338] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, + ACTIONS(3487), 1, anon_sym___attribute__, - ACTIONS(3998), 1, + ACTIONS(4058), 1, anon_sym_SEMI, - STATE(1503), 2, + STATE(1561), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [56953] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4000), 1, - anon_sym_COMMA, - ACTIONS(4002), 1, - anon_sym_RPAREN, - STATE(1569), 1, - aux_sym_parameter_list_repeat1, - STATE(1658), 1, - aux_sym__old_style_parameter_list_repeat1, - [56969] = 4, + [58352] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 1, + ACTIONS(4060), 1, anon_sym___except, - ACTIONS(4006), 1, + ACTIONS(4062), 1, anon_sym___finally, - STATE(191), 2, + STATE(229), 2, sym_seh_except_clause, sym_seh_finally_clause, - [56983] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3461), 1, - anon_sym___attribute__, - ACTIONS(4008), 1, - anon_sym_SEMI, - STATE(1504), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [56997] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4010), 1, - anon_sym_COMMA, - STATE(1533), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4012), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [57011] = 4, + [58366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, + ACTIONS(3487), 1, anon_sym___attribute__, - ACTIONS(4014), 1, + ACTIONS(4064), 1, anon_sym_SEMI, - STATE(1535), 2, + STATE(1543), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57025] = 4, + [58380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, + ACTIONS(3487), 1, anon_sym___attribute__, - ACTIONS(4016), 1, + ACTIONS(4066), 1, anon_sym_SEMI, - STATE(1434), 2, + STATE(1443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57039] = 4, - ACTIONS(3), 1, + [58394] = 5, + ACTIONS(3294), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_COMMA, - STATE(1512), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4021), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [57053] = 4, + ACTIONS(4028), 1, + anon_sym_LPAREN, + ACTIONS(4068), 1, + aux_sym_preproc_include_token2, + ACTIONS(4070), 1, + sym_preproc_arg, + STATE(1765), 1, + sym_preproc_params, + [58410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4023), 1, + ACTIONS(4072), 1, anon_sym_COMMA, - STATE(1532), 1, + STATE(1570), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4025), 2, + ACTIONS(4074), 2, anon_sym_RPAREN, anon_sym_COLON, - [57067] = 5, - ACTIONS(3230), 1, + [58424] = 5, + ACTIONS(3294), 1, sym_comment, - ACTIONS(4027), 1, - aux_sym_preproc_include_token2, - ACTIONS(4029), 1, + ACTIONS(4028), 1, anon_sym_LPAREN, - ACTIONS(4031), 1, + ACTIONS(4076), 1, + aux_sym_preproc_include_token2, + ACTIONS(4078), 1, sym_preproc_arg, - STATE(1746), 1, + STATE(1763), 1, sym_preproc_params, - [57083] = 5, - ACTIONS(3230), 1, + [58440] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4033), 1, - anon_sym_DQUOTE, - ACTIONS(4035), 1, - aux_sym_string_literal_token1, - ACTIONS(4037), 1, - sym_escape_sequence, - STATE(1557), 1, - aux_sym_string_literal_repeat1, - [57099] = 4, + ACTIONS(4080), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [58450] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, + ACTIONS(4082), 4, anon_sym_COMMA, - STATE(1512), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4039), 2, anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [58460] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3487), 1, anon_sym___attribute__, - [57113] = 5, - ACTIONS(3230), 1, + ACTIONS(4084), 1, + anon_sym_SEMI, + STATE(1519), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58474] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4029), 1, - anon_sym_LPAREN, - ACTIONS(4041), 1, - aux_sym_preproc_include_token2, - ACTIONS(4043), 1, - sym_preproc_arg, - STATE(1755), 1, - sym_preproc_params, - [57129] = 5, - ACTIONS(3230), 1, + ACTIONS(3518), 1, + sym_identifier, + ACTIONS(4086), 1, + aux_sym_preproc_if_token2, + STATE(1559), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [58488] = 5, + ACTIONS(3294), 1, sym_comment, - ACTIONS(4029), 1, - anon_sym_LPAREN, - ACTIONS(4045), 1, - aux_sym_preproc_include_token2, - ACTIONS(4047), 1, - sym_preproc_arg, - STATE(1727), 1, - sym_preproc_params, - [57145] = 4, + ACTIONS(4044), 1, + aux_sym_string_literal_token1, + ACTIONS(4046), 1, + sym_escape_sequence, + ACTIONS(4088), 1, + anon_sym_DQUOTE, + STATE(1535), 1, + aux_sym_string_literal_repeat1, + [58504] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4049), 1, + ACTIONS(4090), 1, anon_sym_COMMA, - STATE(1519), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4052), 2, + STATE(1554), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4092), 2, anon_sym_RPAREN, anon_sym_COLON, - [57159] = 4, + [58518] = 4, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4094), 1, + anon_sym_SQUOTE, + STATE(1546), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4056), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [58532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4054), 1, + ACTIONS(4090), 1, anon_sym_COMMA, - STATE(1519), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4056), 2, + STATE(1528), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4096), 2, anon_sym_RPAREN, anon_sym_COLON, - [57173] = 4, + [58546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4054), 1, + ACTIONS(3487), 1, + anon_sym___attribute__, + ACTIONS(4098), 1, + anon_sym_SEMI, + STATE(1443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58560] = 5, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4028), 1, + anon_sym_LPAREN, + ACTIONS(4100), 1, + aux_sym_preproc_include_token2, + ACTIONS(4102), 1, + sym_preproc_arg, + STATE(1694), 1, + sym_preproc_params, + [58576] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4104), 1, anon_sym_COMMA, - STATE(1520), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4058), 2, + STATE(1533), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4107), 2, anon_sym_RPAREN, anon_sym_COLON, - [57187] = 4, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4060), 1, - anon_sym_SQUOTE, - STATE(1560), 1, - aux_sym_char_literal_repeat1, - ACTIONS(3992), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [57201] = 5, + [58590] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, + ACTIONS(3565), 1, anon_sym_LPAREN2, - ACTIONS(3876), 1, + ACTIONS(3899), 1, anon_sym_LBRACK, - ACTIONS(4062), 1, + ACTIONS(4109), 1, anon_sym_RPAREN, - STATE(1492), 1, + STATE(1505), 1, sym_parameter_list, - [57217] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4064), 4, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [57227] = 5, - ACTIONS(3230), 1, + [58606] = 5, + ACTIONS(3294), 1, sym_comment, - ACTIONS(4066), 1, + ACTIONS(4111), 1, anon_sym_DQUOTE, - ACTIONS(4068), 1, + ACTIONS(4113), 1, aux_sym_string_literal_token1, - ACTIONS(4070), 1, + ACTIONS(4116), 1, sym_escape_sequence, - STATE(1515), 1, + STATE(1535), 1, aux_sym_string_literal_repeat1, - [57243] = 5, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4029), 1, - anon_sym_LPAREN, - ACTIONS(4072), 1, - aux_sym_preproc_include_token2, - ACTIONS(4074), 1, - sym_preproc_arg, - STATE(1699), 1, - sym_preproc_params, - [57259] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3461), 1, - anon_sym___attribute__, - ACTIONS(4076), 1, - anon_sym_SEMI, - STATE(1434), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [57273] = 5, - ACTIONS(3230), 1, + [58622] = 5, + ACTIONS(3294), 1, sym_comment, - ACTIONS(4078), 1, + ACTIONS(4119), 1, anon_sym_DQUOTE, - ACTIONS(4080), 1, + ACTIONS(4121), 1, aux_sym_string_literal_token1, - ACTIONS(4082), 1, + ACTIONS(4123), 1, sym_escape_sequence, - STATE(1564), 1, + STATE(1527), 1, aux_sym_string_literal_repeat1, - [57289] = 4, + [58638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4023), 1, + ACTIONS(4038), 1, anon_sym_COMMA, - STATE(1513), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4084), 2, + STATE(1511), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4125), 2, anon_sym_RPAREN, anon_sym_COLON, - [57303] = 4, + [58652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, - anon_sym___attribute__, - ACTIONS(4086), 1, + ACTIONS(4127), 1, + anon_sym_COMMA, + STATE(1538), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4130), 2, anon_sym_SEMI, - STATE(1434), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [57317] = 4, + anon_sym___attribute__, + [58666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, + ACTIONS(3487), 1, anon_sym___attribute__, - ACTIONS(4088), 1, + ACTIONS(4132), 1, anon_sym_SEMI, - STATE(1527), 2, + STATE(1548), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57331] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 1, - anon_sym_COMMA, - STATE(1532), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4093), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [57345] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4010), 1, - anon_sym_COMMA, - STATE(1539), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4095), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [57359] = 5, + [58680] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, - anon_sym_LPAREN2, - ACTIONS(3876), 1, - anon_sym_LBRACK, - ACTIONS(4097), 1, - anon_sym_RPAREN, - STATE(1492), 1, - sym_parameter_list, - [57375] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3461), 1, + ACTIONS(3487), 1, anon_sym___attribute__, - ACTIONS(4099), 1, + ACTIONS(4134), 1, anon_sym_SEMI, - STATE(1434), 2, + STATE(1443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57389] = 4, + [58694] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, - anon_sym_COMMA, - STATE(1512), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4101), 2, - anon_sym_SEMI, + ACTIONS(3487), 1, anon_sym___attribute__, - [57403] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - anon_sym_COMMA, - STATE(1516), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4103), 2, + ACTIONS(4136), 1, anon_sym_SEMI, - anon_sym___attribute__, - [57417] = 5, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4029), 1, - anon_sym_LPAREN, - ACTIONS(4105), 1, - aux_sym_preproc_include_token2, - ACTIONS(4107), 1, - sym_preproc_arg, - STATE(1763), 1, - sym_preproc_params, - [57433] = 4, + STATE(1531), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58708] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4109), 1, + ACTIONS(4138), 1, anon_sym_COMMA, - STATE(1539), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4112), 2, + ACTIONS(4140), 1, anon_sym_RPAREN, - anon_sym_COLON, - [57447] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4114), 1, - anon_sym___except, - ACTIONS(4116), 1, - anon_sym___finally, - STATE(242), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [57461] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4118), 1, - anon_sym___except, - ACTIONS(4120), 1, - anon_sym___finally, - STATE(86), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [57475] = 4, + STATE(1605), 1, + aux_sym_parameter_list_repeat1, + STATE(1654), 1, + aux_sym__old_style_parameter_list_repeat1, + [58724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, + ACTIONS(3487), 1, anon_sym___attribute__, - ACTIONS(4122), 1, + ACTIONS(4142), 1, anon_sym_SEMI, - STATE(1530), 2, + STATE(1443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57489] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3658), 1, - anon_sym_COMMA, - STATE(1552), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4124), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [57503] = 4, - ACTIONS(3230), 1, + [58738] = 5, + ACTIONS(3294), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_SQUOTE, - STATE(1560), 1, - aux_sym_char_literal_repeat1, - ACTIONS(3992), 2, - aux_sym_char_literal_token1, + ACTIONS(4144), 1, + anon_sym_DQUOTE, + ACTIONS(4146), 1, + aux_sym_string_literal_token1, + ACTIONS(4148), 1, sym_escape_sequence, - [57517] = 4, + STATE(1562), 1, + aux_sym_string_literal_repeat1, + [58754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4128), 1, + ACTIONS(4150), 1, anon_sym___except, - ACTIONS(4130), 1, + ACTIONS(4152), 1, anon_sym___finally, - STATE(242), 2, + STATE(273), 2, sym_seh_except_clause, sym_seh_finally_clause, - [57531] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3533), 1, - sym_identifier, - ACTIONS(3974), 1, - aux_sym_preproc_if_token2, - STATE(1554), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, - sym_enumerator, - [57547] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3461), 1, - anon_sym___attribute__, - ACTIONS(4132), 1, - anon_sym_SEMI, - STATE(1511), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [57561] = 5, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4029), 1, - anon_sym_LPAREN, - ACTIONS(4134), 1, - aux_sym_preproc_include_token2, - ACTIONS(4136), 1, - sym_preproc_arg, - STATE(1762), 1, - sym_preproc_params, - [57577] = 5, - ACTIONS(3230), 1, + [58768] = 4, + ACTIONS(3294), 1, sym_comment, - ACTIONS(4029), 1, - anon_sym_LPAREN, - ACTIONS(4138), 1, - aux_sym_preproc_include_token2, - ACTIONS(4140), 1, - sym_preproc_arg, - STATE(1718), 1, - sym_preproc_params, - [57593] = 4, + ACTIONS(4154), 1, + anon_sym_SQUOTE, + STATE(1546), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4156), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [58782] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, + ACTIONS(3487), 1, anon_sym___attribute__, - ACTIONS(4142), 1, + ACTIONS(4159), 1, anon_sym_SEMI, - STATE(1559), 2, + STATE(1567), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57607] = 4, + [58796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, + ACTIONS(3487), 1, anon_sym___attribute__, - ACTIONS(4144), 1, + ACTIONS(4161), 1, anon_sym_SEMI, - STATE(1434), 2, + STATE(1443), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57621] = 4, + [58810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4146), 1, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + STATE(1702), 1, + sym_argument_list, + ACTIONS(4163), 2, anon_sym_COMMA, - STATE(1552), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4149), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [57635] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3476), 1, - sym_identifier, - ACTIONS(4151), 1, - aux_sym_preproc_if_token2, - STATE(1410), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [57649] = 5, + anon_sym_RBRACK_RBRACK, + [58824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 1, - sym_identifier, - ACTIONS(4153), 1, - aux_sym_preproc_if_token2, - STATE(1409), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, - sym_enumerator, - [57665] = 4, + ACTIONS(3593), 1, + anon_sym_COMMA, + STATE(1538), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4165), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [58838] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, + ACTIONS(3487), 1, anon_sym___attribute__, - ACTIONS(4155), 1, + ACTIONS(4167), 1, anon_sym_SEMI, - STATE(1551), 2, + STATE(1540), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57679] = 5, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4035), 1, - aux_sym_string_literal_token1, - ACTIONS(4037), 1, - sym_escape_sequence, - ACTIONS(4157), 1, - anon_sym_DQUOTE, - STATE(1557), 1, - aux_sym_string_literal_repeat1, - [57695] = 5, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4159), 1, - anon_sym_DQUOTE, - ACTIONS(4161), 1, - aux_sym_string_literal_token1, - ACTIONS(4164), 1, - sym_escape_sequence, - STATE(1557), 1, - aux_sym_string_literal_repeat1, - [57711] = 5, - ACTIONS(3230), 1, + [58852] = 5, + ACTIONS(3294), 1, sym_comment, - ACTIONS(4167), 1, - anon_sym_DQUOTE, + ACTIONS(4028), 1, + anon_sym_LPAREN, ACTIONS(4169), 1, - aux_sym_string_literal_token1, + aux_sym_preproc_include_token2, ACTIONS(4171), 1, - sym_escape_sequence, - STATE(1556), 1, - aux_sym_string_literal_repeat1, - [57727] = 4, + sym_preproc_arg, + STATE(1718), 1, + sym_preproc_params, + [58868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, - anon_sym___attribute__, - ACTIONS(4173), 1, + ACTIONS(3593), 1, + anon_sym_COMMA, + STATE(1508), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4173), 2, anon_sym_SEMI, - STATE(1434), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [57741] = 4, - ACTIONS(3230), 1, + anon_sym___attribute__, + [58882] = 4, + ACTIONS(3), 1, sym_comment, ACTIONS(4175), 1, - anon_sym_SQUOTE, - STATE(1560), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4177), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [57755] = 4, + anon_sym_COMMA, + STATE(1554), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4178), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [58896] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(3487), 1, + anon_sym___attribute__, ACTIONS(4180), 1, - anon_sym___except, - ACTIONS(4182), 1, - anon_sym___finally, - STATE(268), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [57769] = 4, + anon_sym_SEMI, + STATE(1514), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58910] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(3583), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(4182), 1, aux_sym_preproc_if_token2, - STATE(1553), 2, + STATE(1399), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1894), 1, sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [57783] = 4, - ACTIONS(3), 1, + [58926] = 5, + ACTIONS(3294), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - STATE(1725), 1, - sym_argument_list, - ACTIONS(4186), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [57797] = 5, - ACTIONS(3230), 1, + ACTIONS(4028), 1, + anon_sym_LPAREN, + ACTIONS(4184), 1, + aux_sym_preproc_include_token2, + ACTIONS(4186), 1, + sym_preproc_arg, + STATE(1732), 1, + sym_preproc_params, + [58942] = 5, + ACTIONS(3294), 1, sym_comment, - ACTIONS(4035), 1, - aux_sym_string_literal_token1, - ACTIONS(4037), 1, - sym_escape_sequence, ACTIONS(4188), 1, anon_sym_DQUOTE, - STATE(1557), 1, - aux_sym_string_literal_repeat1, - [57813] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3863), 1, - anon_sym_COMMA, ACTIONS(4190), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [57826] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3863), 1, - anon_sym_COMMA, + aux_sym_string_literal_token1, ACTIONS(4192), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [57839] = 4, + sym_escape_sequence, + STATE(1512), 1, + aux_sym_string_literal_repeat1, + [58958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 1, - anon_sym_COMMA, + ACTIONS(3518), 1, + sym_identifier, ACTIONS(4194), 1, - anon_sym_RPAREN, - STATE(1666), 1, - aux_sym_argument_list_repeat1, - [57852] = 4, + aux_sym_preproc_if_token2, + STATE(1424), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [58972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3694), 1, anon_sym_COMMA, - ACTIONS(4196), 1, + STATE(1565), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4196), 2, anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [57865] = 4, + anon_sym___attribute__, + [58986] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(3487), 1, + anon_sym___attribute__, ACTIONS(4198), 1, - anon_sym_COMMA, + anon_sym_SEMI, + STATE(1443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [59000] = 5, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4044), 1, + aux_sym_string_literal_token1, + ACTIONS(4046), 1, + sym_escape_sequence, ACTIONS(4200), 1, - anon_sym_RPAREN, - STATE(1633), 1, - aux_sym_parameter_list_repeat1, - [57878] = 4, + anon_sym_DQUOTE, + STATE(1535), 1, + aux_sym_string_literal_repeat1, + [59016] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_COMMA, + ACTIONS(3565), 1, + anon_sym_LPAREN2, + ACTIONS(3899), 1, + anon_sym_LBRACK, ACTIONS(4202), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [57891] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + STATE(1505), 1, + sym_parameter_list, + [59032] = 4, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_COMMA, ACTIONS(4204), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [57904] = 4, + anon_sym_SQUOTE, + STATE(1546), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4056), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [59046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_COMMA, ACTIONS(4206), 1, - anon_sym_SEMI, - STATE(1570), 1, - aux_sym_declaration_repeat1, - [57917] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4208), 1, + STATE(1565), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4209), 2, anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [57930] = 4, + anon_sym___attribute__, + [59060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 1, - anon_sym_COMMA, + ACTIONS(4211), 1, + anon_sym___except, ACTIONS(4213), 1, - anon_sym_RPAREN, - STATE(1574), 1, - aux_sym__old_style_parameter_list_repeat1, - [57943] = 4, + anon_sym___finally, + STATE(258), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [59074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_COMMA, + ACTIONS(3487), 1, + anon_sym___attribute__, ACTIONS(4215), 1, anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [57956] = 4, + STATE(1443), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [59088] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_COMMA, ACTIONS(4217), 1, - anon_sym_SEMI, - STATE(1661), 1, - aux_sym_declaration_repeat1, - [57969] = 4, + anon_sym___except, + ACTIONS(4219), 1, + anon_sym___finally, + STATE(258), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [59102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(4221), 1, anon_sym_COMMA, - ACTIONS(4219), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [57982] = 4, + STATE(1569), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4224), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [59116] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(4072), 1, anon_sym_COMMA, - ACTIONS(4221), 1, + STATE(1533), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4226), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [59130] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3917), 1, + anon_sym_COMMA, + ACTIONS(4228), 1, anon_sym_SEMI, - STATE(1590), 1, + STATE(1691), 1, aux_sym_declaration_repeat1, - [57995] = 4, + [59143] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3487), 1, + anon_sym___attribute__, + ACTIONS(4230), 1, + anon_sym_SEMI, + STATE(1951), 1, + sym_attribute_specifier, + [59156] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4223), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(4226), 1, + ACTIONS(4232), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1638), 1, aux_sym_declaration_repeat1, - [58008] = 4, + [59169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 1, + ACTIONS(2785), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(4234), 1, sym_identifier, - STATE(924), 1, + STATE(894), 1, sym_enumerator_list, - [58021] = 4, + [59182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4230), 1, + ACTIONS(4236), 3, anon_sym_COMMA, - ACTIONS(4232), 1, - anon_sym_RBRACK_RBRACK, - STATE(1593), 1, - aux_sym_attribute_declaration_repeat1, - [58034] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [59191] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, + ACTIONS(4238), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(4236), 1, anon_sym_COLON, - STATE(1645), 1, - sym_gnu_asm_output_operand_list, - [58047] = 4, + [59200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 1, + ACTIONS(3052), 1, anon_sym_COMMA, - ACTIONS(3007), 1, + ACTIONS(4240), 1, anon_sym_RPAREN, - STATE(1666), 1, + STATE(1664), 1, aux_sym_argument_list_repeat1, - [58060] = 4, + [59213] = 3, + ACTIONS(3294), 1, + sym_comment, + STATE(1515), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4242), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [59224] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(4244), 1, anon_sym_COMMA, - ACTIONS(4238), 1, - anon_sym_SEMI, + ACTIONS(4247), 1, + anon_sym_RPAREN, STATE(1579), 1, - aux_sym_declaration_repeat1, - [58073] = 4, + aux_sym_gnu_asm_goto_list_repeat1, + [59237] = 4, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4249), 1, + aux_sym_preproc_include_token2, + ACTIONS(4251), 1, + anon_sym_LPAREN2, + STATE(1928), 1, + sym_preproc_argument_list, + [59250] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(4253), 1, anon_sym_COMMA, - ACTIONS(4240), 1, - anon_sym_SEMI, + ACTIONS(4255), 1, + anon_sym_RBRACK_RBRACK, + STATE(1602), 1, + aux_sym_attribute_declaration_repeat1, + [59263] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4259), 1, + anon_sym_RPAREN, STATE(1579), 1, - aux_sym_declaration_repeat1, - [58086] = 4, + aux_sym_gnu_asm_goto_list_repeat1, + [59276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3015), 1, + ACTIONS(4261), 3, anon_sym_COMMA, - ACTIONS(3017), 1, - anon_sym_RBRACE, - STATE(1616), 1, - aux_sym_initializer_list_repeat1, - [58099] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [59285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(4263), 3, anon_sym_COMMA, - ACTIONS(4242), 1, - anon_sym_SEMI, - STATE(1573), 1, - aux_sym_declaration_repeat1, - [58112] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [59294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2368), 1, + ACTIONS(2397), 1, anon_sym_LBRACE, - ACTIONS(4244), 1, + ACTIONS(4265), 1, sym_identifier, - STATE(784), 1, + STATE(779), 1, sym_field_declaration_list, - [58125] = 4, + [59307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4246), 1, - anon_sym_COMMA, - ACTIONS(4248), 1, - anon_sym_RPAREN, - STATE(1621), 1, - aux_sym_preproc_params_repeat1, - [58138] = 4, + ACTIONS(2397), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + sym_identifier, + STATE(784), 1, + sym_field_declaration_list, + [59320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(4269), 1, anon_sym_COMMA, - ACTIONS(4250), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [58151] = 2, + ACTIONS(4272), 1, + anon_sym_RPAREN, + STATE(1587), 1, + aux_sym_generic_expression_repeat1, + [59333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 3, + ACTIONS(4274), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [58160] = 4, + [59342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(4254), 1, - anon_sym_SEMI, - STATE(1646), 1, - aux_sym_declaration_repeat1, - [58173] = 4, + ACTIONS(4276), 1, + anon_sym_RPAREN, + STATE(1582), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [59355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4256), 1, - anon_sym_COMMA, - ACTIONS(4259), 1, - anon_sym_RBRACK_RBRACK, - STATE(1593), 1, - aux_sym_attribute_declaration_repeat1, - [58186] = 4, + ACTIONS(3487), 1, + anon_sym___attribute__, + ACTIONS(4278), 1, + anon_sym_SEMI, + STATE(1807), 1, + sym_attribute_specifier, + [59368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(4280), 3, anon_sym_COMMA, - ACTIONS(4261), 1, - anon_sym_SEMI, - STATE(1584), 1, - aux_sym_declaration_repeat1, - [58199] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [59377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3198), 1, + ACTIONS(4282), 3, anon_sym_COMMA, - ACTIONS(4263), 1, anon_sym_RPAREN, - STATE(1663), 1, - aux_sym_preproc_argument_list_repeat1, - [58212] = 4, + anon_sym_COLON, + [59386] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3066), 1, anon_sym_COMMA, - ACTIONS(4265), 1, - anon_sym_SEMI, - STATE(1606), 1, - aux_sym_declaration_repeat1, - [58225] = 4, + ACTIONS(3068), 1, + anon_sym_RBRACE, + STATE(1679), 1, + aux_sym_initializer_list_repeat1, + [59399] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3083), 1, - anon_sym_RBRACE, - ACTIONS(4267), 1, + ACTIONS(3048), 1, anon_sym_COMMA, - STATE(1597), 1, - aux_sym_initializer_list_repeat1, - [58238] = 4, + ACTIONS(4284), 1, + anon_sym_RPAREN, + STATE(1587), 1, + aux_sym_generic_expression_repeat1, + [59412] = 3, + ACTIONS(3294), 1, + sym_comment, + STATE(1529), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4286), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [59423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(4270), 1, + ACTIONS(4288), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1619), 1, aux_sym_declaration_repeat1, - [58251] = 4, + [59436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2368), 1, - anon_sym_LBRACE, - ACTIONS(4272), 1, + ACTIONS(4292), 1, + anon_sym_RPAREN, + ACTIONS(4290), 2, + anon_sym_DOT_DOT_DOT, sym_identifier, - STATE(795), 1, - sym_field_declaration_list, - [58264] = 4, + [59447] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, + ACTIONS(4294), 1, anon_sym_RPAREN, - ACTIONS(4276), 1, + ACTIONS(4296), 1, anon_sym_COLON, - STATE(1858), 1, + STATE(1950), 1, sym_gnu_asm_goto_list, - [58277] = 4, + [59460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(4298), 3, anon_sym_COMMA, - ACTIONS(4278), 1, - anon_sym_SEMI, - STATE(1619), 1, - aux_sym_declaration_repeat1, - [58290] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4236), 1, - anon_sym_COLON, - ACTIONS(4280), 1, anon_sym_RPAREN, - STATE(1630), 1, - sym_gnu_asm_output_operand_list, - [58303] = 4, + anon_sym_COLON, + [59469] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2368), 1, - anon_sym_LBRACE, - ACTIONS(4282), 1, - sym_identifier, - STATE(806), 1, - sym_field_declaration_list, - [58316] = 4, + ACTIONS(3261), 1, + anon_sym_COMMA, + ACTIONS(4300), 1, + anon_sym_RPAREN, + STATE(1667), 1, + aux_sym_preproc_argument_list_repeat1, + [59482] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 1, + ACTIONS(2785), 1, anon_sym_LBRACE, - ACTIONS(4284), 1, + ACTIONS(4302), 1, sym_identifier, - STATE(1120), 1, + STATE(1124), 1, sym_enumerator_list, - [58329] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3863), 1, - anon_sym_COMMA, - ACTIONS(4286), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [58342] = 4, + [59495] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_COMMA, - ACTIONS(4288), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [58355] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3863), 1, - anon_sym_COMMA, - ACTIONS(4290), 1, - anon_sym_SEMI, - STATE(1568), 1, - aux_sym_declaration_repeat1, - [58368] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3863), 1, + ACTIONS(4253), 1, anon_sym_COMMA, - ACTIONS(4292), 1, - anon_sym_SEMI, - STATE(1620), 1, - aux_sym_declaration_repeat1, - [58381] = 4, + ACTIONS(4304), 1, + anon_sym_RBRACK_RBRACK, + STATE(1681), 1, + aux_sym_attribute_declaration_repeat1, + [59508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(4306), 3, anon_sym_COMMA, - ACTIONS(4294), 1, anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [58394] = 3, + anon_sym___attribute__, + [59517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4308), 1, anon_sym_EQ, - ACTIONS(3766), 2, + ACTIONS(3805), 2, anon_sym_COMMA, anon_sym_RBRACE, - [58405] = 3, - ACTIONS(3230), 1, - sym_comment, - STATE(1544), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4298), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [58416] = 4, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4300), 1, - aux_sym_preproc_include_token2, - ACTIONS(4302), 1, - anon_sym_LPAREN2, - STATE(1878), 1, - sym_preproc_argument_list, - [58429] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3461), 1, - anon_sym___attribute__, - ACTIONS(4304), 1, - anon_sym_SEMI, - STATE(1986), 1, - sym_attribute_specifier, - [58442] = 4, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4302), 1, - anon_sym_LPAREN2, - ACTIONS(4306), 1, - aux_sym_preproc_include_token2, - STATE(1878), 1, - sym_preproc_argument_list, - [58455] = 4, + [59528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4230), 1, - anon_sym_COMMA, - ACTIONS(4308), 1, - anon_sym_RBRACK_RBRACK, - STATE(1593), 1, - aux_sym_attribute_declaration_repeat1, - [58468] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, - anon_sym_RBRACE, ACTIONS(4310), 1, anon_sym_COMMA, - STATE(1597), 1, - aux_sym_initializer_list_repeat1, - [58481] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4230), 1, - anon_sym_COMMA, ACTIONS(4312), 1, - anon_sym_RBRACK_RBRACK, - STATE(1643), 1, - aux_sym_attribute_declaration_repeat1, - [58494] = 4, + anon_sym_RPAREN, + STATE(1684), 1, + aux_sym_parameter_list_repeat1, + [59541] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_COMMA, + ACTIONS(2397), 1, + anon_sym_LBRACE, ACTIONS(4314), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [58507] = 4, + sym_identifier, + STATE(774), 1, + sym_field_declaration_list, + [59554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_COMMA, ACTIONS(4316), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [58520] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3863), 1, - anon_sym_COMMA, + anon_sym_RPAREN, ACTIONS(4318), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [58533] = 4, + anon_sym_COLON, + STATE(1674), 1, + sym_gnu_asm_output_operand_list, + [59567] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4246), 1, - anon_sym_COMMA, + ACTIONS(3162), 1, + anon_sym_RBRACE, ACTIONS(4320), 1, - anon_sym_RPAREN, - STATE(1660), 1, - aux_sym_preproc_params_repeat1, - [58546] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4322), 1, - anon_sym_SEMI, - STATE(1627), 1, - aux_sym_declaration_repeat1, - [58559] = 2, + STATE(1608), 1, + aux_sym_initializer_list_repeat1, + [59580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 3, + ACTIONS(4323), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [58568] = 4, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4302), 1, - anon_sym_LPAREN2, - ACTIONS(4326), 1, - aux_sym_preproc_include_token2, - STATE(1878), 1, - sym_preproc_argument_list, - [58581] = 4, + [59589] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3052), 1, anon_sym_COMMA, - ACTIONS(4328), 1, - anon_sym_SEMI, - STATE(1565), 1, - aux_sym_declaration_repeat1, - [58594] = 4, + ACTIONS(3060), 1, + anon_sym_RPAREN, + STATE(1664), 1, + aux_sym_argument_list_repeat1, + [59602] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4325), 1, + anon_sym_COMMA, + ACTIONS(4328), 1, + anon_sym_RPAREN, + STATE(1611), 1, + aux_sym__old_style_parameter_list_repeat1, + [59615] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, ACTIONS(4330), 1, anon_sym_SEMI, - STATE(1644), 1, + STATE(1638), 1, aux_sym_declaration_repeat1, - [58607] = 4, + [59628] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, ACTIONS(4332), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1640), 1, aux_sym_declaration_repeat1, - [58620] = 4, + [59641] = 4, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4251), 1, + anon_sym_LPAREN2, + ACTIONS(4334), 1, + aux_sym_preproc_include_token2, + STATE(1928), 1, + sym_preproc_argument_list, + [59654] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(4334), 1, + ACTIONS(4336), 1, anon_sym_SEMI, - STATE(1618), 1, + STATE(1638), 1, aux_sym_declaration_repeat1, - [58633] = 4, + [59667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, - anon_sym_RPAREN, + ACTIONS(3917), 1, + anon_sym_COMMA, ACTIONS(4338), 1, - anon_sym_COLON, - STATE(1674), 1, - sym_gnu_asm_clobber_list, - [58646] = 4, + anon_sym_SEMI, + STATE(1573), 1, + aux_sym_declaration_repeat1, + [59680] = 3, + ACTIONS(3294), 1, + sym_comment, + STATE(1564), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4340), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [59691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 1, - anon_sym_RPAREN, + ACTIONS(3917), 1, + anon_sym_COMMA, ACTIONS(4342), 1, - anon_sym_COLON, - STATE(1671), 1, - sym_gnu_asm_input_operand_list, - [58659] = 4, + anon_sym_SEMI, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [59704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, ACTIONS(4344), 1, anon_sym_SEMI, - STATE(1655), 1, + STATE(1638), 1, aux_sym_declaration_repeat1, - [58672] = 2, + [59717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 3, + ACTIONS(4253), 1, anon_sym_COMMA, + ACTIONS(4346), 1, + anon_sym_RBRACK_RBRACK, + STATE(1651), 1, + aux_sym_attribute_declaration_repeat1, + [59730] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4348), 1, anon_sym_RPAREN, + ACTIONS(4350), 1, anon_sym_COLON, - [58681] = 4, + STATE(1598), 1, + sym_gnu_asm_clobber_list, + [59743] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4348), 1, - anon_sym_COMMA, - ACTIONS(4351), 1, + ACTIONS(4296), 1, + anon_sym_COLON, + ACTIONS(4352), 1, anon_sym_RPAREN, - STATE(1633), 1, - aux_sym_parameter_list_repeat1, - [58694] = 2, + STATE(1912), 1, + sym_gnu_asm_goto_list, + [59756] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4353), 3, + ACTIONS(3917), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [58703] = 4, + ACTIONS(4354), 1, + anon_sym_SEMI, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [59769] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4355), 1, + ACTIONS(4356), 1, anon_sym_COMMA, ACTIONS(4358), 1, anon_sym_RPAREN, - STATE(1635), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [58716] = 4, + STATE(1682), 1, + aux_sym_preproc_params_repeat1, + [59782] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, ACTIONS(4360), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1638), 1, aux_sym_declaration_repeat1, - [58729] = 2, + [59795] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4362), 3, + ACTIONS(3917), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [58738] = 3, + ACTIONS(4362), 1, + anon_sym_SEMI, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [59808] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3917), 1, + anon_sym_COMMA, + ACTIONS(4364), 1, + anon_sym_SEMI, + STATE(1623), 1, + aux_sym_declaration_repeat1, + [59821] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(3261), 1, + anon_sym_COMMA, ACTIONS(4366), 1, anon_sym_RPAREN, - ACTIONS(4364), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [58749] = 4, + STATE(1667), 1, + aux_sym_preproc_argument_list_repeat1, + [59834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, ACTIONS(4368), 1, anon_sym_SEMI, - STATE(1667), 1, + STATE(1638), 1, aux_sym_declaration_repeat1, - [58762] = 4, + [59847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 1, + ACTIONS(3052), 1, anon_sym_COMMA, - ACTIONS(3005), 1, + ACTIONS(3070), 1, anon_sym_RPAREN, - STATE(1583), 1, + STATE(1664), 1, aux_sym_argument_list_repeat1, - [58775] = 2, + [59860] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 3, + ACTIONS(3917), 1, anon_sym_COMMA, + ACTIONS(4370), 1, anon_sym_SEMI, - anon_sym___attribute__, - [58784] = 4, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [59873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4230), 1, + ACTIONS(3917), 1, anon_sym_COMMA, ACTIONS(4372), 1, - anon_sym_RBRACK_RBRACK, - STATE(1581), 1, - aux_sym_attribute_declaration_repeat1, - [58797] = 4, + anon_sym_SEMI, + STATE(1625), 1, + aux_sym_declaration_repeat1, + [59886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4230), 1, - anon_sym_COMMA, + ACTIONS(4350), 1, + anon_sym_COLON, ACTIONS(4374), 1, - anon_sym_RBRACK_RBRACK, - STATE(1593), 1, - aux_sym_attribute_declaration_repeat1, - [58810] = 4, + anon_sym_RPAREN, + STATE(1622), 1, + sym_gnu_asm_clobber_list, + [59899] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, ACTIONS(4376), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1629), 1, aux_sym_declaration_repeat1, - [58823] = 4, + [59912] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4342), 1, - anon_sym_COLON, ACTIONS(4378), 1, anon_sym_RPAREN, - STATE(1629), 1, + ACTIONS(4380), 1, + anon_sym_COLON, + STATE(1621), 1, sym_gnu_asm_input_operand_list, - [58836] = 4, + [59925] = 4, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4251), 1, + anon_sym_LPAREN2, + ACTIONS(4382), 1, + aux_sym_preproc_include_token2, + STATE(1928), 1, + sym_preproc_argument_list, + [59938] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(4380), 1, + ACTIONS(4384), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1638), 1, aux_sym_declaration_repeat1, - [58849] = 4, + [59951] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_COMMA, - ACTIONS(4384), 1, - anon_sym_RPAREN, - STATE(1635), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [58862] = 4, + ACTIONS(4389), 1, + anon_sym_SEMI, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [59964] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4386), 1, - sym_identifier, - STATE(1713), 1, - sym_variadic_parameter, - [58875] = 2, + ACTIONS(3917), 1, + anon_sym_COMMA, + ACTIONS(4391), 1, + anon_sym_SEMI, + STATE(1663), 1, + aux_sym_declaration_repeat1, + [59977] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4388), 3, + ACTIONS(3917), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [58884] = 3, - ACTIONS(3230), 1, - sym_comment, - STATE(1522), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4390), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [58895] = 4, + ACTIONS(4393), 1, + anon_sym_SEMI, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [59990] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4230), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(4392), 1, - anon_sym_RBRACK_RBRACK, - STATE(1615), 1, - aux_sym_attribute_declaration_repeat1, - [58908] = 4, + ACTIONS(4395), 1, + anon_sym_SEMI, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [60003] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(4394), 1, + ACTIONS(4397), 1, anon_sym_SEMI, - STATE(1683), 1, + STATE(1638), 1, aux_sym_declaration_repeat1, - [58921] = 4, + [60016] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(4396), 1, + ACTIONS(4399), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1637), 1, aux_sym_declaration_repeat1, - [58934] = 4, - ACTIONS(3230), 1, + [60029] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4302), 1, - anon_sym_LPAREN2, - ACTIONS(4398), 1, - aux_sym_preproc_include_token2, - STATE(1878), 1, - sym_preproc_argument_list, - [58947] = 4, + ACTIONS(3917), 1, + anon_sym_COMMA, + ACTIONS(4401), 1, + anon_sym_SEMI, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [60042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(4400), 1, + ACTIONS(4403), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1638), 1, aux_sym_declaration_repeat1, - [58960] = 2, + [60055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4402), 3, + ACTIONS(3917), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [58969] = 4, + ACTIONS(4405), 1, + anon_sym_SEMI, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [60068] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4404), 1, + ACTIONS(3917), 1, anon_sym_COMMA, ACTIONS(4407), 1, - anon_sym_RPAREN, - STATE(1657), 1, - aux_sym_generic_expression_repeat1, - [58982] = 4, + anon_sym_SEMI, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [60081] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4409), 1, + ACTIONS(3917), 1, anon_sym_COMMA, + ACTIONS(4409), 1, + anon_sym_SEMI, + STATE(1641), 1, + aux_sym_declaration_repeat1, + [60094] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(4411), 1, - anon_sym_RPAREN, - STATE(1574), 1, - aux_sym__old_style_parameter_list_repeat1, - [58995] = 4, + sym_identifier, + STATE(1755), 1, + sym_variadic_parameter, + [60107] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(3013), 1, - anon_sym_RPAREN, - STATE(1679), 1, - aux_sym_argument_list_repeat1, - [59008] = 4, + ACTIONS(4413), 1, + anon_sym_SEMI, + STATE(1644), 1, + aux_sym_declaration_repeat1, + [60120] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4413), 1, + ACTIONS(4253), 1, anon_sym_COMMA, - ACTIONS(4416), 1, - anon_sym_RPAREN, - STATE(1660), 1, - aux_sym_preproc_params_repeat1, - [59021] = 4, + ACTIONS(4415), 1, + anon_sym_RBRACK_RBRACK, + STATE(1681), 1, + aux_sym_attribute_declaration_repeat1, + [60133] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3052), 1, anon_sym_COMMA, - ACTIONS(4418), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [59034] = 4, + ACTIONS(3054), 1, + anon_sym_RPAREN, + STATE(1630), 1, + aux_sym_argument_list_repeat1, + [60146] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(4420), 1, + ACTIONS(4417), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1638), 1, aux_sym_declaration_repeat1, - [59047] = 4, + [60159] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3242), 1, - anon_sym_RPAREN, - ACTIONS(4422), 1, + ACTIONS(4419), 1, anon_sym_COMMA, - STATE(1663), 1, - aux_sym_preproc_argument_list_repeat1, - [59060] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3461), 1, - anon_sym___attribute__, - ACTIONS(4425), 1, - anon_sym_SEMI, - STATE(1855), 1, - sym_attribute_specifier, - [59073] = 2, + ACTIONS(4421), 1, + anon_sym_RPAREN, + STATE(1611), 1, + aux_sym__old_style_parameter_list_repeat1, + [60172] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4427), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [59082] = 4, + ACTIONS(2785), 1, + anon_sym_LBRACE, + ACTIONS(4423), 1, + sym_identifier, + STATE(1124), 1, + sym_enumerator_list, + [60185] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 1, - anon_sym_RPAREN, - ACTIONS(4429), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - STATE(1666), 1, - aux_sym_argument_list_repeat1, - [59095] = 4, + ACTIONS(4425), 1, + anon_sym_SEMI, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [60198] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(4432), 1, + ACTIONS(4427), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1638), 1, aux_sym_declaration_repeat1, - [59108] = 4, + [60211] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(4434), 1, + ACTIONS(4429), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1653), 1, aux_sym_declaration_repeat1, - [59121] = 4, + [60224] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4382), 1, + ACTIONS(3052), 1, anon_sym_COMMA, - ACTIONS(4436), 1, + ACTIONS(4431), 1, anon_sym_RPAREN, - STATE(1647), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [59134] = 4, + STATE(1664), 1, + aux_sym_argument_list_repeat1, + [60237] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4198), 1, + ACTIONS(4356), 1, anon_sym_COMMA, - ACTIONS(4438), 1, + ACTIONS(4433), 1, anon_sym_RPAREN, - STATE(1569), 1, - aux_sym_parameter_list_repeat1, - [59147] = 4, + STATE(1624), 1, + aux_sym_preproc_params_repeat1, + [60250] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4338), 1, - anon_sym_COLON, - ACTIONS(4440), 1, - anon_sym_RPAREN, - STATE(1600), 1, - sym_gnu_asm_clobber_list, - [59160] = 4, + ACTIONS(3917), 1, + anon_sym_COMMA, + ACTIONS(4435), 1, + anon_sym_SEMI, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [60263] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(4442), 1, - anon_sym_RPAREN, - STATE(1666), 1, - aux_sym_argument_list_repeat1, - [59173] = 4, + ACTIONS(4437), 1, + anon_sym_SEMI, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [60276] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3198), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(4444), 1, - anon_sym_RPAREN, - STATE(1663), 1, - aux_sym_preproc_argument_list_repeat1, - [59186] = 4, + ACTIONS(4439), 1, + anon_sym_SEMI, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [60289] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4276), 1, - anon_sym_COLON, - ACTIONS(4446), 1, + ACTIONS(3122), 1, anon_sym_RPAREN, - STATE(1788), 1, - sym_gnu_asm_goto_list, - [59199] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4448), 3, + ACTIONS(4441), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [59208] = 2, + STATE(1664), 1, + aux_sym_argument_list_repeat1, + [60302] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4450), 3, + ACTIONS(3917), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [59217] = 4, + ACTIONS(4444), 1, + anon_sym_SEMI, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [60315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(4452), 1, - anon_sym_RPAREN, - STATE(1657), 1, - aux_sym_generic_expression_repeat1, - [59230] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3461), 1, - anon_sym___attribute__, - ACTIONS(4454), 1, + ACTIONS(4446), 1, anon_sym_SEMI, - STATE(1834), 1, - sym_attribute_specifier, - [59243] = 4, + STATE(1656), 1, + aux_sym_declaration_repeat1, + [60328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 1, - anon_sym_COMMA, - ACTIONS(3001), 1, + ACTIONS(3365), 1, anon_sym_RPAREN, - STATE(1666), 1, - aux_sym_argument_list_repeat1, - [59256] = 3, - ACTIONS(3230), 1, - sym_comment, - STATE(1502), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4456), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [59267] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3863), 1, + ACTIONS(4448), 1, anon_sym_COMMA, - ACTIONS(4458), 1, - anon_sym_SEMI, - STATE(1668), 1, - aux_sym_declaration_repeat1, - [59280] = 4, + STATE(1667), 1, + aux_sym_preproc_argument_list_repeat1, + [60341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(4460), 1, + ACTIONS(4451), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1662), 1, aux_sym_declaration_repeat1, - [59293] = 4, + [60354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(4462), 1, + ACTIONS(4453), 1, anon_sym_SEMI, - STATE(1579), 1, + STATE(1645), 1, aux_sym_declaration_repeat1, - [59306] = 4, + [60367] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3198), 1, + ACTIONS(4310), 1, anon_sym_COMMA, - ACTIONS(4464), 1, + ACTIONS(4455), 1, anon_sym_RPAREN, - STATE(1663), 1, - aux_sym_preproc_argument_list_repeat1, - [59319] = 2, + STATE(1605), 1, + aux_sym_parameter_list_repeat1, + [60380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2997), 3, + ACTIONS(3052), 1, + anon_sym_COMMA, + ACTIONS(3056), 1, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [59328] = 4, + STATE(1610), 1, + aux_sym_argument_list_repeat1, + [60393] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 1, - anon_sym_LBRACE, - ACTIONS(4466), 1, - sym_identifier, - STATE(1120), 1, - sym_enumerator_list, - [59341] = 3, + ACTIONS(4253), 1, + anon_sym_COMMA, + ACTIONS(4457), 1, + anon_sym_RBRACK_RBRACK, + STATE(1687), 1, + aux_sym_attribute_declaration_repeat1, + [60406] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_LPAREN2, - STATE(1729), 1, - sym_parenthesized_expression, - [59351] = 3, + ACTIONS(4318), 1, + anon_sym_COLON, + ACTIONS(4459), 1, + anon_sym_RPAREN, + STATE(1635), 1, + sym_gnu_asm_output_operand_list, + [60419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1540), 1, - sym_compound_statement, - [59361] = 3, + ACTIONS(4380), 1, + anon_sym_COLON, + ACTIONS(4461), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_gnu_asm_input_operand_list, + [60432] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, - anon_sym_LPAREN2, - STATE(397), 1, - sym_parenthesized_expression, - [59371] = 3, - ACTIONS(3), 1, + ACTIONS(3917), 1, + anon_sym_COMMA, + ACTIONS(4463), 1, + anon_sym_SEMI, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [60445] = 4, + ACTIONS(3294), 1, sym_comment, - ACTIONS(4470), 1, + ACTIONS(4251), 1, anon_sym_LPAREN2, - STATE(362), 1, - sym_parenthesized_expression, - [59381] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4472), 1, - sym_identifier, - STATE(1642), 1, - sym_attribute, - [59391] = 3, + ACTIONS(4465), 1, + aux_sym_preproc_include_token2, + STATE(1928), 1, + sym_preproc_argument_list, + [60458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, - anon_sym_LPAREN2, - STATE(389), 1, - sym_parenthesized_expression, - [59401] = 2, + ACTIONS(3032), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [60467] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 2, + ACTIONS(3917), 1, anon_sym_COMMA, + ACTIONS(4467), 1, anon_sym_SEMI, - [59409] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_LPAREN2, - STATE(1719), 1, - sym_parenthesized_expression, - [59419] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4470), 1, - anon_sym_LPAREN2, - STATE(361), 1, - sym_parenthesized_expression, - [59429] = 3, + STATE(1675), 1, + aux_sym_declaration_repeat1, + [60480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(304), 1, - sym_compound_statement, - [59439] = 3, + ACTIONS(1894), 1, + anon_sym_RBRACE, + ACTIONS(4469), 1, + anon_sym_COMMA, + STATE(1608), 1, + aux_sym_initializer_list_repeat1, + [60493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(276), 1, - sym_compound_statement, - [59449] = 2, + ACTIONS(4471), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [60502] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 2, + ACTIONS(4473), 1, anon_sym_COMMA, - anon_sym_SEMI, - [59457] = 3, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4474), 1, - aux_sym_preproc_include_token2, ACTIONS(4476), 1, - sym_preproc_arg, - [59467] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - STATE(1915), 1, - sym_argument_list, - [59477] = 3, + anon_sym_RBRACK_RBRACK, + STATE(1681), 1, + aux_sym_attribute_declaration_repeat1, + [60515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(223), 1, - sym_compound_statement, - [59487] = 3, - ACTIONS(3230), 1, - sym_comment, ACTIONS(4478), 1, - aux_sym_preproc_include_token2, - ACTIONS(4480), 1, - sym_preproc_arg, - [59497] = 3, + anon_sym_COMMA, + ACTIONS(4481), 1, + anon_sym_RPAREN, + STATE(1682), 1, + aux_sym_preproc_params_repeat1, + [60528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1561), 1, - sym_compound_statement, - [59507] = 2, + ACTIONS(3917), 1, + anon_sym_COMMA, + ACTIONS(4483), 1, + anon_sym_SEMI, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [60541] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 2, + ACTIONS(4485), 1, anon_sym_COMMA, + ACTIONS(4488), 1, anon_sym_RPAREN, - [59515] = 3, + STATE(1684), 1, + aux_sym_parameter_list_repeat1, + [60554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_LPAREN2, - STATE(1979), 1, - sym_argument_list, - [59525] = 3, + ACTIONS(3917), 1, + anon_sym_COMMA, + ACTIONS(4490), 1, + anon_sym_SEMI, + STATE(1612), 1, + aux_sym_declaration_repeat1, + [60567] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_LPAREN2, - STATE(1720), 1, - sym_parenthesized_expression, - [59535] = 2, + ACTIONS(3917), 1, + anon_sym_COMMA, + ACTIONS(4492), 1, + anon_sym_SEMI, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [60580] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4416), 2, + ACTIONS(4253), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [59543] = 3, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4482), 1, - aux_sym_preproc_include_token2, - ACTIONS(4484), 1, - sym_preproc_arg, - [59553] = 3, + ACTIONS(4494), 1, + anon_sym_RBRACK_RBRACK, + STATE(1681), 1, + aux_sym_attribute_declaration_repeat1, + [60593] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, - anon_sym_LPAREN2, - STATE(391), 1, - sym_parenthesized_expression, - [59563] = 3, + ACTIONS(3917), 1, + anon_sym_COMMA, + ACTIONS(4496), 1, + anon_sym_SEMI, + STATE(1686), 1, + aux_sym_declaration_repeat1, + [60606] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, - sym_identifier, - ACTIONS(4488), 1, - anon_sym_LPAREN2, - [59573] = 3, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4490), 1, - aux_sym_preproc_include_token2, - ACTIONS(4492), 1, - sym_preproc_arg, - [59583] = 2, + ACTIONS(3487), 1, + anon_sym___attribute__, + ACTIONS(4498), 1, + anon_sym_SEMI, + STATE(1987), 1, + sym_attribute_specifier, + [60619] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3968), 2, + ACTIONS(3917), 1, anon_sym_COMMA, + ACTIONS(4500), 1, anon_sym_SEMI, - [59591] = 2, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [60632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4213), 2, + ACTIONS(3917), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [59599] = 2, + ACTIONS(4502), 1, + anon_sym_SEMI, + STATE(1638), 1, + aux_sym_declaration_repeat1, + [60645] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4494), 2, + ACTIONS(3261), 1, anon_sym_COMMA, + ACTIONS(4504), 1, anon_sym_RPAREN, - [59607] = 2, - ACTIONS(3), 1, + STATE(1667), 1, + aux_sym_preproc_argument_list_repeat1, + [60658] = 3, + ACTIONS(3294), 1, sym_comment, - ACTIONS(4351), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [59615] = 3, + ACTIONS(4506), 1, + aux_sym_preproc_include_token2, + ACTIONS(4508), 1, + sym_preproc_arg, + [60668] = 3, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4510), 1, + aux_sym_preproc_include_token2, + ACTIONS(4512), 1, + sym_preproc_arg, + [60678] = 3, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4514), 1, + aux_sym_preproc_include_token2, + ACTIONS(4516), 1, + sym_preproc_arg, + [60688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_LPAREN2, - STATE(1998), 1, - sym_parenthesized_expression, - [59625] = 3, + ACTIONS(4518), 1, + sym_identifier, + STATE(1581), 1, + sym_attribute, + [60698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4520), 1, anon_sym_LPAREN2, - STATE(1701), 1, + STATE(398), 1, sym_parenthesized_expression, - [59635] = 3, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4496), 1, - aux_sym_preproc_include_token2, - ACTIONS(4498), 1, - sym_preproc_arg, - [59645] = 3, + [60708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(371), 1, - anon_sym_LBRACE, - STATE(246), 1, - sym_compound_statement, - [59655] = 3, + ACTIONS(4522), 1, + anon_sym_LPAREN2, + STATE(1714), 1, + sym_parenthesized_expression, + [60718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(281), 1, - sym_compound_statement, - [59665] = 3, + ACTIONS(4520), 1, + anon_sym_LPAREN2, + STATE(397), 1, + sym_parenthesized_expression, + [60728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(371), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - STATE(223), 1, + STATE(164), 1, sym_compound_statement, - [59675] = 3, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4500), 1, - aux_sym_preproc_include_token2, - ACTIONS(4502), 1, - sym_preproc_arg, - [59685] = 3, + [60738] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1545), 1, + STATE(1566), 1, sym_compound_statement, - [59695] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4504), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [59703] = 2, + [60748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4506), 2, + ACTIONS(4524), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [59711] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4508), 1, - anon_sym_COMMA, - ACTIONS(4510), 1, - anon_sym_RBRACE, - [59721] = 3, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4512), 1, - aux_sym_preproc_include_token2, - ACTIONS(4514), 1, - sym_preproc_arg, - [59731] = 2, + [60756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 2, + ACTIONS(4488), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [59739] = 3, + anon_sym_RPAREN, + [60764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(101), 1, + STATE(239), 1, sym_compound_statement, - [59749] = 3, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4518), 1, - aux_sym_preproc_include_token2, - ACTIONS(4520), 1, - sym_preproc_arg, - [59759] = 3, + [60774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4472), 1, - sym_identifier, - STATE(1758), 1, - sym_attribute, - [59769] = 3, + ACTIONS(4526), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(423), 1, - anon_sym_LBRACE, - STATE(238), 1, - sym_compound_statement, - [59779] = 3, + ACTIONS(4528), 1, + sym_identifier, + ACTIONS(4530), 1, + anon_sym_LPAREN2, + [60792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4472), 1, - sym_identifier, - STATE(1617), 1, - sym_attribute, - [59789] = 3, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + STATE(1907), 1, + sym_argument_list, + [60802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, + ACTIONS(4522), 1, anon_sym_LPAREN2, - STATE(311), 1, + STATE(1773), 1, sym_parenthesized_expression, - [59799] = 3, + [60812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1568), 1, + sym_compound_statement, + [60822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, + ACTIONS(4522), 1, anon_sym_LPAREN2, - STATE(312), 1, + STATE(1770), 1, sym_parenthesized_expression, - [59809] = 3, + [60832] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4522), 1, - sym_identifier, - ACTIONS(4524), 1, anon_sym_LPAREN2, - [59819] = 3, + STATE(1800), 1, + sym_parenthesized_expression, + [60842] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1541), 1, + STATE(290), 1, sym_compound_statement, - [59829] = 3, + [60852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(423), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(170), 1, + STATE(1545), 1, sym_compound_statement, - [59839] = 3, + [60862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3539), 1, - anon_sym_RBRACE, - ACTIONS(4508), 1, - anon_sym_COMMA, - [59849] = 3, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(285), 1, + sym_compound_statement, + [60872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, + ACTIONS(4522), 1, anon_sym_LPAREN2, - STATE(351), 1, + STATE(1752), 1, sym_parenthesized_expression, - [59859] = 3, + [60882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, + ACTIONS(4522), 1, anon_sym_LPAREN2, - STATE(352), 1, + STATE(1704), 1, sym_parenthesized_expression, - [59869] = 3, + [60892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_LPAREN2, - STATE(1721), 1, - sym_parenthesized_expression, - [59879] = 3, - ACTIONS(3230), 1, + ACTIONS(4532), 1, + anon_sym_COMMA, + ACTIONS(4534), 1, + anon_sym_RBRACE, + [60902] = 3, + ACTIONS(3294), 1, sym_comment, - ACTIONS(4526), 1, + ACTIONS(4536), 1, aux_sym_preproc_include_token2, - ACTIONS(4528), 1, + ACTIONS(4538), 1, sym_preproc_arg, - [59889] = 3, + [60912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4522), 1, + anon_sym_LPAREN2, + STATE(2024), 1, + sym_parenthesized_expression, + [60922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(423), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - STATE(208), 1, + STATE(232), 1, sym_compound_statement, - [59899] = 3, + [60932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4522), 1, anon_sym_LPAREN2, - STATE(1847), 1, + STATE(1700), 1, sym_parenthesized_expression, - [59909] = 3, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4530), 1, - aux_sym_preproc_include_token2, - ACTIONS(4532), 1, - sym_preproc_arg, - [59919] = 3, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4534), 1, - aux_sym_preproc_include_token2, - ACTIONS(4536), 1, - sym_preproc_arg, - [59929] = 2, + [60942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3093), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [59937] = 2, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + STATE(1781), 1, + sym_argument_list, + [60952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [59945] = 3, + ACTIONS(4476), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [60960] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(171), 1, + STATE(1513), 1, sym_compound_statement, - [59955] = 2, + [60970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3083), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [59963] = 3, + ACTIONS(4520), 1, + anon_sym_LPAREN2, + STATE(385), 1, + sym_parenthesized_expression, + [60980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4540), 1, - sym_identifier, - ACTIONS(4542), 1, - anon_sym_RPAREN, - [59973] = 2, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(164), 1, + sym_compound_statement, + [60990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3109), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [59981] = 3, + ACTIONS(4522), 1, + anon_sym_LPAREN2, + STATE(1759), 1, + sym_parenthesized_expression, + [61000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, + ACTIONS(4520), 1, anon_sym_LPAREN2, - STATE(396), 1, + STATE(384), 1, sym_parenthesized_expression, - [59991] = 3, - ACTIONS(3230), 1, + [61010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, + sym_identifier, + STATE(1620), 1, + sym_attribute, + [61020] = 3, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4540), 1, + aux_sym_preproc_include_token2, + ACTIONS(4542), 1, + sym_preproc_arg, + [61030] = 3, + ACTIONS(3294), 1, sym_comment, ACTIONS(4544), 1, aux_sym_preproc_include_token2, ACTIONS(4546), 1, sym_preproc_arg, - [60001] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_LPAREN2, - STATE(1696), 1, - sym_parenthesized_expression, - [60011] = 3, - ACTIONS(3230), 1, + [61040] = 3, + ACTIONS(3294), 1, sym_comment, ACTIONS(4548), 1, aux_sym_preproc_include_token2, ACTIONS(4550), 1, sym_preproc_arg, - [60021] = 2, + [61050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4552), 1, + sym_identifier, + ACTIONS(4554), 1, + anon_sym_RPAREN, + [61060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4259), 2, + ACTIONS(4556), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [60029] = 3, + [61068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4520), 1, anon_sym_LPAREN2, - STATE(1923), 1, + STATE(373), 1, + sym_parenthesized_expression, + [61078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4522), 1, + anon_sym_LPAREN2, + STATE(1726), 1, sym_parenthesized_expression, - [60039] = 3, + [61088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - STATE(88), 1, + STATE(161), 1, sym_compound_statement, - [60049] = 3, - ACTIONS(3230), 1, + [61098] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4552), 1, - aux_sym_preproc_include_token2, - ACTIONS(4554), 1, - sym_preproc_arg, - [60059] = 3, - ACTIONS(3230), 1, + ACTIONS(4522), 1, + anon_sym_LPAREN2, + STATE(1830), 1, + sym_parenthesized_expression, + [61108] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4556), 1, - aux_sym_preproc_include_token2, - ACTIONS(4558), 1, - sym_preproc_arg, - [60069] = 3, - ACTIONS(3230), 1, + ACTIONS(4520), 1, + anon_sym_LPAREN2, + STATE(374), 1, + sym_parenthesized_expression, + [61118] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 1, - aux_sym_preproc_include_token2, - ACTIONS(4562), 1, - sym_preproc_arg, - [60079] = 3, + ACTIONS(4518), 1, + sym_identifier, + STATE(1723), 1, + sym_attribute, + [61128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3589), 1, + anon_sym_RBRACE, + ACTIONS(4532), 1, + anon_sym_COMMA, + [61138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4522), 1, anon_sym_LPAREN2, - STATE(1744), 1, + STATE(1981), 1, sym_parenthesized_expression, - [60089] = 3, + [61148] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3172), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [61156] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1507), 1, + STATE(1517), 1, sym_compound_statement, - [60099] = 2, + [61166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4564), 2, + ACTIONS(3162), 2, anon_sym_COMMA, - anon_sym_SEMI, - [60107] = 3, + anon_sym_RBRACE, + [61174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4472), 1, - sym_identifier, - STATE(1651), 1, - sym_attribute, - [60117] = 3, + ACTIONS(3150), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [61182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_LPAREN2, - STATE(1781), 1, - sym_parenthesized_expression, - [60127] = 3, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4566), 1, - aux_sym_preproc_include_token2, - ACTIONS(4568), 1, - sym_preproc_arg, - [60137] = 3, + ACTIONS(4558), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [61190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, - anon_sym_LBRACE, - STATE(76), 1, - sym_compound_statement, - [60147] = 3, + ACTIONS(4560), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4520), 1, anon_sym_LPAREN2, - STATE(1760), 1, + STATE(389), 1, sym_parenthesized_expression, - [60157] = 3, + [61208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4522), 1, anon_sym_LPAREN2, - STATE(1732), 1, + STATE(1737), 1, sym_parenthesized_expression, - [60167] = 2, + [61218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [60175] = 3, + ACTIONS(4520), 1, + anon_sym_LPAREN2, + STATE(391), 1, + sym_parenthesized_expression, + [61228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(371), 1, + ACTIONS(432), 1, anon_sym_LBRACE, - STATE(171), 1, + STATE(214), 1, sym_compound_statement, - [60185] = 2, + [61238] = 3, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4563), 1, + aux_sym_preproc_include_token2, + ACTIONS(4565), 1, + sym_preproc_arg, + [61248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4573), 1, - anon_sym_SEMI, - [60192] = 2, + ACTIONS(4518), 1, + sym_identifier, + STATE(1672), 1, + sym_attribute, + [61258] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(4328), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61266] = 3, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4567), 1, + aux_sym_preproc_include_token2, + ACTIONS(4569), 1, + sym_preproc_arg, + [61276] = 3, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4571), 1, + aux_sym_preproc_include_token2, + ACTIONS(4573), 1, + sym_preproc_arg, + [61286] = 3, + ACTIONS(3294), 1, + sym_comment, ACTIONS(4575), 1, - aux_sym_preproc_if_token2, - [60199] = 2, + aux_sym_preproc_include_token2, + ACTIONS(4577), 1, + sym_preproc_arg, + [61296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 1, - anon_sym_RBRACE, - [60206] = 2, + ACTIONS(131), 1, + anon_sym_LBRACE, + STATE(77), 1, + sym_compound_statement, + [61306] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4579), 1, + sym_identifier, + ACTIONS(4581), 1, anon_sym_LPAREN2, - [60213] = 2, + [61316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, - aux_sym_preproc_if_token2, - [60220] = 2, + ACTIONS(4481), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61324] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4583), 1, - aux_sym_preproc_if_token2, - [60227] = 2, - ACTIONS(3), 1, + ACTIONS(4583), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [61332] = 3, + ACTIONS(3294), 1, sym_comment, ACTIONS(4585), 1, - anon_sym_SEMI, - [60234] = 2, + aux_sym_preproc_include_token2, + ACTIONS(4587), 1, + sym_preproc_arg, + [61342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4587), 1, + ACTIONS(4589), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [60241] = 2, - ACTIONS(3230), 1, + [61350] = 3, + ACTIONS(3294), 1, sym_comment, - ACTIONS(4589), 1, + ACTIONS(4591), 1, aux_sym_preproc_include_token2, - [60248] = 2, + ACTIONS(4593), 1, + sym_preproc_arg, + [61360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4591), 1, - aux_sym_preproc_if_token2, - [60255] = 2, - ACTIONS(3), 1, + ACTIONS(3122), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61368] = 3, + ACTIONS(3294), 1, sym_comment, - ACTIONS(4593), 1, - aux_sym_preproc_if_token2, - [60262] = 2, + ACTIONS(4595), 1, + aux_sym_preproc_include_token2, + ACTIONS(4597), 1, + sym_preproc_arg, + [61378] = 3, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4599), 1, + aux_sym_preproc_include_token2, + ACTIONS(4601), 1, + sym_preproc_arg, + [61388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3113), 1, - anon_sym_SEMI, - [60269] = 2, + ACTIONS(4520), 1, + anon_sym_LPAREN2, + STATE(401), 1, + sym_parenthesized_expression, + [61398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 1, - aux_sym_preproc_if_token2, - [60276] = 2, + ACTIONS(131), 1, + anon_sym_LBRACE, + STATE(96), 1, + sym_compound_statement, + [61408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4597), 1, - anon_sym_RPAREN, - [60283] = 2, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(232), 1, + sym_compound_statement, + [61418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4599), 1, - aux_sym_preproc_if_token2, - [60290] = 2, + ACTIONS(131), 1, + anon_sym_LBRACE, + STATE(103), 1, + sym_compound_statement, + [61428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 1, - anon_sym_RPAREN, - [60297] = 2, + ACTIONS(432), 1, + anon_sym_LBRACE, + STATE(193), 1, + sym_compound_statement, + [61438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4601), 1, - aux_sym_preproc_if_token2, - [60304] = 2, + ACTIONS(3988), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [61446] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(4020), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [61454] = 3, + ACTIONS(3294), 1, + sym_comment, ACTIONS(4603), 1, - sym_identifier, - [60311] = 2, + aux_sym_preproc_include_token2, + ACTIONS(4605), 1, + sym_preproc_arg, + [61464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4605), 1, - anon_sym_COLON, - [60318] = 2, + ACTIONS(3158), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [61472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4607), 1, - aux_sym_preproc_if_token2, - [60325] = 2, - ACTIONS(3230), 1, + ACTIONS(4520), 1, + anon_sym_LPAREN2, + STATE(402), 1, + sym_parenthesized_expression, + [61482] = 3, + ACTIONS(3294), 1, sym_comment, - ACTIONS(4609), 1, + ACTIONS(4607), 1, aux_sym_preproc_include_token2, - [60332] = 2, - ACTIONS(3230), 1, + ACTIONS(4609), 1, + sym_preproc_arg, + [61492] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4611), 1, - aux_sym_preproc_include_token2, - [60339] = 2, + ACTIONS(432), 1, + anon_sym_LBRACE, + STATE(298), 1, + sym_compound_statement, + [61502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3071), 1, - anon_sym_RPAREN, - [60346] = 2, + ACTIONS(4611), 1, + anon_sym_STAR, + [61509] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4613), 1, - aux_sym_preproc_if_token2, - [60353] = 2, + sym_identifier, + [61516] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4615), 1, - anon_sym_SEMI, - [60360] = 2, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4617), 1, - aux_sym_preproc_include_token2, - [60367] = 2, + aux_sym_preproc_if_token2, + [61523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 1, - anon_sym_SEMI, - [60374] = 2, + ACTIONS(4617), 1, + aux_sym_preproc_if_token2, + [61530] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4619), 1, anon_sym_RPAREN, - [60381] = 2, - ACTIONS(3), 1, + [61537] = 2, + ACTIONS(3294), 1, sym_comment, - ACTIONS(4621), 1, - anon_sym_STAR, - [60388] = 2, + ACTIONS(4382), 1, + aux_sym_preproc_include_token2, + [61544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3023), 1, + ACTIONS(4621), 1, anon_sym_RPAREN, - [60395] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3089), 1, - anon_sym_SEMI, - [60402] = 2, + [61551] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4623), 1, - anon_sym_SEMI, - [60409] = 2, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4625), 1, - aux_sym_preproc_include_token2, - [60416] = 2, + aux_sym_preproc_if_token2, + [61558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3019), 1, - anon_sym_SEMI, - [60423] = 2, + ACTIONS(4625), 1, + aux_sym_preproc_if_token2, + [61565] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4627), 1, - anon_sym_RPAREN, - [60430] = 2, - ACTIONS(3230), 1, + anon_sym_COLON, + [61572] = 2, + ACTIONS(3024), 1, + aux_sym_preproc_include_token2, + ACTIONS(3294), 1, + sym_comment, + [61579] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4629), 1, - aux_sym_preproc_include_token2, - [60437] = 2, + sym_identifier, + [61586] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4631), 1, - anon_sym_LPAREN2, - [60444] = 2, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4306), 1, - aux_sym_preproc_include_token2, - [60451] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [61593] = 2, + ACTIONS(3294), 1, sym_comment, ACTIONS(4633), 1, - anon_sym_LPAREN2, - [60458] = 2, + aux_sym_preproc_include_token2, + [61600] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4635), 1, - anon_sym_RPAREN, - [60465] = 2, + aux_sym_preproc_if_token2, + [61607] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4637), 1, - anon_sym_COLON, - [60472] = 2, - ACTIONS(3230), 1, + aux_sym_preproc_if_token2, + [61614] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4639), 1, + anon_sym_SEMI, + [61621] = 2, + ACTIONS(3020), 1, aux_sym_preproc_include_token2, - [60479] = 2, + ACTIONS(3294), 1, + sym_comment, + [61628] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4641), 1, - anon_sym_RBRACK, - [60486] = 2, + anon_sym_COLON, + [61635] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4643), 1, - sym_identifier, - [60493] = 2, - ACTIONS(3230), 1, + anon_sym_SEMI, + [61642] = 2, + ACTIONS(2130), 1, + aux_sym_preproc_include_token2, + ACTIONS(3294), 1, + sym_comment, + [61649] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3126), 1, + anon_sym_COLON, + [61656] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3084), 1, + anon_sym_COLON, + [61663] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4645), 1, - aux_sym_preproc_include_token2, - [60500] = 2, + aux_sym_preproc_if_token2, + [61670] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4647), 1, - anon_sym_SEMI, - [60507] = 2, + anon_sym_RPAREN, + [61677] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4649), 1, - aux_sym_preproc_if_token2, - [60514] = 2, + anon_sym_RPAREN, + [61684] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4651), 1, anon_sym_SEMI, - [60521] = 2, + [61691] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4653), 1, - anon_sym_LPAREN2, - [60528] = 2, - ACTIONS(3), 1, + anon_sym_COLON, + [61698] = 2, + ACTIONS(3294), 1, sym_comment, ACTIONS(4655), 1, - anon_sym_COLON, - [60535] = 2, - ACTIONS(3230), 1, + aux_sym_preproc_include_token2, + [61705] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3120), 1, + anon_sym_RPAREN, + [61712] = 2, + ACTIONS(3294), 1, sym_comment, ACTIONS(4657), 1, aux_sym_preproc_include_token2, - [60542] = 2, + [61719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4659), 1, - anon_sym_LPAREN2, - [60549] = 2, + ACTIONS(3124), 1, + anon_sym_RPAREN, + [61726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3077), 1, + ACTIONS(3128), 1, anon_sym_RPAREN, - [60556] = 2, + [61733] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(4659), 1, + anon_sym_RPAREN, + [61740] = 2, + ACTIONS(3294), 1, + sym_comment, ACTIONS(4661), 1, - aux_sym_preproc_if_token2, - [60563] = 2, + aux_sym_preproc_include_token2, + [61747] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4663), 1, - aux_sym_preproc_if_token2, - [60570] = 2, + anon_sym_RPAREN, + [61754] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4665), 1, - aux_sym_preproc_if_token2, - [60577] = 2, + anon_sym_RBRACK, + [61761] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4667), 1, aux_sym_preproc_if_token2, - [60584] = 2, - ACTIONS(3230), 1, + [61768] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4669), 1, - aux_sym_preproc_include_token2, - [60591] = 2, - ACTIONS(3230), 1, + aux_sym_preproc_if_token2, + [61775] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4671), 1, - aux_sym_preproc_include_token2, - [60598] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [61782] = 2, + ACTIONS(3294), 1, sym_comment, ACTIONS(4673), 1, - anon_sym_SEMI, - [60605] = 2, - ACTIONS(3230), 1, + aux_sym_preproc_include_token2, + [61789] = 2, + ACTIONS(3294), 1, sym_comment, ACTIONS(4675), 1, aux_sym_preproc_include_token2, - [60612] = 2, + [61796] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4677), 1, - ts_builtin_sym_end, - [60619] = 2, - ACTIONS(3), 1, + sym_identifier, + [61803] = 2, + ACTIONS(3294), 1, sym_comment, ACTIONS(4679), 1, - sym_identifier, - [60626] = 2, + aux_sym_preproc_include_token2, + [61810] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4681), 1, sym_identifier, - [60633] = 2, + [61817] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4683), 1, - anon_sym_COLON, - [60640] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [61824] = 2, + ACTIONS(3294), 1, sym_comment, ACTIONS(4685), 1, - aux_sym_preproc_if_token2, - [60647] = 2, + aux_sym_preproc_include_token2, + [61831] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4687), 1, aux_sym_preproc_if_token2, - [60654] = 2, + [61838] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4689), 1, - anon_sym_COLON, - [60661] = 2, + anon_sym_LPAREN2, + [61845] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4691), 1, - aux_sym_preproc_if_token2, - [60668] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3081), 1, - anon_sym_RPAREN, - [60675] = 2, + anon_sym_SEMI, + [61852] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4693), 1, anon_sym_SEMI, - [60682] = 2, + [61859] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(3164), 1, + anon_sym_SEMI, + [61866] = 2, + ACTIONS(3294), 1, + sym_comment, ACTIONS(4695), 1, - sym_identifier, - [60689] = 2, + aux_sym_preproc_include_token2, + [61873] = 2, + ACTIONS(3028), 1, + aux_sym_preproc_include_token2, + ACTIONS(3294), 1, + sym_comment, + [61880] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4697), 1, - anon_sym_SEMI, - [60696] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [61887] = 2, + ACTIONS(3294), 1, sym_comment, ACTIONS(4699), 1, - anon_sym_SEMI, - [60703] = 2, + aux_sym_preproc_include_token2, + [61894] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4701), 1, - anon_sym_LPAREN2, - [60710] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [61901] = 2, + ACTIONS(3294), 1, sym_comment, ACTIONS(4703), 1, - anon_sym_SEMI, - [60717] = 2, + aux_sym_preproc_include_token2, + [61908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4705), 1, + ACTIONS(3168), 1, anon_sym_SEMI, - [60724] = 2, - ACTIONS(3), 1, + [61915] = 2, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4705), 1, + aux_sym_preproc_include_token2, + [61922] = 2, + ACTIONS(3294), 1, sym_comment, ACTIONS(4707), 1, - sym_identifier, - [60731] = 2, + aux_sym_preproc_include_token2, + [61929] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4709), 1, - anon_sym_RPAREN, - [60738] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [61936] = 2, + ACTIONS(3294), 1, sym_comment, ACTIONS(4711), 1, - aux_sym_preproc_if_token2, - [60745] = 2, + aux_sym_preproc_include_token2, + [61943] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4713), 1, - anon_sym_SEMI, - [60752] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4715), 1, aux_sym_preproc_if_token2, - [60759] = 2, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4717), 1, - aux_sym_preproc_include_token2, - [60766] = 2, + [61950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4719), 1, - anon_sym_RPAREN, - [60773] = 2, + ACTIONS(4715), 1, + sym_identifier, + [61957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4721), 1, - anon_sym_RBRACE, - [60780] = 2, + ACTIONS(4717), 1, + sym_identifier, + [61964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 1, - anon_sym_COLON, - [60787] = 2, + ACTIONS(3080), 1, + anon_sym_SEMI, + [61971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3101), 1, + ACTIONS(4719), 1, anon_sym_SEMI, - [60794] = 2, - ACTIONS(2985), 1, - aux_sym_preproc_include_token2, - ACTIONS(3230), 1, + [61978] = 2, + ACTIONS(3), 1, sym_comment, - [60801] = 2, + ACTIONS(4721), 1, + sym_identifier, + [61985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 1, - anon_sym_SEMI, - [60808] = 2, + ACTIONS(3086), 1, + anon_sym_RPAREN, + [61992] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4723), 1, - aux_sym_preproc_if_token2, - [60815] = 2, + anon_sym_RPAREN, + [61999] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4725), 1, aux_sym_preproc_if_token2, - [60822] = 2, + [62006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, - aux_sym_preproc_if_token2, - [60829] = 2, + ACTIONS(3078), 1, + anon_sym_SEMI, + [62013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(4727), 1, sym_identifier, - [60836] = 2, + [62020] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(4729), 1, + anon_sym_RPAREN, + [62027] = 2, + ACTIONS(3294), 1, + sym_comment, ACTIONS(4731), 1, + aux_sym_preproc_include_token2, + [62034] = 2, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4334), 1, + aux_sym_preproc_include_token2, + [62041] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 1, anon_sym_COLON, - [60843] = 2, + [62048] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4733), 1, - aux_sym_preproc_if_token2, - [60850] = 2, + anon_sym_SEMI, + [62055] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4735), 1, - sym_identifier, - [60857] = 2, + aux_sym_preproc_if_token2, + [62062] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4737), 1, - anon_sym_LPAREN2, - [60864] = 2, + anon_sym_RPAREN, + [62069] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4739), 1, - aux_sym_preproc_if_token2, - [60871] = 2, + anon_sym_SEMI, + [62076] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4741), 1, - aux_sym_preproc_if_token2, - [60878] = 2, + anon_sym_LPAREN2, + [62083] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4743), 1, - sym_identifier, - [60885] = 2, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4398), 1, - aux_sym_preproc_include_token2, - [60892] = 2, - ACTIONS(3230), 1, + anon_sym_SEMI, + [62090] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4745), 1, - aux_sym_preproc_include_token2, - [60899] = 2, + anon_sym_RPAREN, + [62097] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4747), 1, - sym_identifier, - [60906] = 2, - ACTIONS(2981), 1, - aux_sym_preproc_include_token2, - ACTIONS(3230), 1, - sym_comment, - [60913] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [62104] = 2, + ACTIONS(3294), 1, sym_comment, ACTIONS(4749), 1, - sym_identifier, - [60920] = 2, + aux_sym_preproc_include_token2, + [62111] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4751), 1, - anon_sym_RPAREN, - [60927] = 2, + sym_identifier, + [62118] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4753), 1, - anon_sym_RPAREN, - [60934] = 2, + anon_sym_RBRACE, + [62125] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4755), 1, - anon_sym_RPAREN, - [60941] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3111), 1, - anon_sym_RPAREN, - [60948] = 2, + anon_sym_RBRACE, + [62132] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4757), 1, - sym_identifier, - [60955] = 2, + aux_sym_preproc_if_token2, + [62139] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4759), 1, - anon_sym_RPAREN, - [60962] = 2, + anon_sym_COLON, + [62146] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4761), 1, - anon_sym_RPAREN, - [60969] = 2, + anon_sym_RBRACE, + [62153] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4763), 1, - anon_sym_RPAREN, - [60976] = 2, + anon_sym_COMMA, + [62160] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4765), 1, - anon_sym_RPAREN, - [60983] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4508), 1, - anon_sym_COMMA, - [60990] = 2, + aux_sym_preproc_if_token2, + [62167] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4767), 1, - sym_identifier, - [60997] = 2, - ACTIONS(3230), 1, + anon_sym_RPAREN, + [62174] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4769), 1, - aux_sym_preproc_include_token2, - [61004] = 2, + anon_sym_RPAREN, + [62181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 1, - anon_sym_COLON, - [61011] = 2, + ACTIONS(3132), 1, + anon_sym_SEMI, + [62188] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4771), 1, anon_sym_RPAREN, - [61018] = 2, + [62195] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3152), 1, + anon_sym_SEMI, + [62202] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4773), 1, - anon_sym_while, - [61025] = 2, + anon_sym_SEMI, + [62209] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4775), 1, - sym_identifier, - [61032] = 2, + aux_sym_preproc_if_token2, + [62216] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4777), 1, - anon_sym_SEMI, - [61039] = 2, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4779), 1, - aux_sym_preproc_include_token2, - [61046] = 2, + sym_identifier, + [62223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 1, - anon_sym_SEMI, - [61053] = 2, + ACTIONS(4779), 1, + sym_primitive_type, + [62230] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4781), 1, aux_sym_preproc_if_token2, - [61060] = 2, + [62237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4783), 1, - aux_sym_preproc_if_token2, - [61067] = 2, + ACTIONS(3589), 1, + anon_sym_RBRACE, + [62244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4785), 1, + ACTIONS(4783), 1, sym_identifier, - [61074] = 2, + [62251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, + ACTIONS(4785), 1, sym_identifier, - [61081] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4789), 1, - aux_sym_preproc_if_token2, - [61088] = 2, + [62258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4791), 1, + ACTIONS(4787), 1, anon_sym_SEMI, - [61095] = 2, + [62265] = 2, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4465), 1, + aux_sym_preproc_include_token2, + [62272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4510), 1, + ACTIONS(4789), 1, anon_sym_RBRACE, - [61102] = 2, - ACTIONS(3), 1, + [62279] = 2, + ACTIONS(3294), 1, sym_comment, - ACTIONS(3087), 1, - anon_sym_RPAREN, - [61109] = 2, + ACTIONS(4791), 1, + aux_sym_preproc_include_token2, + [62286] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4793), 1, - aux_sym_preproc_if_token2, - [61116] = 2, - ACTIONS(3230), 1, + sym_identifier, + [62293] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4326), 1, - aux_sym_preproc_include_token2, - [61123] = 2, + ACTIONS(3868), 1, + anon_sym_COMMA, + [62300] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4795), 1, - anon_sym_SEMI, - [61130] = 2, - ACTIONS(2118), 1, - aux_sym_preproc_include_token2, - ACTIONS(3230), 1, - sym_comment, - [61137] = 2, + anon_sym_RPAREN, + [62307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3095), 1, - anon_sym_SEMI, - [61144] = 2, + ACTIONS(4797), 1, + anon_sym_RPAREN, + [62314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4797), 1, + ACTIONS(4799), 1, aux_sym_preproc_if_token2, - [61151] = 2, + [62321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4799), 1, - anon_sym_STAR, - [61158] = 2, + ACTIONS(3192), 1, + anon_sym_RPAREN, + [62328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3107), 1, - anon_sym_COLON, - [61165] = 2, + ACTIONS(3148), 1, + anon_sym_RPAREN, + [62335] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4801), 1, anon_sym_RPAREN, - [61172] = 2, + [62342] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3156), 1, + anon_sym_COLON, + [62349] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4803), 1, - sym_identifier, - [61179] = 2, + aux_sym_preproc_if_token2, + [62356] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4805), 1, - sym_identifier, - [61186] = 2, + aux_sym_preproc_if_token2, + [62363] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4807), 1, - sym_identifier, - [61193] = 2, + anon_sym_SEMI, + [62370] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4809), 1, - aux_sym_preproc_if_token2, - [61200] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3079), 1, anon_sym_SEMI, - [61207] = 2, - ACTIONS(3), 1, + [62377] = 2, + ACTIONS(3294), 1, sym_comment, ACTIONS(4811), 1, - anon_sym_SEMI, - [61214] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3121), 1, - anon_sym_SEMI, - [61221] = 2, + aux_sym_preproc_include_token2, + [62384] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4813), 1, - anon_sym_SEMI, - [61228] = 2, + anon_sym_RPAREN, + [62391] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4815), 1, - anon_sym_SEMI, - [61235] = 2, + anon_sym_RPAREN, + [62398] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4817), 1, - anon_sym_RPAREN, - [61242] = 2, + anon_sym_STAR, + [62405] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4819), 1, - sym_identifier, - [61249] = 2, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4821), 1, - aux_sym_preproc_include_token2, - [61256] = 2, + anon_sym_RBRACK, + [62412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3539), 1, - anon_sym_RBRACE, - [61263] = 2, + ACTIONS(4821), 1, + sym_identifier, + [62419] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4823), 1, - anon_sym_STAR, - [61270] = 2, + anon_sym_RPAREN, + [62426] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4825), 1, - sym_identifier, - [61277] = 2, - ACTIONS(3230), 1, - sym_comment, - ACTIONS(4300), 1, - aux_sym_preproc_include_token2, - [61284] = 2, + aux_sym_preproc_if_token2, + [62433] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4827), 1, - aux_sym_preproc_if_token2, - [61291] = 2, + anon_sym_RBRACE, + [62440] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4829), 1, - anon_sym_RBRACE, - [61298] = 2, + aux_sym_preproc_if_token2, + [62447] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4831), 1, - anon_sym_SEMI, - [61305] = 2, + aux_sym_preproc_if_token2, + [62454] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4833), 1, - anon_sym_SEMI, - [61312] = 2, + aux_sym_preproc_if_token2, + [62461] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4835), 1, - sym_primitive_type, - [61319] = 2, + sym_identifier, + [62468] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4837), 1, - anon_sym_COLON, - [61326] = 2, + sym_identifier, + [62475] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4839), 1, - sym_identifier, - [61333] = 2, - ACTIONS(3), 1, + anon_sym_COLON, + [62482] = 2, + ACTIONS(3294), 1, sym_comment, ACTIONS(4841), 1, - aux_sym_preproc_if_token2, - [61340] = 2, + aux_sym_preproc_include_token2, + [62489] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3140), 1, + anon_sym_SEMI, + [62496] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3170), 1, + anon_sym_COLON, + [62503] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4843), 1, - anon_sym_RPAREN, - [61347] = 2, + aux_sym_preproc_if_token2, + [62510] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4845), 1, - sym_identifier, - [61354] = 2, - ACTIONS(3230), 1, + aux_sym_preproc_if_token2, + [62517] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4847), 1, - aux_sym_preproc_include_token2, - [61361] = 2, + sym_identifier, + [62524] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4849), 1, - anon_sym_RBRACE, - [61368] = 2, - ACTIONS(3), 1, + sym_identifier, + [62531] = 2, + ACTIONS(3046), 1, + aux_sym_preproc_include_token2, + ACTIONS(3294), 1, sym_comment, - ACTIONS(4851), 1, - aux_sym_preproc_if_token2, - [61375] = 2, + [62538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3099), 1, - anon_sym_RPAREN, - [61382] = 2, + ACTIONS(4851), 1, + sym_identifier, + [62545] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4853), 1, - anon_sym_RPAREN, - [61389] = 2, + anon_sym_SEMI, + [62552] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4855), 1, - aux_sym_preproc_if_token2, - [61396] = 2, + anon_sym_RBRACE, + [62559] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4857), 1, - sym_identifier, - [61403] = 2, + aux_sym_preproc_if_token2, + [62566] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4859), 1, - sym_identifier, - [61410] = 2, + aux_sym_preproc_if_token2, + [62573] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4861), 1, - anon_sym_LPAREN2, - [61417] = 2, + aux_sym_preproc_if_token2, + [62580] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4863), 1, - anon_sym_RPAREN, - [61424] = 2, - ACTIONS(3230), 1, + sym_identifier, + [62587] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4865), 1, - aux_sym_preproc_include_token2, - [61431] = 2, + anon_sym_RPAREN, + [62594] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4867), 1, aux_sym_preproc_if_token2, - [61438] = 2, + [62601] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4869), 1, - sym_identifier, - [61445] = 2, + aux_sym_preproc_if_token2, + [62608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 1, - anon_sym_SEMI, - [61452] = 2, + ACTIONS(3068), 1, + anon_sym_RBRACE, + [62615] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4871), 1, - anon_sym_RPAREN, - [61459] = 2, + anon_sym_LPAREN2, + [62622] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3076), 1, + anon_sym_SEMI, + [62629] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4873), 1, - anon_sym_RPAREN, - [61466] = 2, + sym_identifier, + [62636] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4875), 1, - anon_sym_RBRACE, - [61473] = 2, + anon_sym_STAR, + [62643] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3138), 1, + anon_sym_SEMI, + [62650] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4877), 1, aux_sym_preproc_if_token2, - [61480] = 2, + [62657] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4879), 1, - anon_sym_COMMA, - [61487] = 2, + aux_sym_preproc_if_token2, + [62664] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4881), 1, sym_identifier, - [61494] = 2, + [62671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4883), 1, - aux_sym_preproc_if_token2, - [61501] = 2, + ACTIONS(3088), 1, + anon_sym_SEMI, + [62678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, - anon_sym_COMMA, - [61508] = 2, + ACTIONS(4883), 1, + anon_sym_RPAREN, + [62685] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4885), 1, - anon_sym_RBRACE, - [61515] = 2, + anon_sym_RPAREN, + [62692] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4887), 1, - sym_identifier, - [61522] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [62699] = 2, + ACTIONS(3294), 1, sym_comment, ACTIONS(4889), 1, - aux_sym_preproc_if_token2, - [61529] = 2, + aux_sym_preproc_include_token2, + [62706] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4891), 1, - sym_primitive_type, - [61536] = 2, + aux_sym_preproc_if_token2, + [62713] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4893), 1, - anon_sym_RPAREN, - [61543] = 2, + aux_sym_preproc_if_token2, + [62720] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4895), 1, - sym_identifier, - [61550] = 2, + aux_sym_preproc_if_token2, + [62727] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4897), 1, - sym_identifier, - [61557] = 2, + anon_sym_COLON, + [62734] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4899), 1, - anon_sym_LPAREN2, - [61564] = 2, + sym_identifier, + [62741] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4901), 1, - anon_sym_RPAREN, - [61571] = 2, + sym_identifier, + [62748] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4903), 1, sym_identifier, - [61578] = 2, + [62755] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4905), 1, sym_identifier, - [61585] = 2, - ACTIONS(2114), 1, - aux_sym_preproc_include_token2, - ACTIONS(3230), 1, - sym_comment, - [61592] = 2, + [62762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 1, + ACTIONS(4534), 1, anon_sym_RBRACE, - [61599] = 2, + [62769] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4907), 1, - anon_sym_RPAREN, - [61606] = 2, + anon_sym_SEMI, + [62776] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4909), 1, - aux_sym_preproc_if_token2, - [61613] = 2, + sym_identifier, + [62783] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3160), 1, + anon_sym_SEMI, + [62790] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4911), 1, - anon_sym_STAR, - [61620] = 2, + anon_sym_while, + [62797] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4913), 1, - anon_sym_LPAREN2, - [61627] = 2, + aux_sym_preproc_if_token2, + [62804] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4915), 1, aux_sym_preproc_if_token2, - [61634] = 2, + [62811] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4532), 1, + anon_sym_COMMA, + [62818] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4917), 1, - aux_sym_preproc_if_token2, - [61641] = 2, + anon_sym_LPAREN2, + [62825] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4919), 1, - aux_sym_preproc_if_token2, - [61648] = 2, + sym_identifier, + [62832] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4921), 1, aux_sym_preproc_if_token2, - [61655] = 2, + [62839] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4923), 1, - anon_sym_RPAREN, - [61662] = 2, + aux_sym_preproc_if_token2, + [62846] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4925), 1, - anon_sym_SEMI, - [61669] = 2, + aux_sym_preproc_if_token2, + [62853] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4927), 1, - aux_sym_preproc_if_token2, - [61676] = 2, + sym_identifier, + [62860] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4929), 1, aux_sym_preproc_if_token2, - [61683] = 2, + [62867] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3154), 1, + anon_sym_SEMI, + [62874] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4931), 1, - anon_sym_while, - [61690] = 2, + aux_sym_preproc_if_token2, + [62881] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4933), 1, - anon_sym_LPAREN2, - [61697] = 2, + sym_identifier, + [62888] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4935), 1, - sym_identifier, - [61704] = 2, + anon_sym_SEMI, + [62895] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4937), 1, - aux_sym_preproc_if_token2, - [61711] = 2, + anon_sym_SEMI, + [62902] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4939), 1, - aux_sym_preproc_if_token2, - [61718] = 2, + anon_sym_SEMI, + [62909] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4941), 1, sym_identifier, - [61725] = 2, + [62916] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4943), 1, sym_identifier, - [61732] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3075), 1, - anon_sym_COLON, - [61739] = 2, + [62923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3063), 1, - anon_sym_COLON, - [61746] = 2, + ACTIONS(4945), 1, + sym_identifier, + [62930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4945), 1, - anon_sym_SEMI, - [61753] = 2, + ACTIONS(3142), 1, + anon_sym_RPAREN, + [62937] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4947), 1, - anon_sym_LPAREN2, - [61760] = 2, + anon_sym_RPAREN, + [62944] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4949), 1, anon_sym_SEMI, - [61767] = 2, + [62951] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4951), 1, - anon_sym_SEMI, - [61774] = 2, + anon_sym_RPAREN, + [62958] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4953), 1, - anon_sym_while, - [61781] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3059), 1, - anon_sym_SEMI, - [61788] = 2, - ACTIONS(2993), 1, - aux_sym_preproc_include_token2, - ACTIONS(3230), 1, - sym_comment, - [61795] = 2, - ACTIONS(2989), 1, - aux_sym_preproc_include_token2, - ACTIONS(3230), 1, - sym_comment, - [61802] = 2, + anon_sym_LPAREN2, + [62965] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4955), 1, - anon_sym_RBRACK, - [61809] = 2, + anon_sym_LPAREN2, + [62972] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(3134), 1, + anon_sym_RPAREN, + [62979] = 2, + ACTIONS(3294), 1, + sym_comment, ACTIONS(4957), 1, - anon_sym_SEMI, - [61816] = 2, + aux_sym_preproc_include_token2, + [62986] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4959), 1, - aux_sym_preproc_if_token2, - [61823] = 2, - ACTIONS(3230), 1, + anon_sym_STAR, + [62993] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4961), 1, - aux_sym_preproc_include_token2, - [61830] = 2, + aux_sym_preproc_if_token2, + [63000] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4963), 1, - anon_sym_while, - [61837] = 2, + anon_sym_RPAREN, + [63007] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4965), 1, aux_sym_preproc_if_token2, - [61844] = 2, + [63014] = 2, + ACTIONS(3294), 1, + sym_comment, + ACTIONS(4249), 1, + aux_sym_preproc_include_token2, + [63021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4967), 1, + ACTIONS(3196), 1, anon_sym_RPAREN, - [61851] = 2, - ACTIONS(3230), 1, + [63028] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4967), 1, + anon_sym_while, + [63035] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4969), 1, - aux_sym_preproc_include_token2, - [61858] = 2, + ts_builtin_sym_end, + [63042] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4971), 1, - sym_identifier, - [61865] = 2, + aux_sym_preproc_if_token2, + [63049] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4973), 1, - anon_sym_LPAREN2, - [61872] = 2, + aux_sym_preproc_if_token2, + [63056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, - anon_sym_COLON, - [61879] = 2, + ACTIONS(3166), 1, + anon_sym_RPAREN, + [63063] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4975), 1, - anon_sym_RPAREN, - [61886] = 2, + anon_sym_LPAREN2, + [63070] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4977), 1, anon_sym_LPAREN2, - [61893] = 2, + [63077] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3090), 1, + anon_sym_COLON, + [63084] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4979), 1, - aux_sym_preproc_if_token2, - [61900] = 2, + anon_sym_LPAREN2, + [63091] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4981), 1, sym_identifier, + [63098] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4983), 1, + anon_sym_LPAREN2, + [63105] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4985), 1, + anon_sym_SEMI, + [63112] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4987), 1, + anon_sym_SEMI, + [63119] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4989), 1, + anon_sym_while, + [63126] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4991), 1, + anon_sym_LPAREN2, + [63133] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4993), 1, + sym_primitive_type, + [63140] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4995), 1, + anon_sym_COLON, + [63147] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4997), 1, + aux_sym_preproc_if_token2, + [63154] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4999), 1, + anon_sym_RPAREN, + [63161] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5001), 1, + sym_identifier, + [63168] = 2, + ACTIONS(2134), 1, + aux_sym_preproc_include_token2, + ACTIONS(3294), 1, + sym_comment, + [63175] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5003), 1, + anon_sym_while, + [63182] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5005), 1, + aux_sym_preproc_if_token2, + [63189] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5007), 1, + anon_sym_LPAREN2, + [63196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5009), 1, + anon_sym_LPAREN2, + [63203] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5011), 1, + anon_sym_SEMI, + [63210] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5013), 1, + anon_sym_LPAREN2, + [63217] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5015), 1, + anon_sym_LPAREN2, + [63224] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5017), 1, + anon_sym_RPAREN, + [63231] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5019), 1, + anon_sym_LPAREN2, + [63238] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5021), 1, + sym_identifier, + [63245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5023), 1, + sym_identifier, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(496)] = 0, - [SMALL_STATE(497)] = 115, - [SMALL_STATE(498)] = 230, - [SMALL_STATE(499)] = 342, - [SMALL_STATE(500)] = 451, - [SMALL_STATE(501)] = 560, - [SMALL_STATE(502)] = 669, - [SMALL_STATE(503)] = 778, - [SMALL_STATE(504)] = 887, - [SMALL_STATE(505)] = 996, - [SMALL_STATE(506)] = 1105, - [SMALL_STATE(507)] = 1214, - [SMALL_STATE(508)] = 1321, - [SMALL_STATE(509)] = 1428, - [SMALL_STATE(510)] = 1537, - [SMALL_STATE(511)] = 1646, - [SMALL_STATE(512)] = 1755, - [SMALL_STATE(513)] = 1864, - [SMALL_STATE(514)] = 1973, - [SMALL_STATE(515)] = 2082, - [SMALL_STATE(516)] = 2189, - [SMALL_STATE(517)] = 2298, - [SMALL_STATE(518)] = 2407, - [SMALL_STATE(519)] = 2516, - [SMALL_STATE(520)] = 2625, - [SMALL_STATE(521)] = 2734, - [SMALL_STATE(522)] = 2843, - [SMALL_STATE(523)] = 2952, - [SMALL_STATE(524)] = 3061, - [SMALL_STATE(525)] = 3170, - [SMALL_STATE(526)] = 3279, - [SMALL_STATE(527)] = 3388, - [SMALL_STATE(528)] = 3496, - [SMALL_STATE(529)] = 3600, - [SMALL_STATE(530)] = 3708, - [SMALL_STATE(531)] = 3812, - [SMALL_STATE(532)] = 3920, - [SMALL_STATE(533)] = 4026, - [SMALL_STATE(534)] = 4130, - [SMALL_STATE(535)] = 4234, - [SMALL_STATE(536)] = 4342, - [SMALL_STATE(537)] = 4450, - [SMALL_STATE(538)] = 4554, - [SMALL_STATE(539)] = 4658, - [SMALL_STATE(540)] = 4764, - [SMALL_STATE(541)] = 4868, - [SMALL_STATE(542)] = 4972, - [SMALL_STATE(543)] = 5076, - [SMALL_STATE(544)] = 5184, - [SMALL_STATE(545)] = 5288, - [SMALL_STATE(546)] = 5394, - [SMALL_STATE(547)] = 5497, - [SMALL_STATE(548)] = 5598, - [SMALL_STATE(549)] = 5701, - [SMALL_STATE(550)] = 5804, - [SMALL_STATE(551)] = 5907, - [SMALL_STATE(552)] = 6010, - [SMALL_STATE(553)] = 6113, - [SMALL_STATE(554)] = 6216, - [SMALL_STATE(555)] = 6319, - [SMALL_STATE(556)] = 6422, - [SMALL_STATE(557)] = 6525, - [SMALL_STATE(558)] = 6628, - [SMALL_STATE(559)] = 6731, - [SMALL_STATE(560)] = 6834, - [SMALL_STATE(561)] = 6937, - [SMALL_STATE(562)] = 7040, - [SMALL_STATE(563)] = 7141, - [SMALL_STATE(564)] = 7244, - [SMALL_STATE(565)] = 7345, - [SMALL_STATE(566)] = 7446, - [SMALL_STATE(567)] = 7547, - [SMALL_STATE(568)] = 7648, - [SMALL_STATE(569)] = 7751, - [SMALL_STATE(570)] = 7852, - [SMALL_STATE(571)] = 7955, - [SMALL_STATE(572)] = 8058, - [SMALL_STATE(573)] = 8161, - [SMALL_STATE(574)] = 8264, - [SMALL_STATE(575)] = 8367, - [SMALL_STATE(576)] = 8470, - [SMALL_STATE(577)] = 8573, - [SMALL_STATE(578)] = 8676, - [SMALL_STATE(579)] = 8779, - [SMALL_STATE(580)] = 8882, - [SMALL_STATE(581)] = 8985, - [SMALL_STATE(582)] = 9086, - [SMALL_STATE(583)] = 9189, - [SMALL_STATE(584)] = 9292, - [SMALL_STATE(585)] = 9395, - [SMALL_STATE(586)] = 9496, - [SMALL_STATE(587)] = 9597, - [SMALL_STATE(588)] = 9700, - [SMALL_STATE(589)] = 9801, - [SMALL_STATE(590)] = 9904, - [SMALL_STATE(591)] = 10007, - [SMALL_STATE(592)] = 10108, - [SMALL_STATE(593)] = 10209, - [SMALL_STATE(594)] = 10310, - [SMALL_STATE(595)] = 10411, - [SMALL_STATE(596)] = 10512, - [SMALL_STATE(597)] = 10613, - [SMALL_STATE(598)] = 10716, - [SMALL_STATE(599)] = 10819, - [SMALL_STATE(600)] = 10922, - [SMALL_STATE(601)] = 11025, - [SMALL_STATE(602)] = 11128, - [SMALL_STATE(603)] = 11231, - [SMALL_STATE(604)] = 11332, - [SMALL_STATE(605)] = 11433, - [SMALL_STATE(606)] = 11536, - [SMALL_STATE(607)] = 11637, - [SMALL_STATE(608)] = 11738, - [SMALL_STATE(609)] = 11839, - [SMALL_STATE(610)] = 11940, - [SMALL_STATE(611)] = 12041, - [SMALL_STATE(612)] = 12142, - [SMALL_STATE(613)] = 12243, - [SMALL_STATE(614)] = 12344, - [SMALL_STATE(615)] = 12445, - [SMALL_STATE(616)] = 12546, - [SMALL_STATE(617)] = 12647, - [SMALL_STATE(618)] = 12748, - [SMALL_STATE(619)] = 12851, - [SMALL_STATE(620)] = 12952, - [SMALL_STATE(621)] = 13053, - [SMALL_STATE(622)] = 13156, - [SMALL_STATE(623)] = 13259, - [SMALL_STATE(624)] = 13362, - [SMALL_STATE(625)] = 13465, - [SMALL_STATE(626)] = 13568, - [SMALL_STATE(627)] = 13671, - [SMALL_STATE(628)] = 13774, - [SMALL_STATE(629)] = 13875, - [SMALL_STATE(630)] = 13978, - [SMALL_STATE(631)] = 14081, - [SMALL_STATE(632)] = 14184, - [SMALL_STATE(633)] = 14287, - [SMALL_STATE(634)] = 14390, - [SMALL_STATE(635)] = 14493, - [SMALL_STATE(636)] = 14596, - [SMALL_STATE(637)] = 14699, - [SMALL_STATE(638)] = 14802, - [SMALL_STATE(639)] = 14905, - [SMALL_STATE(640)] = 15008, - [SMALL_STATE(641)] = 15111, - [SMALL_STATE(642)] = 15212, - [SMALL_STATE(643)] = 15313, - [SMALL_STATE(644)] = 15416, - [SMALL_STATE(645)] = 15517, - [SMALL_STATE(646)] = 15618, - [SMALL_STATE(647)] = 15719, - [SMALL_STATE(648)] = 15820, - [SMALL_STATE(649)] = 15921, - [SMALL_STATE(650)] = 16022, - [SMALL_STATE(651)] = 16123, - [SMALL_STATE(652)] = 16224, - [SMALL_STATE(653)] = 16327, - [SMALL_STATE(654)] = 16428, - [SMALL_STATE(655)] = 16529, - [SMALL_STATE(656)] = 16630, - [SMALL_STATE(657)] = 16733, - [SMALL_STATE(658)] = 16836, - [SMALL_STATE(659)] = 16937, - [SMALL_STATE(660)] = 17040, - [SMALL_STATE(661)] = 17143, - [SMALL_STATE(662)] = 17231, - [SMALL_STATE(663)] = 17302, - [SMALL_STATE(664)] = 17403, - [SMALL_STATE(665)] = 17474, - [SMALL_STATE(666)] = 17575, - [SMALL_STATE(667)] = 17676, - [SMALL_STATE(668)] = 17777, - [SMALL_STATE(669)] = 17848, - [SMALL_STATE(670)] = 17916, - [SMALL_STATE(671)] = 17979, - [SMALL_STATE(672)] = 18042, - [SMALL_STATE(673)] = 18104, - [SMALL_STATE(674)] = 18166, - [SMALL_STATE(675)] = 18228, - [SMALL_STATE(676)] = 18290, - [SMALL_STATE(677)] = 18352, - [SMALL_STATE(678)] = 18414, - [SMALL_STATE(679)] = 18476, - [SMALL_STATE(680)] = 18538, - [SMALL_STATE(681)] = 18600, - [SMALL_STATE(682)] = 18662, - [SMALL_STATE(683)] = 18721, - [SMALL_STATE(684)] = 18780, - [SMALL_STATE(685)] = 18839, - [SMALL_STATE(686)] = 18910, - [SMALL_STATE(687)] = 18969, - [SMALL_STATE(688)] = 19034, - [SMALL_STATE(689)] = 19126, - [SMALL_STATE(690)] = 19184, - [SMALL_STATE(691)] = 19242, - [SMALL_STATE(692)] = 19300, - [SMALL_STATE(693)] = 19392, - [SMALL_STATE(694)] = 19484, - [SMALL_STATE(695)] = 19576, - [SMALL_STATE(696)] = 19668, - [SMALL_STATE(697)] = 19726, - [SMALL_STATE(698)] = 19784, - [SMALL_STATE(699)] = 19878, - [SMALL_STATE(700)] = 19970, - [SMALL_STATE(701)] = 20062, - [SMALL_STATE(702)] = 20120, - [SMALL_STATE(703)] = 20178, - [SMALL_STATE(704)] = 20270, - [SMALL_STATE(705)] = 20328, - [SMALL_STATE(706)] = 20420, - [SMALL_STATE(707)] = 20478, - [SMALL_STATE(708)] = 20536, - [SMALL_STATE(709)] = 20594, - [SMALL_STATE(710)] = 20686, - [SMALL_STATE(711)] = 20778, - [SMALL_STATE(712)] = 20870, - [SMALL_STATE(713)] = 20928, - [SMALL_STATE(714)] = 20986, - [SMALL_STATE(715)] = 21044, - [SMALL_STATE(716)] = 21102, - [SMALL_STATE(717)] = 21194, - [SMALL_STATE(718)] = 21286, - [SMALL_STATE(719)] = 21344, - [SMALL_STATE(720)] = 21436, - [SMALL_STATE(721)] = 21528, - [SMALL_STATE(722)] = 21620, - [SMALL_STATE(723)] = 21685, - [SMALL_STATE(724)] = 21742, - [SMALL_STATE(725)] = 21807, - [SMALL_STATE(726)] = 21874, - [SMALL_STATE(727)] = 21931, - [SMALL_STATE(728)] = 21988, - [SMALL_STATE(729)] = 22055, - [SMALL_STATE(730)] = 22112, - [SMALL_STATE(731)] = 22169, - [SMALL_STATE(732)] = 22260, - [SMALL_STATE(733)] = 22327, - [SMALL_STATE(734)] = 22394, - [SMALL_STATE(735)] = 22483, - [SMALL_STATE(736)] = 22572, - [SMALL_STATE(737)] = 22633, - [SMALL_STATE(738)] = 22700, - [SMALL_STATE(739)] = 22764, - [SMALL_STATE(740)] = 22826, - [SMALL_STATE(741)] = 22908, - [SMALL_STATE(742)] = 22990, - [SMALL_STATE(743)] = 23072, - [SMALL_STATE(744)] = 23154, - [SMALL_STATE(745)] = 23236, - [SMALL_STATE(746)] = 23318, - [SMALL_STATE(747)] = 23372, - [SMALL_STATE(748)] = 23454, - [SMALL_STATE(749)] = 23536, - [SMALL_STATE(750)] = 23597, - [SMALL_STATE(751)] = 23676, - [SMALL_STATE(752)] = 23739, - [SMALL_STATE(753)] = 23802, - [SMALL_STATE(754)] = 23865, - [SMALL_STATE(755)] = 23928, - [SMALL_STATE(756)] = 23989, - [SMALL_STATE(757)] = 24050, - [SMALL_STATE(758)] = 24113, - [SMALL_STATE(759)] = 24174, - [SMALL_STATE(760)] = 24227, - [SMALL_STATE(761)] = 24280, - [SMALL_STATE(762)] = 24343, - [SMALL_STATE(763)] = 24404, - [SMALL_STATE(764)] = 24486, - [SMALL_STATE(765)] = 24538, - [SMALL_STATE(766)] = 24624, - [SMALL_STATE(767)] = 24676, - [SMALL_STATE(768)] = 24762, - [SMALL_STATE(769)] = 24828, - [SMALL_STATE(770)] = 24896, - [SMALL_STATE(771)] = 24968, - [SMALL_STATE(772)] = 25042, - [SMALL_STATE(773)] = 25094, - [SMALL_STATE(774)] = 25170, - [SMALL_STATE(775)] = 25230, - [SMALL_STATE(776)] = 25308, - [SMALL_STATE(777)] = 25388, - [SMALL_STATE(778)] = 25452, - [SMALL_STATE(779)] = 25538, - [SMALL_STATE(780)] = 25613, - [SMALL_STATE(781)] = 25668, - [SMALL_STATE(782)] = 25723, - [SMALL_STATE(783)] = 25778, - [SMALL_STATE(784)] = 25833, - [SMALL_STATE(785)] = 25888, - [SMALL_STATE(786)] = 25951, - [SMALL_STATE(787)] = 26016, - [SMALL_STATE(788)] = 26079, - [SMALL_STATE(789)] = 26160, - [SMALL_STATE(790)] = 26239, - [SMALL_STATE(791)] = 26316, - [SMALL_STATE(792)] = 26379, - [SMALL_STATE(793)] = 26434, - [SMALL_STATE(794)] = 26497, - [SMALL_STATE(795)] = 26570, - [SMALL_STATE(796)] = 26625, - [SMALL_STATE(797)] = 26710, - [SMALL_STATE(798)] = 26777, - [SMALL_STATE(799)] = 26862, - [SMALL_STATE(800)] = 26925, - [SMALL_STATE(801)] = 26996, - [SMALL_STATE(802)] = 27051, - [SMALL_STATE(803)] = 27136, - [SMALL_STATE(804)] = 27191, - [SMALL_STATE(805)] = 27246, - [SMALL_STATE(806)] = 27301, - [SMALL_STATE(807)] = 27356, - [SMALL_STATE(808)] = 27406, - [SMALL_STATE(809)] = 27456, - [SMALL_STATE(810)] = 27506, - [SMALL_STATE(811)] = 27560, - [SMALL_STATE(812)] = 27614, - [SMALL_STATE(813)] = 27664, + [SMALL_STATE(498)] = 0, + [SMALL_STATE(499)] = 115, + [SMALL_STATE(500)] = 230, + [SMALL_STATE(501)] = 345, + [SMALL_STATE(502)] = 460, + [SMALL_STATE(503)] = 575, + [SMALL_STATE(504)] = 690, + [SMALL_STATE(505)] = 805, + [SMALL_STATE(506)] = 920, + [SMALL_STATE(507)] = 1032, + [SMALL_STATE(508)] = 1141, + [SMALL_STATE(509)] = 1248, + [SMALL_STATE(510)] = 1357, + [SMALL_STATE(511)] = 1466, + [SMALL_STATE(512)] = 1575, + [SMALL_STATE(513)] = 1684, + [SMALL_STATE(514)] = 1793, + [SMALL_STATE(515)] = 1902, + [SMALL_STATE(516)] = 2011, + [SMALL_STATE(517)] = 2120, + [SMALL_STATE(518)] = 2227, + [SMALL_STATE(519)] = 2336, + [SMALL_STATE(520)] = 2445, + [SMALL_STATE(521)] = 2554, + [SMALL_STATE(522)] = 2663, + [SMALL_STATE(523)] = 2772, + [SMALL_STATE(524)] = 2881, + [SMALL_STATE(525)] = 2990, + [SMALL_STATE(526)] = 3099, + [SMALL_STATE(527)] = 3208, + [SMALL_STATE(528)] = 3317, + [SMALL_STATE(529)] = 3426, + [SMALL_STATE(530)] = 3535, + [SMALL_STATE(531)] = 3642, + [SMALL_STATE(532)] = 3751, + [SMALL_STATE(533)] = 3860, + [SMALL_STATE(534)] = 3969, + [SMALL_STATE(535)] = 4078, + [SMALL_STATE(536)] = 4182, + [SMALL_STATE(537)] = 4288, + [SMALL_STATE(538)] = 4394, + [SMALL_STATE(539)] = 4498, + [SMALL_STATE(540)] = 4602, + [SMALL_STATE(541)] = 4706, + [SMALL_STATE(542)] = 4812, + [SMALL_STATE(543)] = 4916, + [SMALL_STATE(544)] = 5024, + [SMALL_STATE(545)] = 5132, + [SMALL_STATE(546)] = 5222, + [SMALL_STATE(547)] = 5326, + [SMALL_STATE(548)] = 5430, + [SMALL_STATE(549)] = 5538, + [SMALL_STATE(550)] = 5642, + [SMALL_STATE(551)] = 5746, + [SMALL_STATE(552)] = 5850, + [SMALL_STATE(553)] = 5958, + [SMALL_STATE(554)] = 6061, + [SMALL_STATE(555)] = 6164, + [SMALL_STATE(556)] = 6267, + [SMALL_STATE(557)] = 6370, + [SMALL_STATE(558)] = 6473, + [SMALL_STATE(559)] = 6576, + [SMALL_STATE(560)] = 6679, + [SMALL_STATE(561)] = 6782, + [SMALL_STATE(562)] = 6885, + [SMALL_STATE(563)] = 6986, + [SMALL_STATE(564)] = 7089, + [SMALL_STATE(565)] = 7192, + [SMALL_STATE(566)] = 7295, + [SMALL_STATE(567)] = 7398, + [SMALL_STATE(568)] = 7501, + [SMALL_STATE(569)] = 7604, + [SMALL_STATE(570)] = 7707, + [SMALL_STATE(571)] = 7810, + [SMALL_STATE(572)] = 7913, + [SMALL_STATE(573)] = 8016, + [SMALL_STATE(574)] = 8117, + [SMALL_STATE(575)] = 8220, + [SMALL_STATE(576)] = 8323, + [SMALL_STATE(577)] = 8426, + [SMALL_STATE(578)] = 8529, + [SMALL_STATE(579)] = 8632, + [SMALL_STATE(580)] = 8735, + [SMALL_STATE(581)] = 8838, + [SMALL_STATE(582)] = 8941, + [SMALL_STATE(583)] = 9044, + [SMALL_STATE(584)] = 9147, + [SMALL_STATE(585)] = 9248, + [SMALL_STATE(586)] = 9351, + [SMALL_STATE(587)] = 9452, + [SMALL_STATE(588)] = 9553, + [SMALL_STATE(589)] = 9656, + [SMALL_STATE(590)] = 9757, + [SMALL_STATE(591)] = 9860, + [SMALL_STATE(592)] = 9963, + [SMALL_STATE(593)] = 10066, + [SMALL_STATE(594)] = 10169, + [SMALL_STATE(595)] = 10272, + [SMALL_STATE(596)] = 10375, + [SMALL_STATE(597)] = 10476, + [SMALL_STATE(598)] = 10579, + [SMALL_STATE(599)] = 10680, + [SMALL_STATE(600)] = 10781, + [SMALL_STATE(601)] = 10884, + [SMALL_STATE(602)] = 10987, + [SMALL_STATE(603)] = 11088, + [SMALL_STATE(604)] = 11189, + [SMALL_STATE(605)] = 11292, + [SMALL_STATE(606)] = 11393, + [SMALL_STATE(607)] = 11496, + [SMALL_STATE(608)] = 11599, + [SMALL_STATE(609)] = 11702, + [SMALL_STATE(610)] = 11805, + [SMALL_STATE(611)] = 11908, + [SMALL_STATE(612)] = 12011, + [SMALL_STATE(613)] = 12112, + [SMALL_STATE(614)] = 12215, + [SMALL_STATE(615)] = 12316, + [SMALL_STATE(616)] = 12419, + [SMALL_STATE(617)] = 12522, + [SMALL_STATE(618)] = 12623, + [SMALL_STATE(619)] = 12726, + [SMALL_STATE(620)] = 12827, + [SMALL_STATE(621)] = 12930, + [SMALL_STATE(622)] = 13033, + [SMALL_STATE(623)] = 13134, + [SMALL_STATE(624)] = 13235, + [SMALL_STATE(625)] = 13336, + [SMALL_STATE(626)] = 13437, + [SMALL_STATE(627)] = 13538, + [SMALL_STATE(628)] = 13639, + [SMALL_STATE(629)] = 13740, + [SMALL_STATE(630)] = 13841, + [SMALL_STATE(631)] = 13942, + [SMALL_STATE(632)] = 14043, + [SMALL_STATE(633)] = 14146, + [SMALL_STATE(634)] = 14247, + [SMALL_STATE(635)] = 14348, + [SMALL_STATE(636)] = 14449, + [SMALL_STATE(637)] = 14552, + [SMALL_STATE(638)] = 14653, + [SMALL_STATE(639)] = 14754, + [SMALL_STATE(640)] = 14855, + [SMALL_STATE(641)] = 14958, + [SMALL_STATE(642)] = 15061, + [SMALL_STATE(643)] = 15162, + [SMALL_STATE(644)] = 15263, + [SMALL_STATE(645)] = 15364, + [SMALL_STATE(646)] = 15465, + [SMALL_STATE(647)] = 15566, + [SMALL_STATE(648)] = 15667, + [SMALL_STATE(649)] = 15768, + [SMALL_STATE(650)] = 15869, + [SMALL_STATE(651)] = 15972, + [SMALL_STATE(652)] = 16075, + [SMALL_STATE(653)] = 16178, + [SMALL_STATE(654)] = 16281, + [SMALL_STATE(655)] = 16382, + [SMALL_STATE(656)] = 16483, + [SMALL_STATE(657)] = 16584, + [SMALL_STATE(658)] = 16687, + [SMALL_STATE(659)] = 16788, + [SMALL_STATE(660)] = 16889, + [SMALL_STATE(661)] = 16990, + [SMALL_STATE(662)] = 17091, + [SMALL_STATE(663)] = 17194, + [SMALL_STATE(664)] = 17297, + [SMALL_STATE(665)] = 17400, + [SMALL_STATE(666)] = 17503, + [SMALL_STATE(667)] = 17606, + [SMALL_STATE(668)] = 17707, + [SMALL_STATE(669)] = 17778, + [SMALL_STATE(670)] = 17849, + [SMALL_STATE(671)] = 17920, + [SMALL_STATE(672)] = 17988, + [SMALL_STATE(673)] = 18051, + [SMALL_STATE(674)] = 18114, + [SMALL_STATE(675)] = 18192, + [SMALL_STATE(676)] = 18254, + [SMALL_STATE(677)] = 18316, + [SMALL_STATE(678)] = 18378, + [SMALL_STATE(679)] = 18440, + [SMALL_STATE(680)] = 18502, + [SMALL_STATE(681)] = 18564, + [SMALL_STATE(682)] = 18626, + [SMALL_STATE(683)] = 18688, + [SMALL_STATE(684)] = 18750, + [SMALL_STATE(685)] = 18812, + [SMALL_STATE(686)] = 18911, + [SMALL_STATE(687)] = 19010, + [SMALL_STATE(688)] = 19109, + [SMALL_STATE(689)] = 19208, + [SMALL_STATE(690)] = 19307, + [SMALL_STATE(691)] = 19406, + [SMALL_STATE(692)] = 19505, + [SMALL_STATE(693)] = 19604, + [SMALL_STATE(694)] = 19703, + [SMALL_STATE(695)] = 19802, + [SMALL_STATE(696)] = 19901, + [SMALL_STATE(697)] = 20002, + [SMALL_STATE(698)] = 20101, + [SMALL_STATE(699)] = 20200, + [SMALL_STATE(700)] = 20299, + [SMALL_STATE(701)] = 20398, + [SMALL_STATE(702)] = 20497, + [SMALL_STATE(703)] = 20596, + [SMALL_STATE(704)] = 20692, + [SMALL_STATE(705)] = 20788, + [SMALL_STATE(706)] = 20886, + [SMALL_STATE(707)] = 20955, + [SMALL_STATE(708)] = 21020, + [SMALL_STATE(709)] = 21079, + [SMALL_STATE(710)] = 21138, + [SMALL_STATE(711)] = 21197, + [SMALL_STATE(712)] = 21256, + [SMALL_STATE(713)] = 21315, + [SMALL_STATE(714)] = 21373, + [SMALL_STATE(715)] = 21431, + [SMALL_STATE(716)] = 21489, + [SMALL_STATE(717)] = 21547, + [SMALL_STATE(718)] = 21605, + [SMALL_STATE(719)] = 21663, + [SMALL_STATE(720)] = 21721, + [SMALL_STATE(721)] = 21779, + [SMALL_STATE(722)] = 21837, + [SMALL_STATE(723)] = 21895, + [SMALL_STATE(724)] = 21953, + [SMALL_STATE(725)] = 22011, + [SMALL_STATE(726)] = 22069, + [SMALL_STATE(727)] = 22127, + [SMALL_STATE(728)] = 22185, + [SMALL_STATE(729)] = 22243, + [SMALL_STATE(730)] = 22310, + [SMALL_STATE(731)] = 22399, + [SMALL_STATE(732)] = 22464, + [SMALL_STATE(733)] = 22525, + [SMALL_STATE(734)] = 22614, + [SMALL_STATE(735)] = 22681, + [SMALL_STATE(736)] = 22770, + [SMALL_STATE(737)] = 22859, + [SMALL_STATE(738)] = 22916, + [SMALL_STATE(739)] = 22973, + [SMALL_STATE(740)] = 23040, + [SMALL_STATE(741)] = 23107, + [SMALL_STATE(742)] = 23164, + [SMALL_STATE(743)] = 23221, + [SMALL_STATE(744)] = 23310, + [SMALL_STATE(745)] = 23399, + [SMALL_STATE(746)] = 23488, + [SMALL_STATE(747)] = 23553, + [SMALL_STATE(748)] = 23620, + [SMALL_STATE(749)] = 23709, + [SMALL_STATE(750)] = 23773, + [SMALL_STATE(751)] = 23829, + [SMALL_STATE(752)] = 23885, + [SMALL_STATE(753)] = 23971, + [SMALL_STATE(754)] = 24034, + [SMALL_STATE(755)] = 24089, + [SMALL_STATE(756)] = 24152, + [SMALL_STATE(757)] = 24215, + [SMALL_STATE(758)] = 24270, + [SMALL_STATE(759)] = 24333, + [SMALL_STATE(760)] = 24388, + [SMALL_STATE(761)] = 24451, + [SMALL_STATE(762)] = 24505, + [SMALL_STATE(763)] = 24559, + [SMALL_STATE(764)] = 24629, + [SMALL_STATE(765)] = 24699, + [SMALL_STATE(766)] = 24769, + [SMALL_STATE(767)] = 24823, + [SMALL_STATE(768)] = 24893, + [SMALL_STATE(769)] = 24950, + [SMALL_STATE(770)] = 25007, + [SMALL_STATE(771)] = 25064, + [SMALL_STATE(772)] = 25127, + [SMALL_STATE(773)] = 25184, + [SMALL_STATE(774)] = 25247, + [SMALL_STATE(775)] = 25304, + [SMALL_STATE(776)] = 25361, + [SMALL_STATE(777)] = 25418, + [SMALL_STATE(778)] = 25481, + [SMALL_STATE(779)] = 25544, + [SMALL_STATE(780)] = 25601, + [SMALL_STATE(781)] = 25664, + [SMALL_STATE(782)] = 25727, + [SMALL_STATE(783)] = 25784, + [SMALL_STATE(784)] = 25841, + [SMALL_STATE(785)] = 25898, + [SMALL_STATE(786)] = 25958, + [SMALL_STATE(787)] = 26044, + [SMALL_STATE(788)] = 26100, + [SMALL_STATE(789)] = 26152, + [SMALL_STATE(790)] = 26230, + [SMALL_STATE(791)] = 26282, + [SMALL_STATE(792)] = 26334, + [SMALL_STATE(793)] = 26386, + [SMALL_STATE(794)] = 26444, + [SMALL_STATE(795)] = 26526, + [SMALL_STATE(796)] = 26582, + [SMALL_STATE(797)] = 26638, + [SMALL_STATE(798)] = 26694, + [SMALL_STATE(799)] = 26774, + [SMALL_STATE(800)] = 26848, + [SMALL_STATE(801)] = 26900, + [SMALL_STATE(802)] = 26952, + [SMALL_STATE(803)] = 27016, + [SMALL_STATE(804)] = 27068, + [SMALL_STATE(805)] = 27140, + [SMALL_STATE(806)] = 27192, + [SMALL_STATE(807)] = 27260, + [SMALL_STATE(808)] = 27312, + [SMALL_STATE(809)] = 27364, + [SMALL_STATE(810)] = 27430, + [SMALL_STATE(811)] = 27482, + [SMALL_STATE(812)] = 27568, + [SMALL_STATE(813)] = 27628, [SMALL_STATE(814)] = 27714, - [SMALL_STATE(815)] = 27768, - [SMALL_STATE(816)] = 27822, - [SMALL_STATE(817)] = 27872, - [SMALL_STATE(818)] = 27926, - [SMALL_STATE(819)] = 27976, - [SMALL_STATE(820)] = 28026, - [SMALL_STATE(821)] = 28076, - [SMALL_STATE(822)] = 28126, - [SMALL_STATE(823)] = 28176, - [SMALL_STATE(824)] = 28226, - [SMALL_STATE(825)] = 28276, - [SMALL_STATE(826)] = 28326, - [SMALL_STATE(827)] = 28376, - [SMALL_STATE(828)] = 28426, - [SMALL_STATE(829)] = 28476, - [SMALL_STATE(830)] = 28526, - [SMALL_STATE(831)] = 28576, - [SMALL_STATE(832)] = 28630, - [SMALL_STATE(833)] = 28680, - [SMALL_STATE(834)] = 28734, - [SMALL_STATE(835)] = 28784, - [SMALL_STATE(836)] = 28840, - [SMALL_STATE(837)] = 28890, - [SMALL_STATE(838)] = 28940, - [SMALL_STATE(839)] = 28990, - [SMALL_STATE(840)] = 29040, - [SMALL_STATE(841)] = 29090, - [SMALL_STATE(842)] = 29140, - [SMALL_STATE(843)] = 29196, - [SMALL_STATE(844)] = 29254, - [SMALL_STATE(845)] = 29308, - [SMALL_STATE(846)] = 29357, - [SMALL_STATE(847)] = 29406, - [SMALL_STATE(848)] = 29455, - [SMALL_STATE(849)] = 29504, - [SMALL_STATE(850)] = 29553, - [SMALL_STATE(851)] = 29602, - [SMALL_STATE(852)] = 29651, - [SMALL_STATE(853)] = 29700, - [SMALL_STATE(854)] = 29749, - [SMALL_STATE(855)] = 29798, - [SMALL_STATE(856)] = 29847, - [SMALL_STATE(857)] = 29896, - [SMALL_STATE(858)] = 29945, - [SMALL_STATE(859)] = 29994, - [SMALL_STATE(860)] = 30043, - [SMALL_STATE(861)] = 30092, - [SMALL_STATE(862)] = 30141, - [SMALL_STATE(863)] = 30190, - [SMALL_STATE(864)] = 30252, - [SMALL_STATE(865)] = 30314, - [SMALL_STATE(866)] = 30376, - [SMALL_STATE(867)] = 30434, - [SMALL_STATE(868)] = 30496, - [SMALL_STATE(869)] = 30555, - [SMALL_STATE(870)] = 30616, - [SMALL_STATE(871)] = 30695, - [SMALL_STATE(872)] = 30778, - [SMALL_STATE(873)] = 30857, - [SMALL_STATE(874)] = 30920, - [SMALL_STATE(875)] = 30985, - [SMALL_STATE(876)] = 31054, - [SMALL_STATE(877)] = 31125, - [SMALL_STATE(878)] = 31198, - [SMALL_STATE(879)] = 31273, - [SMALL_STATE(880)] = 31350, - [SMALL_STATE(881)] = 31429, - [SMALL_STATE(882)] = 31488, - [SMALL_STATE(883)] = 31571, - [SMALL_STATE(884)] = 31630, - [SMALL_STATE(885)] = 31713, - [SMALL_STATE(886)] = 31768, - [SMALL_STATE(887)] = 31827, - [SMALL_STATE(888)] = 31886, - [SMALL_STATE(889)] = 31943, - [SMALL_STATE(890)] = 31996, - [SMALL_STATE(891)] = 32049, - [SMALL_STATE(892)] = 32095, - [SMALL_STATE(893)] = 32141, - [SMALL_STATE(894)] = 32187, - [SMALL_STATE(895)] = 32237, - [SMALL_STATE(896)] = 32283, - [SMALL_STATE(897)] = 32329, - [SMALL_STATE(898)] = 32375, - [SMALL_STATE(899)] = 32420, - [SMALL_STATE(900)] = 32465, - [SMALL_STATE(901)] = 32510, - [SMALL_STATE(902)] = 32555, - [SMALL_STATE(903)] = 32600, - [SMALL_STATE(904)] = 32645, - [SMALL_STATE(905)] = 32690, - [SMALL_STATE(906)] = 32735, - [SMALL_STATE(907)] = 32784, - [SMALL_STATE(908)] = 32829, - [SMALL_STATE(909)] = 32874, - [SMALL_STATE(910)] = 32919, - [SMALL_STATE(911)] = 32964, - [SMALL_STATE(912)] = 33009, - [SMALL_STATE(913)] = 33054, - [SMALL_STATE(914)] = 33099, - [SMALL_STATE(915)] = 33144, - [SMALL_STATE(916)] = 33189, - [SMALL_STATE(917)] = 33234, - [SMALL_STATE(918)] = 33279, - [SMALL_STATE(919)] = 33324, - [SMALL_STATE(920)] = 33373, - [SMALL_STATE(921)] = 33418, - [SMALL_STATE(922)] = 33463, - [SMALL_STATE(923)] = 33508, - [SMALL_STATE(924)] = 33553, - [SMALL_STATE(925)] = 33602, - [SMALL_STATE(926)] = 33647, - [SMALL_STATE(927)] = 33696, - [SMALL_STATE(928)] = 33741, - [SMALL_STATE(929)] = 33790, - [SMALL_STATE(930)] = 33839, - [SMALL_STATE(931)] = 33884, - [SMALL_STATE(932)] = 33929, - [SMALL_STATE(933)] = 33978, - [SMALL_STATE(934)] = 34023, - [SMALL_STATE(935)] = 34068, - [SMALL_STATE(936)] = 34113, - [SMALL_STATE(937)] = 34158, - [SMALL_STATE(938)] = 34203, - [SMALL_STATE(939)] = 34248, - [SMALL_STATE(940)] = 34293, - [SMALL_STATE(941)] = 34338, - [SMALL_STATE(942)] = 34382, - [SMALL_STATE(943)] = 34426, - [SMALL_STATE(944)] = 34470, - [SMALL_STATE(945)] = 34514, - [SMALL_STATE(946)] = 34558, - [SMALL_STATE(947)] = 34602, - [SMALL_STATE(948)] = 34646, - [SMALL_STATE(949)] = 34690, - [SMALL_STATE(950)] = 34734, - [SMALL_STATE(951)] = 34778, - [SMALL_STATE(952)] = 34833, - [SMALL_STATE(953)] = 34902, - [SMALL_STATE(954)] = 34971, - [SMALL_STATE(955)] = 35040, - [SMALL_STATE(956)] = 35109, - [SMALL_STATE(957)] = 35152, - [SMALL_STATE(958)] = 35204, - [SMALL_STATE(959)] = 35254, - [SMALL_STATE(960)] = 35327, - [SMALL_STATE(961)] = 35404, - [SMALL_STATE(962)] = 35481, - [SMALL_STATE(963)] = 35538, - [SMALL_STATE(964)] = 35597, - [SMALL_STATE(965)] = 35660, - [SMALL_STATE(966)] = 35725, - [SMALL_STATE(967)] = 35792, - [SMALL_STATE(968)] = 35861, - [SMALL_STATE(969)] = 35932, - [SMALL_STATE(970)] = 36009, - [SMALL_STATE(971)] = 36086, - [SMALL_STATE(972)] = 36141, - [SMALL_STATE(973)] = 36211, - [SMALL_STATE(974)] = 36269, - [SMALL_STATE(975)] = 36311, - [SMALL_STATE(976)] = 36379, - [SMALL_STATE(977)] = 36419, - [SMALL_STATE(978)] = 36459, - [SMALL_STATE(979)] = 36499, - [SMALL_STATE(980)] = 36553, - [SMALL_STATE(981)] = 36595, - [SMALL_STATE(982)] = 36637, - [SMALL_STATE(983)] = 36711, - [SMALL_STATE(984)] = 36753, - [SMALL_STATE(985)] = 36827, - [SMALL_STATE(986)] = 36867, - [SMALL_STATE(987)] = 36923, - [SMALL_STATE(988)] = 36963, - [SMALL_STATE(989)] = 37003, - [SMALL_STATE(990)] = 37043, - [SMALL_STATE(991)] = 37083, - [SMALL_STATE(992)] = 37145, - [SMALL_STATE(993)] = 37209, - [SMALL_STATE(994)] = 37275, - [SMALL_STATE(995)] = 37315, - [SMALL_STATE(996)] = 37355, - [SMALL_STATE(997)] = 37395, - [SMALL_STATE(998)] = 37435, - [SMALL_STATE(999)] = 37475, - [SMALL_STATE(1000)] = 37549, - [SMALL_STATE(1001)] = 37617, - [SMALL_STATE(1002)] = 37680, - [SMALL_STATE(1003)] = 37743, - [SMALL_STATE(1004)] = 37808, - [SMALL_STATE(1005)] = 37873, - [SMALL_STATE(1006)] = 37919, - [SMALL_STATE(1007)] = 37979, - [SMALL_STATE(1008)] = 38039, - [SMALL_STATE(1009)] = 38099, - [SMALL_STATE(1010)] = 38159, - [SMALL_STATE(1011)] = 38197, - [SMALL_STATE(1012)] = 38235, - [SMALL_STATE(1013)] = 38273, - [SMALL_STATE(1014)] = 38333, - [SMALL_STATE(1015)] = 38393, - [SMALL_STATE(1016)] = 38453, - [SMALL_STATE(1017)] = 38513, - [SMALL_STATE(1018)] = 38551, - [SMALL_STATE(1019)] = 38625, - [SMALL_STATE(1020)] = 38700, - [SMALL_STATE(1021)] = 38771, - [SMALL_STATE(1022)] = 38846, - [SMALL_STATE(1023)] = 38921, - [SMALL_STATE(1024)] = 38996, - [SMALL_STATE(1025)] = 39071, - [SMALL_STATE(1026)] = 39146, - [SMALL_STATE(1027)] = 39218, - [SMALL_STATE(1028)] = 39288, - [SMALL_STATE(1029)] = 39344, - [SMALL_STATE(1030)] = 39416, - [SMALL_STATE(1031)] = 39488, - [SMALL_STATE(1032)] = 39544, - [SMALL_STATE(1033)] = 39600, - [SMALL_STATE(1034)] = 39656, - [SMALL_STATE(1035)] = 39728, - [SMALL_STATE(1036)] = 39790, - [SMALL_STATE(1037)] = 39846, - [SMALL_STATE(1038)] = 39912, - [SMALL_STATE(1039)] = 39984, - [SMALL_STATE(1040)] = 40056, - [SMALL_STATE(1041)] = 40116, - [SMALL_STATE(1042)] = 40188, - [SMALL_STATE(1043)] = 40244, - [SMALL_STATE(1044)] = 40300, - [SMALL_STATE(1045)] = 40370, - [SMALL_STATE(1046)] = 40442, - [SMALL_STATE(1047)] = 40512, - [SMALL_STATE(1048)] = 40584, - [SMALL_STATE(1049)] = 40640, - [SMALL_STATE(1050)] = 40712, - [SMALL_STATE(1051)] = 40768, - [SMALL_STATE(1052)] = 40834, - [SMALL_STATE(1053)] = 40906, - [SMALL_STATE(1054)] = 40978, - [SMALL_STATE(1055)] = 41050, - [SMALL_STATE(1056)] = 41122, - [SMALL_STATE(1057)] = 41176, - [SMALL_STATE(1058)] = 41232, - [SMALL_STATE(1059)] = 41304, - [SMALL_STATE(1060)] = 41374, - [SMALL_STATE(1061)] = 41442, - [SMALL_STATE(1062)] = 41498, - [SMALL_STATE(1063)] = 41550, - [SMALL_STATE(1064)] = 41622, - [SMALL_STATE(1065)] = 41694, - [SMALL_STATE(1066)] = 41766, - [SMALL_STATE(1067)] = 41838, - [SMALL_STATE(1068)] = 41910, - [SMALL_STATE(1069)] = 41980, - [SMALL_STATE(1070)] = 42052, - [SMALL_STATE(1071)] = 42122, - [SMALL_STATE(1072)] = 42194, - [SMALL_STATE(1073)] = 42250, - [SMALL_STATE(1074)] = 42322, - [SMALL_STATE(1075)] = 42386, - [SMALL_STATE(1076)] = 42458, - [SMALL_STATE(1077)] = 42528, - [SMALL_STATE(1078)] = 42584, - [SMALL_STATE(1079)] = 42656, - [SMALL_STATE(1080)] = 42712, - [SMALL_STATE(1081)] = 42782, - [SMALL_STATE(1082)] = 42854, - [SMALL_STATE(1083)] = 42926, - [SMALL_STATE(1084)] = 43000, - [SMALL_STATE(1085)] = 43072, - [SMALL_STATE(1086)] = 43144, - [SMALL_STATE(1087)] = 43213, - [SMALL_STATE(1088)] = 43282, - [SMALL_STATE(1089)] = 43351, - [SMALL_STATE(1090)] = 43404, - [SMALL_STATE(1091)] = 43473, - [SMALL_STATE(1092)] = 43542, - [SMALL_STATE(1093)] = 43611, - [SMALL_STATE(1094)] = 43680, - [SMALL_STATE(1095)] = 43749, - [SMALL_STATE(1096)] = 43818, - [SMALL_STATE(1097)] = 43887, - [SMALL_STATE(1098)] = 43956, - [SMALL_STATE(1099)] = 44025, - [SMALL_STATE(1100)] = 44078, - [SMALL_STATE(1101)] = 44147, - [SMALL_STATE(1102)] = 44216, - [SMALL_STATE(1103)] = 44269, - [SMALL_STATE(1104)] = 44322, - [SMALL_STATE(1105)] = 44391, - [SMALL_STATE(1106)] = 44444, - [SMALL_STATE(1107)] = 44513, - [SMALL_STATE(1108)] = 44548, - [SMALL_STATE(1109)] = 44583, - [SMALL_STATE(1110)] = 44636, - [SMALL_STATE(1111)] = 44705, - [SMALL_STATE(1112)] = 44774, - [SMALL_STATE(1113)] = 44843, - [SMALL_STATE(1114)] = 44912, - [SMALL_STATE(1115)] = 44951, - [SMALL_STATE(1116)] = 44987, - [SMALL_STATE(1117)] = 45031, - [SMALL_STATE(1118)] = 45073, - [SMALL_STATE(1119)] = 45139, - [SMALL_STATE(1120)] = 45175, - [SMALL_STATE(1121)] = 45211, - [SMALL_STATE(1122)] = 45247, - [SMALL_STATE(1123)] = 45294, - [SMALL_STATE(1124)] = 45341, - [SMALL_STATE(1125)] = 45388, - [SMALL_STATE(1126)] = 45435, - [SMALL_STATE(1127)] = 45482, - [SMALL_STATE(1128)] = 45529, - [SMALL_STATE(1129)] = 45578, - [SMALL_STATE(1130)] = 45632, - [SMALL_STATE(1131)] = 45676, - [SMALL_STATE(1132)] = 45720, - [SMALL_STATE(1133)] = 45774, - [SMALL_STATE(1134)] = 45810, - [SMALL_STATE(1135)] = 45864, - [SMALL_STATE(1136)] = 45918, - [SMALL_STATE(1137)] = 45962, - [SMALL_STATE(1138)] = 46006, - [SMALL_STATE(1139)] = 46050, - [SMALL_STATE(1140)] = 46088, - [SMALL_STATE(1141)] = 46122, - [SMALL_STATE(1142)] = 46166, - [SMALL_STATE(1143)] = 46217, - [SMALL_STATE(1144)] = 46268, - [SMALL_STATE(1145)] = 46319, - [SMALL_STATE(1146)] = 46370, - [SMALL_STATE(1147)] = 46413, - [SMALL_STATE(1148)] = 46464, - [SMALL_STATE(1149)] = 46519, - [SMALL_STATE(1150)] = 46570, - [SMALL_STATE(1151)] = 46625, - [SMALL_STATE(1152)] = 46658, - [SMALL_STATE(1153)] = 46701, - [SMALL_STATE(1154)] = 46752, - [SMALL_STATE(1155)] = 46803, - [SMALL_STATE(1156)] = 46854, - [SMALL_STATE(1157)] = 46905, - [SMALL_STATE(1158)] = 46960, - [SMALL_STATE(1159)] = 47011, - [SMALL_STATE(1160)] = 47054, - [SMALL_STATE(1161)] = 47104, - [SMALL_STATE(1162)] = 47144, - [SMALL_STATE(1163)] = 47178, - [SMALL_STATE(1164)] = 47214, - [SMALL_STATE(1165)] = 47254, - [SMALL_STATE(1166)] = 47296, - [SMALL_STATE(1167)] = 47340, - [SMALL_STATE(1168)] = 47380, - [SMALL_STATE(1169)] = 47426, - [SMALL_STATE(1170)] = 47472, - [SMALL_STATE(1171)] = 47520, - [SMALL_STATE(1172)] = 47560, - [SMALL_STATE(1173)] = 47600, - [SMALL_STATE(1174)] = 47640, - [SMALL_STATE(1175)] = 47668, - [SMALL_STATE(1176)] = 47700, - [SMALL_STATE(1177)] = 47732, - [SMALL_STATE(1178)] = 47772, - [SMALL_STATE(1179)] = 47812, - [SMALL_STATE(1180)] = 47852, - [SMALL_STATE(1181)] = 47880, - [SMALL_STATE(1182)] = 47920, - [SMALL_STATE(1183)] = 47960, - [SMALL_STATE(1184)] = 48000, - [SMALL_STATE(1185)] = 48048, - [SMALL_STATE(1186)] = 48088, - [SMALL_STATE(1187)] = 48128, - [SMALL_STATE(1188)] = 48168, - [SMALL_STATE(1189)] = 48208, - [SMALL_STATE(1190)] = 48248, - [SMALL_STATE(1191)] = 48288, - [SMALL_STATE(1192)] = 48328, - [SMALL_STATE(1193)] = 48356, - [SMALL_STATE(1194)] = 48396, - [SMALL_STATE(1195)] = 48436, - [SMALL_STATE(1196)] = 48476, - [SMALL_STATE(1197)] = 48508, - [SMALL_STATE(1198)] = 48536, - [SMALL_STATE(1199)] = 48568, - [SMALL_STATE(1200)] = 48608, - [SMALL_STATE(1201)] = 48648, - [SMALL_STATE(1202)] = 48688, - [SMALL_STATE(1203)] = 48728, - [SMALL_STATE(1204)] = 48768, - [SMALL_STATE(1205)] = 48808, - [SMALL_STATE(1206)] = 48848, - [SMALL_STATE(1207)] = 48888, - [SMALL_STATE(1208)] = 48916, - [SMALL_STATE(1209)] = 48956, - [SMALL_STATE(1210)] = 48996, - [SMALL_STATE(1211)] = 49036, - [SMALL_STATE(1212)] = 49064, - [SMALL_STATE(1213)] = 49104, - [SMALL_STATE(1214)] = 49144, - [SMALL_STATE(1215)] = 49184, - [SMALL_STATE(1216)] = 49224, - [SMALL_STATE(1217)] = 49264, - [SMALL_STATE(1218)] = 49304, - [SMALL_STATE(1219)] = 49336, - [SMALL_STATE(1220)] = 49376, - [SMALL_STATE(1221)] = 49403, - [SMALL_STATE(1222)] = 49444, - [SMALL_STATE(1223)] = 49471, - [SMALL_STATE(1224)] = 49506, - [SMALL_STATE(1225)] = 49533, - [SMALL_STATE(1226)] = 49578, - [SMALL_STATE(1227)] = 49621, - [SMALL_STATE(1228)] = 49650, - [SMALL_STATE(1229)] = 49693, - [SMALL_STATE(1230)] = 49736, - [SMALL_STATE(1231)] = 49781, - [SMALL_STATE(1232)] = 49826, - [SMALL_STATE(1233)] = 49871, - [SMALL_STATE(1234)] = 49916, - [SMALL_STATE(1235)] = 49961, - [SMALL_STATE(1236)] = 49994, - [SMALL_STATE(1237)] = 50021, - [SMALL_STATE(1238)] = 50070, - [SMALL_STATE(1239)] = 50101, - [SMALL_STATE(1240)] = 50132, - [SMALL_STATE(1241)] = 50177, - [SMALL_STATE(1242)] = 50204, - [SMALL_STATE(1243)] = 50249, - [SMALL_STATE(1244)] = 50294, - [SMALL_STATE(1245)] = 50327, - [SMALL_STATE(1246)] = 50370, - [SMALL_STATE(1247)] = 50397, - [SMALL_STATE(1248)] = 50432, - [SMALL_STATE(1249)] = 50477, - [SMALL_STATE(1250)] = 50508, - [SMALL_STATE(1251)] = 50553, - [SMALL_STATE(1252)] = 50580, - [SMALL_STATE(1253)] = 50623, - [SMALL_STATE(1254)] = 50654, - [SMALL_STATE(1255)] = 50703, - [SMALL_STATE(1256)] = 50748, - [SMALL_STATE(1257)] = 50793, - [SMALL_STATE(1258)] = 50832, - [SMALL_STATE(1259)] = 50863, - [SMALL_STATE(1260)] = 50890, - [SMALL_STATE(1261)] = 50921, - [SMALL_STATE(1262)] = 50952, - [SMALL_STATE(1263)] = 50997, - [SMALL_STATE(1264)] = 51028, - [SMALL_STATE(1265)] = 51065, - [SMALL_STATE(1266)] = 51096, - [SMALL_STATE(1267)] = 51123, - [SMALL_STATE(1268)] = 51168, - [SMALL_STATE(1269)] = 51195, - [SMALL_STATE(1270)] = 51235, - [SMALL_STATE(1271)] = 51275, - [SMALL_STATE(1272)] = 51315, - [SMALL_STATE(1273)] = 51355, - [SMALL_STATE(1274)] = 51395, - [SMALL_STATE(1275)] = 51435, - [SMALL_STATE(1276)] = 51479, - [SMALL_STATE(1277)] = 51520, - [SMALL_STATE(1278)] = 51561, - [SMALL_STATE(1279)] = 51602, - [SMALL_STATE(1280)] = 51643, - [SMALL_STATE(1281)] = 51684, - [SMALL_STATE(1282)] = 51719, - [SMALL_STATE(1283)] = 51760, - [SMALL_STATE(1284)] = 51801, - [SMALL_STATE(1285)] = 51842, - [SMALL_STATE(1286)] = 51882, - [SMALL_STATE(1287)] = 51916, - [SMALL_STATE(1288)] = 51954, - [SMALL_STATE(1289)] = 51992, - [SMALL_STATE(1290)] = 52033, - [SMALL_STATE(1291)] = 52072, - [SMALL_STATE(1292)] = 52109, - [SMALL_STATE(1293)] = 52138, - [SMALL_STATE(1294)] = 52167, - [SMALL_STATE(1295)] = 52206, - [SMALL_STATE(1296)] = 52247, - [SMALL_STATE(1297)] = 52276, - [SMALL_STATE(1298)] = 52305, - [SMALL_STATE(1299)] = 52344, - [SMALL_STATE(1300)] = 52385, - [SMALL_STATE(1301)] = 52424, - [SMALL_STATE(1302)] = 52450, - [SMALL_STATE(1303)] = 52471, - [SMALL_STATE(1304)] = 52500, - [SMALL_STATE(1305)] = 52537, - [SMALL_STATE(1306)] = 52574, - [SMALL_STATE(1307)] = 52611, - [SMALL_STATE(1308)] = 52640, - [SMALL_STATE(1309)] = 52677, - [SMALL_STATE(1310)] = 52714, - [SMALL_STATE(1311)] = 52747, - [SMALL_STATE(1312)] = 52784, - [SMALL_STATE(1313)] = 52813, - [SMALL_STATE(1314)] = 52850, - [SMALL_STATE(1315)] = 52887, - [SMALL_STATE(1316)] = 52924, - [SMALL_STATE(1317)] = 52949, - [SMALL_STATE(1318)] = 52982, - [SMALL_STATE(1319)] = 53003, - [SMALL_STATE(1320)] = 53040, - [SMALL_STATE(1321)] = 53077, - [SMALL_STATE(1322)] = 53106, - [SMALL_STATE(1323)] = 53127, - [SMALL_STATE(1324)] = 53163, - [SMALL_STATE(1325)] = 53187, - [SMALL_STATE(1326)] = 53216, - [SMALL_STATE(1327)] = 53245, - [SMALL_STATE(1328)] = 53274, - [SMALL_STATE(1329)] = 53305, - [SMALL_STATE(1330)] = 53332, - [SMALL_STATE(1331)] = 53361, - [SMALL_STATE(1332)] = 53392, - [SMALL_STATE(1333)] = 53423, - [SMALL_STATE(1334)] = 53452, - [SMALL_STATE(1335)] = 53481, - [SMALL_STATE(1336)] = 53508, - [SMALL_STATE(1337)] = 53535, - [SMALL_STATE(1338)] = 53564, - [SMALL_STATE(1339)] = 53595, - [SMALL_STATE(1340)] = 53624, - [SMALL_STATE(1341)] = 53649, - [SMALL_STATE(1342)] = 53680, - [SMALL_STATE(1343)] = 53709, - [SMALL_STATE(1344)] = 53740, - [SMALL_STATE(1345)] = 53765, - [SMALL_STATE(1346)] = 53796, - [SMALL_STATE(1347)] = 53825, - [SMALL_STATE(1348)] = 53854, - [SMALL_STATE(1349)] = 53883, - [SMALL_STATE(1350)] = 53912, - [SMALL_STATE(1351)] = 53939, - [SMALL_STATE(1352)] = 53970, - [SMALL_STATE(1353)] = 54001, - [SMALL_STATE(1354)] = 54030, - [SMALL_STATE(1355)] = 54048, - [SMALL_STATE(1356)] = 54072, - [SMALL_STATE(1357)] = 54090, - [SMALL_STATE(1358)] = 54108, - [SMALL_STATE(1359)] = 54140, - [SMALL_STATE(1360)] = 54172, - [SMALL_STATE(1361)] = 54202, - [SMALL_STATE(1362)] = 54228, - [SMALL_STATE(1363)] = 54260, - [SMALL_STATE(1364)] = 54286, - [SMALL_STATE(1365)] = 54304, - [SMALL_STATE(1366)] = 54322, - [SMALL_STATE(1367)] = 54346, - [SMALL_STATE(1368)] = 54372, - [SMALL_STATE(1369)] = 54398, - [SMALL_STATE(1370)] = 54416, - [SMALL_STATE(1371)] = 54448, - [SMALL_STATE(1372)] = 54470, - [SMALL_STATE(1373)] = 54488, - [SMALL_STATE(1374)] = 54517, - [SMALL_STATE(1375)] = 54538, - [SMALL_STATE(1376)] = 54567, - [SMALL_STATE(1377)] = 54596, - [SMALL_STATE(1378)] = 54625, - [SMALL_STATE(1379)] = 54654, - [SMALL_STATE(1380)] = 54683, - [SMALL_STATE(1381)] = 54704, - [SMALL_STATE(1382)] = 54733, - [SMALL_STATE(1383)] = 54754, - [SMALL_STATE(1384)] = 54775, - [SMALL_STATE(1385)] = 54800, - [SMALL_STATE(1386)] = 54821, - [SMALL_STATE(1387)] = 54842, - [SMALL_STATE(1388)] = 54863, - [SMALL_STATE(1389)] = 54884, - [SMALL_STATE(1390)] = 54913, - [SMALL_STATE(1391)] = 54938, - [SMALL_STATE(1392)] = 54957, - [SMALL_STATE(1393)] = 54983, - [SMALL_STATE(1394)] = 54999, - [SMALL_STATE(1395)] = 55023, - [SMALL_STATE(1396)] = 55039, - [SMALL_STATE(1397)] = 55055, - [SMALL_STATE(1398)] = 55081, - [SMALL_STATE(1399)] = 55097, - [SMALL_STATE(1400)] = 55113, - [SMALL_STATE(1401)] = 55139, - [SMALL_STATE(1402)] = 55165, - [SMALL_STATE(1403)] = 55191, - [SMALL_STATE(1404)] = 55217, - [SMALL_STATE(1405)] = 55243, - [SMALL_STATE(1406)] = 55259, - [SMALL_STATE(1407)] = 55285, - [SMALL_STATE(1408)] = 55301, - [SMALL_STATE(1409)] = 55327, - [SMALL_STATE(1410)] = 55349, - [SMALL_STATE(1411)] = 55369, - [SMALL_STATE(1412)] = 55387, - [SMALL_STATE(1413)] = 55413, - [SMALL_STATE(1414)] = 55439, - [SMALL_STATE(1415)] = 55465, - [SMALL_STATE(1416)] = 55481, - [SMALL_STATE(1417)] = 55501, - [SMALL_STATE(1418)] = 55517, - [SMALL_STATE(1419)] = 55537, - [SMALL_STATE(1420)] = 55552, - [SMALL_STATE(1421)] = 55567, - [SMALL_STATE(1422)] = 55590, - [SMALL_STATE(1423)] = 55605, - [SMALL_STATE(1424)] = 55620, - [SMALL_STATE(1425)] = 55637, - [SMALL_STATE(1426)] = 55660, - [SMALL_STATE(1427)] = 55675, - [SMALL_STATE(1428)] = 55690, - [SMALL_STATE(1429)] = 55713, - [SMALL_STATE(1430)] = 55732, - [SMALL_STATE(1431)] = 55755, - [SMALL_STATE(1432)] = 55770, - [SMALL_STATE(1433)] = 55793, - [SMALL_STATE(1434)] = 55818, - [SMALL_STATE(1435)] = 55835, - [SMALL_STATE(1436)] = 55850, - [SMALL_STATE(1437)] = 55867, - [SMALL_STATE(1438)] = 55890, - [SMALL_STATE(1439)] = 55905, - [SMALL_STATE(1440)] = 55928, - [SMALL_STATE(1441)] = 55947, - [SMALL_STATE(1442)] = 55962, - [SMALL_STATE(1443)] = 55979, - [SMALL_STATE(1444)] = 55995, - [SMALL_STATE(1445)] = 56015, - [SMALL_STATE(1446)] = 56031, - [SMALL_STATE(1447)] = 56049, - [SMALL_STATE(1448)] = 56063, - [SMALL_STATE(1449)] = 56081, - [SMALL_STATE(1450)] = 56101, - [SMALL_STATE(1451)] = 56121, - [SMALL_STATE(1452)] = 56135, - [SMALL_STATE(1453)] = 56149, - [SMALL_STATE(1454)] = 56163, - [SMALL_STATE(1455)] = 56177, - [SMALL_STATE(1456)] = 56191, - [SMALL_STATE(1457)] = 56205, - [SMALL_STATE(1458)] = 56219, - [SMALL_STATE(1459)] = 56239, - [SMALL_STATE(1460)] = 56257, - [SMALL_STATE(1461)] = 56273, - [SMALL_STATE(1462)] = 56293, - [SMALL_STATE(1463)] = 56307, - [SMALL_STATE(1464)] = 56327, - [SMALL_STATE(1465)] = 56341, - [SMALL_STATE(1466)] = 56355, - [SMALL_STATE(1467)] = 56375, - [SMALL_STATE(1468)] = 56389, - [SMALL_STATE(1469)] = 56409, - [SMALL_STATE(1470)] = 56427, - [SMALL_STATE(1471)] = 56447, - [SMALL_STATE(1472)] = 56461, - [SMALL_STATE(1473)] = 56481, - [SMALL_STATE(1474)] = 56499, - [SMALL_STATE(1475)] = 56517, - [SMALL_STATE(1476)] = 56535, - [SMALL_STATE(1477)] = 56549, - [SMALL_STATE(1478)] = 56569, - [SMALL_STATE(1479)] = 56583, - [SMALL_STATE(1480)] = 56603, - [SMALL_STATE(1481)] = 56623, - [SMALL_STATE(1482)] = 56634, - [SMALL_STATE(1483)] = 56645, - [SMALL_STATE(1484)] = 56656, - [SMALL_STATE(1485)] = 56667, - [SMALL_STATE(1486)] = 56684, - [SMALL_STATE(1487)] = 56703, - [SMALL_STATE(1488)] = 56714, - [SMALL_STATE(1489)] = 56725, - [SMALL_STATE(1490)] = 56736, - [SMALL_STATE(1491)] = 56753, - [SMALL_STATE(1492)] = 56768, - [SMALL_STATE(1493)] = 56779, - [SMALL_STATE(1494)] = 56790, - [SMALL_STATE(1495)] = 56809, - [SMALL_STATE(1496)] = 56824, - [SMALL_STATE(1497)] = 56835, - [SMALL_STATE(1498)] = 56846, - [SMALL_STATE(1499)] = 56857, - [SMALL_STATE(1500)] = 56876, - [SMALL_STATE(1501)] = 56887, - [SMALL_STATE(1502)] = 56897, - [SMALL_STATE(1503)] = 56911, - [SMALL_STATE(1504)] = 56925, - [SMALL_STATE(1505)] = 56939, - [SMALL_STATE(1506)] = 56953, - [SMALL_STATE(1507)] = 56969, - [SMALL_STATE(1508)] = 56983, - [SMALL_STATE(1509)] = 56997, - [SMALL_STATE(1510)] = 57011, - [SMALL_STATE(1511)] = 57025, - [SMALL_STATE(1512)] = 57039, - [SMALL_STATE(1513)] = 57053, - [SMALL_STATE(1514)] = 57067, - [SMALL_STATE(1515)] = 57083, - [SMALL_STATE(1516)] = 57099, - [SMALL_STATE(1517)] = 57113, - [SMALL_STATE(1518)] = 57129, - [SMALL_STATE(1519)] = 57145, - [SMALL_STATE(1520)] = 57159, - [SMALL_STATE(1521)] = 57173, - [SMALL_STATE(1522)] = 57187, - [SMALL_STATE(1523)] = 57201, - [SMALL_STATE(1524)] = 57217, - [SMALL_STATE(1525)] = 57227, - [SMALL_STATE(1526)] = 57243, - [SMALL_STATE(1527)] = 57259, - [SMALL_STATE(1528)] = 57273, - [SMALL_STATE(1529)] = 57289, - [SMALL_STATE(1530)] = 57303, - [SMALL_STATE(1531)] = 57317, - [SMALL_STATE(1532)] = 57331, - [SMALL_STATE(1533)] = 57345, - [SMALL_STATE(1534)] = 57359, - [SMALL_STATE(1535)] = 57375, - [SMALL_STATE(1536)] = 57389, - [SMALL_STATE(1537)] = 57403, - [SMALL_STATE(1538)] = 57417, - [SMALL_STATE(1539)] = 57433, - [SMALL_STATE(1540)] = 57447, - [SMALL_STATE(1541)] = 57461, - [SMALL_STATE(1542)] = 57475, - [SMALL_STATE(1543)] = 57489, - [SMALL_STATE(1544)] = 57503, - [SMALL_STATE(1545)] = 57517, - [SMALL_STATE(1546)] = 57531, - [SMALL_STATE(1547)] = 57547, - [SMALL_STATE(1548)] = 57561, - [SMALL_STATE(1549)] = 57577, - [SMALL_STATE(1550)] = 57593, - [SMALL_STATE(1551)] = 57607, - [SMALL_STATE(1552)] = 57621, - [SMALL_STATE(1553)] = 57635, - [SMALL_STATE(1554)] = 57649, - [SMALL_STATE(1555)] = 57665, - [SMALL_STATE(1556)] = 57679, - [SMALL_STATE(1557)] = 57695, - [SMALL_STATE(1558)] = 57711, - [SMALL_STATE(1559)] = 57727, - [SMALL_STATE(1560)] = 57741, - [SMALL_STATE(1561)] = 57755, - [SMALL_STATE(1562)] = 57769, - [SMALL_STATE(1563)] = 57783, - [SMALL_STATE(1564)] = 57797, - [SMALL_STATE(1565)] = 57813, - [SMALL_STATE(1566)] = 57826, - [SMALL_STATE(1567)] = 57839, - [SMALL_STATE(1568)] = 57852, - [SMALL_STATE(1569)] = 57865, - [SMALL_STATE(1570)] = 57878, - [SMALL_STATE(1571)] = 57891, - [SMALL_STATE(1572)] = 57904, - [SMALL_STATE(1573)] = 57917, - [SMALL_STATE(1574)] = 57930, - [SMALL_STATE(1575)] = 57943, - [SMALL_STATE(1576)] = 57956, - [SMALL_STATE(1577)] = 57969, - [SMALL_STATE(1578)] = 57982, - [SMALL_STATE(1579)] = 57995, - [SMALL_STATE(1580)] = 58008, - [SMALL_STATE(1581)] = 58021, - [SMALL_STATE(1582)] = 58034, - [SMALL_STATE(1583)] = 58047, - [SMALL_STATE(1584)] = 58060, - [SMALL_STATE(1585)] = 58073, - [SMALL_STATE(1586)] = 58086, - [SMALL_STATE(1587)] = 58099, - [SMALL_STATE(1588)] = 58112, - [SMALL_STATE(1589)] = 58125, - [SMALL_STATE(1590)] = 58138, - [SMALL_STATE(1591)] = 58151, - [SMALL_STATE(1592)] = 58160, - [SMALL_STATE(1593)] = 58173, - [SMALL_STATE(1594)] = 58186, - [SMALL_STATE(1595)] = 58199, - [SMALL_STATE(1596)] = 58212, - [SMALL_STATE(1597)] = 58225, - [SMALL_STATE(1598)] = 58238, - [SMALL_STATE(1599)] = 58251, - [SMALL_STATE(1600)] = 58264, - [SMALL_STATE(1601)] = 58277, - [SMALL_STATE(1602)] = 58290, - [SMALL_STATE(1603)] = 58303, - [SMALL_STATE(1604)] = 58316, - [SMALL_STATE(1605)] = 58329, - [SMALL_STATE(1606)] = 58342, - [SMALL_STATE(1607)] = 58355, - [SMALL_STATE(1608)] = 58368, - [SMALL_STATE(1609)] = 58381, - [SMALL_STATE(1610)] = 58394, - [SMALL_STATE(1611)] = 58405, - [SMALL_STATE(1612)] = 58416, - [SMALL_STATE(1613)] = 58429, - [SMALL_STATE(1614)] = 58442, - [SMALL_STATE(1615)] = 58455, - [SMALL_STATE(1616)] = 58468, - [SMALL_STATE(1617)] = 58481, - [SMALL_STATE(1618)] = 58494, - [SMALL_STATE(1619)] = 58507, - [SMALL_STATE(1620)] = 58520, - [SMALL_STATE(1621)] = 58533, - [SMALL_STATE(1622)] = 58546, - [SMALL_STATE(1623)] = 58559, - [SMALL_STATE(1624)] = 58568, - [SMALL_STATE(1625)] = 58581, - [SMALL_STATE(1626)] = 58594, - [SMALL_STATE(1627)] = 58607, - [SMALL_STATE(1628)] = 58620, - [SMALL_STATE(1629)] = 58633, - [SMALL_STATE(1630)] = 58646, - [SMALL_STATE(1631)] = 58659, - [SMALL_STATE(1632)] = 58672, - [SMALL_STATE(1633)] = 58681, - [SMALL_STATE(1634)] = 58694, - [SMALL_STATE(1635)] = 58703, - [SMALL_STATE(1636)] = 58716, - [SMALL_STATE(1637)] = 58729, - [SMALL_STATE(1638)] = 58738, - [SMALL_STATE(1639)] = 58749, - [SMALL_STATE(1640)] = 58762, - [SMALL_STATE(1641)] = 58775, - [SMALL_STATE(1642)] = 58784, - [SMALL_STATE(1643)] = 58797, - [SMALL_STATE(1644)] = 58810, - [SMALL_STATE(1645)] = 58823, - [SMALL_STATE(1646)] = 58836, - [SMALL_STATE(1647)] = 58849, - [SMALL_STATE(1648)] = 58862, - [SMALL_STATE(1649)] = 58875, - [SMALL_STATE(1650)] = 58884, - [SMALL_STATE(1651)] = 58895, - [SMALL_STATE(1652)] = 58908, - [SMALL_STATE(1653)] = 58921, - [SMALL_STATE(1654)] = 58934, - [SMALL_STATE(1655)] = 58947, - [SMALL_STATE(1656)] = 58960, - [SMALL_STATE(1657)] = 58969, - [SMALL_STATE(1658)] = 58982, - [SMALL_STATE(1659)] = 58995, - [SMALL_STATE(1660)] = 59008, - [SMALL_STATE(1661)] = 59021, - [SMALL_STATE(1662)] = 59034, - [SMALL_STATE(1663)] = 59047, - [SMALL_STATE(1664)] = 59060, - [SMALL_STATE(1665)] = 59073, - [SMALL_STATE(1666)] = 59082, - [SMALL_STATE(1667)] = 59095, - [SMALL_STATE(1668)] = 59108, - [SMALL_STATE(1669)] = 59121, - [SMALL_STATE(1670)] = 59134, - [SMALL_STATE(1671)] = 59147, - [SMALL_STATE(1672)] = 59160, - [SMALL_STATE(1673)] = 59173, - [SMALL_STATE(1674)] = 59186, - [SMALL_STATE(1675)] = 59199, - [SMALL_STATE(1676)] = 59208, - [SMALL_STATE(1677)] = 59217, - [SMALL_STATE(1678)] = 59230, - [SMALL_STATE(1679)] = 59243, - [SMALL_STATE(1680)] = 59256, - [SMALL_STATE(1681)] = 59267, - [SMALL_STATE(1682)] = 59280, - [SMALL_STATE(1683)] = 59293, - [SMALL_STATE(1684)] = 59306, - [SMALL_STATE(1685)] = 59319, - [SMALL_STATE(1686)] = 59328, - [SMALL_STATE(1687)] = 59341, - [SMALL_STATE(1688)] = 59351, - [SMALL_STATE(1689)] = 59361, - [SMALL_STATE(1690)] = 59371, - [SMALL_STATE(1691)] = 59381, - [SMALL_STATE(1692)] = 59391, - [SMALL_STATE(1693)] = 59401, - [SMALL_STATE(1694)] = 59409, - [SMALL_STATE(1695)] = 59419, - [SMALL_STATE(1696)] = 59429, - [SMALL_STATE(1697)] = 59439, - [SMALL_STATE(1698)] = 59449, - [SMALL_STATE(1699)] = 59457, - [SMALL_STATE(1700)] = 59467, - [SMALL_STATE(1701)] = 59477, - [SMALL_STATE(1702)] = 59487, - [SMALL_STATE(1703)] = 59497, - [SMALL_STATE(1704)] = 59507, - [SMALL_STATE(1705)] = 59515, - [SMALL_STATE(1706)] = 59525, - [SMALL_STATE(1707)] = 59535, - [SMALL_STATE(1708)] = 59543, - [SMALL_STATE(1709)] = 59553, - [SMALL_STATE(1710)] = 59563, - [SMALL_STATE(1711)] = 59573, - [SMALL_STATE(1712)] = 59583, - [SMALL_STATE(1713)] = 59591, - [SMALL_STATE(1714)] = 59599, - [SMALL_STATE(1715)] = 59607, - [SMALL_STATE(1716)] = 59615, - [SMALL_STATE(1717)] = 59625, - [SMALL_STATE(1718)] = 59635, - [SMALL_STATE(1719)] = 59645, - [SMALL_STATE(1720)] = 59655, - [SMALL_STATE(1721)] = 59665, - [SMALL_STATE(1722)] = 59675, - [SMALL_STATE(1723)] = 59685, - [SMALL_STATE(1724)] = 59695, - [SMALL_STATE(1725)] = 59703, - [SMALL_STATE(1726)] = 59711, - [SMALL_STATE(1727)] = 59721, - [SMALL_STATE(1728)] = 59731, - [SMALL_STATE(1729)] = 59739, - [SMALL_STATE(1730)] = 59749, - [SMALL_STATE(1731)] = 59759, - [SMALL_STATE(1732)] = 59769, - [SMALL_STATE(1733)] = 59779, - [SMALL_STATE(1734)] = 59789, - [SMALL_STATE(1735)] = 59799, - [SMALL_STATE(1736)] = 59809, - [SMALL_STATE(1737)] = 59819, - [SMALL_STATE(1738)] = 59829, - [SMALL_STATE(1739)] = 59839, - [SMALL_STATE(1740)] = 59849, - [SMALL_STATE(1741)] = 59859, - [SMALL_STATE(1742)] = 59869, - [SMALL_STATE(1743)] = 59879, - [SMALL_STATE(1744)] = 59889, - [SMALL_STATE(1745)] = 59899, - [SMALL_STATE(1746)] = 59909, - [SMALL_STATE(1747)] = 59919, - [SMALL_STATE(1748)] = 59929, - [SMALL_STATE(1749)] = 59937, - [SMALL_STATE(1750)] = 59945, - [SMALL_STATE(1751)] = 59955, - [SMALL_STATE(1752)] = 59963, - [SMALL_STATE(1753)] = 59973, - [SMALL_STATE(1754)] = 59981, - [SMALL_STATE(1755)] = 59991, - [SMALL_STATE(1756)] = 60001, - [SMALL_STATE(1757)] = 60011, - [SMALL_STATE(1758)] = 60021, - [SMALL_STATE(1759)] = 60029, - [SMALL_STATE(1760)] = 60039, - [SMALL_STATE(1761)] = 60049, - [SMALL_STATE(1762)] = 60059, - [SMALL_STATE(1763)] = 60069, - [SMALL_STATE(1764)] = 60079, - [SMALL_STATE(1765)] = 60089, - [SMALL_STATE(1766)] = 60099, - [SMALL_STATE(1767)] = 60107, - [SMALL_STATE(1768)] = 60117, - [SMALL_STATE(1769)] = 60127, - [SMALL_STATE(1770)] = 60137, - [SMALL_STATE(1771)] = 60147, - [SMALL_STATE(1772)] = 60157, - [SMALL_STATE(1773)] = 60167, - [SMALL_STATE(1774)] = 60175, - [SMALL_STATE(1775)] = 60185, - [SMALL_STATE(1776)] = 60192, - [SMALL_STATE(1777)] = 60199, - [SMALL_STATE(1778)] = 60206, - [SMALL_STATE(1779)] = 60213, - [SMALL_STATE(1780)] = 60220, - [SMALL_STATE(1781)] = 60227, - [SMALL_STATE(1782)] = 60234, - [SMALL_STATE(1783)] = 60241, - [SMALL_STATE(1784)] = 60248, - [SMALL_STATE(1785)] = 60255, - [SMALL_STATE(1786)] = 60262, - [SMALL_STATE(1787)] = 60269, - [SMALL_STATE(1788)] = 60276, - [SMALL_STATE(1789)] = 60283, - [SMALL_STATE(1790)] = 60290, - [SMALL_STATE(1791)] = 60297, - [SMALL_STATE(1792)] = 60304, - [SMALL_STATE(1793)] = 60311, - [SMALL_STATE(1794)] = 60318, - [SMALL_STATE(1795)] = 60325, - [SMALL_STATE(1796)] = 60332, - [SMALL_STATE(1797)] = 60339, - [SMALL_STATE(1798)] = 60346, - [SMALL_STATE(1799)] = 60353, - [SMALL_STATE(1800)] = 60360, - [SMALL_STATE(1801)] = 60367, - [SMALL_STATE(1802)] = 60374, - [SMALL_STATE(1803)] = 60381, - [SMALL_STATE(1804)] = 60388, - [SMALL_STATE(1805)] = 60395, - [SMALL_STATE(1806)] = 60402, - [SMALL_STATE(1807)] = 60409, - [SMALL_STATE(1808)] = 60416, - [SMALL_STATE(1809)] = 60423, - [SMALL_STATE(1810)] = 60430, - [SMALL_STATE(1811)] = 60437, - [SMALL_STATE(1812)] = 60444, - [SMALL_STATE(1813)] = 60451, - [SMALL_STATE(1814)] = 60458, - [SMALL_STATE(1815)] = 60465, - [SMALL_STATE(1816)] = 60472, - [SMALL_STATE(1817)] = 60479, - [SMALL_STATE(1818)] = 60486, - [SMALL_STATE(1819)] = 60493, - [SMALL_STATE(1820)] = 60500, - [SMALL_STATE(1821)] = 60507, - [SMALL_STATE(1822)] = 60514, - [SMALL_STATE(1823)] = 60521, - [SMALL_STATE(1824)] = 60528, - [SMALL_STATE(1825)] = 60535, - [SMALL_STATE(1826)] = 60542, - [SMALL_STATE(1827)] = 60549, - [SMALL_STATE(1828)] = 60556, - [SMALL_STATE(1829)] = 60563, - [SMALL_STATE(1830)] = 60570, - [SMALL_STATE(1831)] = 60577, - [SMALL_STATE(1832)] = 60584, - [SMALL_STATE(1833)] = 60591, - [SMALL_STATE(1834)] = 60598, - [SMALL_STATE(1835)] = 60605, - [SMALL_STATE(1836)] = 60612, - [SMALL_STATE(1837)] = 60619, - [SMALL_STATE(1838)] = 60626, - [SMALL_STATE(1839)] = 60633, - [SMALL_STATE(1840)] = 60640, - [SMALL_STATE(1841)] = 60647, - [SMALL_STATE(1842)] = 60654, - [SMALL_STATE(1843)] = 60661, - [SMALL_STATE(1844)] = 60668, - [SMALL_STATE(1845)] = 60675, - [SMALL_STATE(1846)] = 60682, - [SMALL_STATE(1847)] = 60689, - [SMALL_STATE(1848)] = 60696, - [SMALL_STATE(1849)] = 60703, - [SMALL_STATE(1850)] = 60710, - [SMALL_STATE(1851)] = 60717, - [SMALL_STATE(1852)] = 60724, - [SMALL_STATE(1853)] = 60731, - [SMALL_STATE(1854)] = 60738, - [SMALL_STATE(1855)] = 60745, - [SMALL_STATE(1856)] = 60752, - [SMALL_STATE(1857)] = 60759, - [SMALL_STATE(1858)] = 60766, - [SMALL_STATE(1859)] = 60773, - [SMALL_STATE(1860)] = 60780, - [SMALL_STATE(1861)] = 60787, - [SMALL_STATE(1862)] = 60794, - [SMALL_STATE(1863)] = 60801, - [SMALL_STATE(1864)] = 60808, - [SMALL_STATE(1865)] = 60815, - [SMALL_STATE(1866)] = 60822, - [SMALL_STATE(1867)] = 60829, - [SMALL_STATE(1868)] = 60836, - [SMALL_STATE(1869)] = 60843, - [SMALL_STATE(1870)] = 60850, - [SMALL_STATE(1871)] = 60857, - [SMALL_STATE(1872)] = 60864, - [SMALL_STATE(1873)] = 60871, - [SMALL_STATE(1874)] = 60878, - [SMALL_STATE(1875)] = 60885, - [SMALL_STATE(1876)] = 60892, - [SMALL_STATE(1877)] = 60899, - [SMALL_STATE(1878)] = 60906, - [SMALL_STATE(1879)] = 60913, - [SMALL_STATE(1880)] = 60920, - [SMALL_STATE(1881)] = 60927, - [SMALL_STATE(1882)] = 60934, - [SMALL_STATE(1883)] = 60941, - [SMALL_STATE(1884)] = 60948, - [SMALL_STATE(1885)] = 60955, - [SMALL_STATE(1886)] = 60962, - [SMALL_STATE(1887)] = 60969, - [SMALL_STATE(1888)] = 60976, - [SMALL_STATE(1889)] = 60983, - [SMALL_STATE(1890)] = 60990, - [SMALL_STATE(1891)] = 60997, - [SMALL_STATE(1892)] = 61004, - [SMALL_STATE(1893)] = 61011, - [SMALL_STATE(1894)] = 61018, - [SMALL_STATE(1895)] = 61025, - [SMALL_STATE(1896)] = 61032, - [SMALL_STATE(1897)] = 61039, - [SMALL_STATE(1898)] = 61046, - [SMALL_STATE(1899)] = 61053, - [SMALL_STATE(1900)] = 61060, - [SMALL_STATE(1901)] = 61067, - [SMALL_STATE(1902)] = 61074, - [SMALL_STATE(1903)] = 61081, - [SMALL_STATE(1904)] = 61088, - [SMALL_STATE(1905)] = 61095, - [SMALL_STATE(1906)] = 61102, - [SMALL_STATE(1907)] = 61109, - [SMALL_STATE(1908)] = 61116, - [SMALL_STATE(1909)] = 61123, - [SMALL_STATE(1910)] = 61130, - [SMALL_STATE(1911)] = 61137, - [SMALL_STATE(1912)] = 61144, - [SMALL_STATE(1913)] = 61151, - [SMALL_STATE(1914)] = 61158, - [SMALL_STATE(1915)] = 61165, - [SMALL_STATE(1916)] = 61172, - [SMALL_STATE(1917)] = 61179, - [SMALL_STATE(1918)] = 61186, - [SMALL_STATE(1919)] = 61193, - [SMALL_STATE(1920)] = 61200, - [SMALL_STATE(1921)] = 61207, - [SMALL_STATE(1922)] = 61214, - [SMALL_STATE(1923)] = 61221, - [SMALL_STATE(1924)] = 61228, - [SMALL_STATE(1925)] = 61235, - [SMALL_STATE(1926)] = 61242, - [SMALL_STATE(1927)] = 61249, - [SMALL_STATE(1928)] = 61256, - [SMALL_STATE(1929)] = 61263, - [SMALL_STATE(1930)] = 61270, - [SMALL_STATE(1931)] = 61277, - [SMALL_STATE(1932)] = 61284, - [SMALL_STATE(1933)] = 61291, - [SMALL_STATE(1934)] = 61298, - [SMALL_STATE(1935)] = 61305, - [SMALL_STATE(1936)] = 61312, - [SMALL_STATE(1937)] = 61319, - [SMALL_STATE(1938)] = 61326, - [SMALL_STATE(1939)] = 61333, - [SMALL_STATE(1940)] = 61340, - [SMALL_STATE(1941)] = 61347, - [SMALL_STATE(1942)] = 61354, - [SMALL_STATE(1943)] = 61361, - [SMALL_STATE(1944)] = 61368, - [SMALL_STATE(1945)] = 61375, - [SMALL_STATE(1946)] = 61382, - [SMALL_STATE(1947)] = 61389, - [SMALL_STATE(1948)] = 61396, - [SMALL_STATE(1949)] = 61403, - [SMALL_STATE(1950)] = 61410, - [SMALL_STATE(1951)] = 61417, - [SMALL_STATE(1952)] = 61424, - [SMALL_STATE(1953)] = 61431, - [SMALL_STATE(1954)] = 61438, - [SMALL_STATE(1955)] = 61445, - [SMALL_STATE(1956)] = 61452, - [SMALL_STATE(1957)] = 61459, - [SMALL_STATE(1958)] = 61466, - [SMALL_STATE(1959)] = 61473, - [SMALL_STATE(1960)] = 61480, - [SMALL_STATE(1961)] = 61487, - [SMALL_STATE(1962)] = 61494, - [SMALL_STATE(1963)] = 61501, - [SMALL_STATE(1964)] = 61508, - [SMALL_STATE(1965)] = 61515, - [SMALL_STATE(1966)] = 61522, - [SMALL_STATE(1967)] = 61529, - [SMALL_STATE(1968)] = 61536, - [SMALL_STATE(1969)] = 61543, - [SMALL_STATE(1970)] = 61550, - [SMALL_STATE(1971)] = 61557, - [SMALL_STATE(1972)] = 61564, - [SMALL_STATE(1973)] = 61571, - [SMALL_STATE(1974)] = 61578, - [SMALL_STATE(1975)] = 61585, - [SMALL_STATE(1976)] = 61592, - [SMALL_STATE(1977)] = 61599, - [SMALL_STATE(1978)] = 61606, - [SMALL_STATE(1979)] = 61613, - [SMALL_STATE(1980)] = 61620, - [SMALL_STATE(1981)] = 61627, - [SMALL_STATE(1982)] = 61634, - [SMALL_STATE(1983)] = 61641, - [SMALL_STATE(1984)] = 61648, - [SMALL_STATE(1985)] = 61655, - [SMALL_STATE(1986)] = 61662, - [SMALL_STATE(1987)] = 61669, - [SMALL_STATE(1988)] = 61676, - [SMALL_STATE(1989)] = 61683, - [SMALL_STATE(1990)] = 61690, - [SMALL_STATE(1991)] = 61697, - [SMALL_STATE(1992)] = 61704, - [SMALL_STATE(1993)] = 61711, - [SMALL_STATE(1994)] = 61718, - [SMALL_STATE(1995)] = 61725, - [SMALL_STATE(1996)] = 61732, - [SMALL_STATE(1997)] = 61739, - [SMALL_STATE(1998)] = 61746, - [SMALL_STATE(1999)] = 61753, - [SMALL_STATE(2000)] = 61760, - [SMALL_STATE(2001)] = 61767, - [SMALL_STATE(2002)] = 61774, - [SMALL_STATE(2003)] = 61781, - [SMALL_STATE(2004)] = 61788, - [SMALL_STATE(2005)] = 61795, - [SMALL_STATE(2006)] = 61802, - [SMALL_STATE(2007)] = 61809, - [SMALL_STATE(2008)] = 61816, - [SMALL_STATE(2009)] = 61823, - [SMALL_STATE(2010)] = 61830, - [SMALL_STATE(2011)] = 61837, - [SMALL_STATE(2012)] = 61844, - [SMALL_STATE(2013)] = 61851, - [SMALL_STATE(2014)] = 61858, - [SMALL_STATE(2015)] = 61865, - [SMALL_STATE(2016)] = 61872, - [SMALL_STATE(2017)] = 61879, - [SMALL_STATE(2018)] = 61886, - [SMALL_STATE(2019)] = 61893, - [SMALL_STATE(2020)] = 61900, + [SMALL_STATE(815)] = 27766, + [SMALL_STATE(816)] = 27818, + [SMALL_STATE(817)] = 27870, + [SMALL_STATE(818)] = 27922, + [SMALL_STATE(819)] = 27978, + [SMALL_STATE(820)] = 28030, + [SMALL_STATE(821)] = 28082, + [SMALL_STATE(822)] = 28134, + [SMALL_STATE(823)] = 28186, + [SMALL_STATE(824)] = 28238, + [SMALL_STATE(825)] = 28290, + [SMALL_STATE(826)] = 28346, + [SMALL_STATE(827)] = 28398, + [SMALL_STATE(828)] = 28450, + [SMALL_STATE(829)] = 28502, + [SMALL_STATE(830)] = 28558, + [SMALL_STATE(831)] = 28610, + [SMALL_STATE(832)] = 28686, + [SMALL_STATE(833)] = 28744, + [SMALL_STATE(834)] = 28796, + [SMALL_STATE(835)] = 28848, + [SMALL_STATE(836)] = 28899, + [SMALL_STATE(837)] = 28968, + [SMALL_STATE(838)] = 29041, + [SMALL_STATE(839)] = 29092, + [SMALL_STATE(840)] = 29167, + [SMALL_STATE(841)] = 29252, + [SMALL_STATE(842)] = 29337, + [SMALL_STATE(843)] = 29414, + [SMALL_STATE(844)] = 29465, + [SMALL_STATE(845)] = 29520, + [SMALL_STATE(846)] = 29571, + [SMALL_STATE(847)] = 29650, + [SMALL_STATE(848)] = 29731, + [SMALL_STATE(849)] = 29794, + [SMALL_STATE(850)] = 29859, + [SMALL_STATE(851)] = 29910, + [SMALL_STATE(852)] = 29961, + [SMALL_STATE(853)] = 30030, + [SMALL_STATE(854)] = 30097, + [SMALL_STATE(855)] = 30148, + [SMALL_STATE(856)] = 30217, + [SMALL_STATE(857)] = 30268, + [SMALL_STATE(858)] = 30339, + [SMALL_STATE(859)] = 30390, + [SMALL_STATE(860)] = 30459, + [SMALL_STATE(861)] = 30510, + [SMALL_STATE(862)] = 30561, + [SMALL_STATE(863)] = 30612, + [SMALL_STATE(864)] = 30697, + [SMALL_STATE(865)] = 30748, + [SMALL_STATE(866)] = 30799, + [SMALL_STATE(867)] = 30850, + [SMALL_STATE(868)] = 30901, + [SMALL_STATE(869)] = 30952, + [SMALL_STATE(870)] = 31003, + [SMALL_STATE(871)] = 31057, + [SMALL_STATE(872)] = 31143, + [SMALL_STATE(873)] = 31203, + [SMALL_STATE(874)] = 31289, + [SMALL_STATE(875)] = 31346, + [SMALL_STATE(876)] = 31401, + [SMALL_STATE(877)] = 31456, + [SMALL_STATE(878)] = 31504, + [SMALL_STATE(879)] = 31552, + [SMALL_STATE(880)] = 31631, + [SMALL_STATE(881)] = 31690, + [SMALL_STATE(882)] = 31737, + [SMALL_STATE(883)] = 31812, + [SMALL_STATE(884)] = 31889, + [SMALL_STATE(885)] = 31936, + [SMALL_STATE(886)] = 31997, + [SMALL_STATE(887)] = 32044, + [SMALL_STATE(888)] = 32091, + [SMALL_STATE(889)] = 32138, + [SMALL_STATE(890)] = 32185, + [SMALL_STATE(891)] = 32232, + [SMALL_STATE(892)] = 32283, + [SMALL_STATE(893)] = 32330, + [SMALL_STATE(894)] = 32377, + [SMALL_STATE(895)] = 32428, + [SMALL_STATE(896)] = 32475, + [SMALL_STATE(897)] = 32522, + [SMALL_STATE(898)] = 32569, + [SMALL_STATE(899)] = 32616, + [SMALL_STATE(900)] = 32663, + [SMALL_STATE(901)] = 32722, + [SMALL_STATE(902)] = 32781, + [SMALL_STATE(903)] = 32828, + [SMALL_STATE(904)] = 32875, + [SMALL_STATE(905)] = 32922, + [SMALL_STATE(906)] = 32973, + [SMALL_STATE(907)] = 33020, + [SMALL_STATE(908)] = 33093, + [SMALL_STATE(909)] = 33140, + [SMALL_STATE(910)] = 33191, + [SMALL_STATE(911)] = 33238, + [SMALL_STATE(912)] = 33297, + [SMALL_STATE(913)] = 33380, + [SMALL_STATE(914)] = 33427, + [SMALL_STATE(915)] = 33474, + [SMALL_STATE(916)] = 33521, + [SMALL_STATE(917)] = 33568, + [SMALL_STATE(918)] = 33615, + [SMALL_STATE(919)] = 33662, + [SMALL_STATE(920)] = 33709, + [SMALL_STATE(921)] = 33792, + [SMALL_STATE(922)] = 33863, + [SMALL_STATE(923)] = 33914, + [SMALL_STATE(924)] = 33983, + [SMALL_STATE(925)] = 34030, + [SMALL_STATE(926)] = 34089, + [SMALL_STATE(927)] = 34136, + [SMALL_STATE(928)] = 34219, + [SMALL_STATE(929)] = 34270, + [SMALL_STATE(930)] = 34317, + [SMALL_STATE(931)] = 34374, + [SMALL_STATE(932)] = 34421, + [SMALL_STATE(933)] = 34468, + [SMALL_STATE(934)] = 34533, + [SMALL_STATE(935)] = 34580, + [SMALL_STATE(936)] = 34643, + [SMALL_STATE(937)] = 34694, + [SMALL_STATE(938)] = 34741, + [SMALL_STATE(939)] = 34788, + [SMALL_STATE(940)] = 34835, + [SMALL_STATE(941)] = 34911, + [SMALL_STATE(942)] = 34961, + [SMALL_STATE(943)] = 35007, + [SMALL_STATE(944)] = 35083, + [SMALL_STATE(945)] = 35159, + [SMALL_STATE(946)] = 35235, + [SMALL_STATE(947)] = 35281, + [SMALL_STATE(948)] = 35327, + [SMALL_STATE(949)] = 35373, + [SMALL_STATE(950)] = 35418, + [SMALL_STATE(951)] = 35475, + [SMALL_STATE(952)] = 35519, + [SMALL_STATE(953)] = 35563, + [SMALL_STATE(954)] = 35607, + [SMALL_STATE(955)] = 35651, + [SMALL_STATE(956)] = 35695, + [SMALL_STATE(957)] = 35739, + [SMALL_STATE(958)] = 35783, + [SMALL_STATE(959)] = 35827, + [SMALL_STATE(960)] = 35879, + [SMALL_STATE(961)] = 35923, + [SMALL_STATE(962)] = 35977, + [SMALL_STATE(963)] = 36021, + [SMALL_STATE(964)] = 36091, + [SMALL_STATE(965)] = 36135, + [SMALL_STATE(966)] = 36207, + [SMALL_STATE(967)] = 36249, + [SMALL_STATE(968)] = 36291, + [SMALL_STATE(969)] = 36333, + [SMALL_STATE(970)] = 36377, + [SMALL_STATE(971)] = 36419, + [SMALL_STATE(972)] = 36461, + [SMALL_STATE(973)] = 36503, + [SMALL_STATE(974)] = 36545, + [SMALL_STATE(975)] = 36587, + [SMALL_STATE(976)] = 36629, + [SMALL_STATE(977)] = 36699, + [SMALL_STATE(978)] = 36741, + [SMALL_STATE(979)] = 36785, + [SMALL_STATE(980)] = 36827, + [SMALL_STATE(981)] = 36869, + [SMALL_STATE(982)] = 36941, + [SMALL_STATE(983)] = 36983, + [SMALL_STATE(984)] = 37027, + [SMALL_STATE(985)] = 37094, + [SMALL_STATE(986)] = 37161, + [SMALL_STATE(987)] = 37216, + [SMALL_STATE(988)] = 37293, + [SMALL_STATE(989)] = 37370, + [SMALL_STATE(990)] = 37443, + [SMALL_STATE(991)] = 37510, + [SMALL_STATE(992)] = 37581, + [SMALL_STATE(993)] = 37648, + [SMALL_STATE(994)] = 37717, + [SMALL_STATE(995)] = 37784, + [SMALL_STATE(996)] = 37849, + [SMALL_STATE(997)] = 37912, + [SMALL_STATE(998)] = 37971, + [SMALL_STATE(999)] = 38028, + [SMALL_STATE(1000)] = 38105, + [SMALL_STATE(1001)] = 38182, + [SMALL_STATE(1002)] = 38249, + [SMALL_STATE(1003)] = 38316, + [SMALL_STATE(1004)] = 38383, + [SMALL_STATE(1005)] = 38450, + [SMALL_STATE(1006)] = 38520, + [SMALL_STATE(1007)] = 38576, + [SMALL_STATE(1008)] = 38650, + [SMALL_STATE(1009)] = 38698, + [SMALL_STATE(1010)] = 38772, + [SMALL_STATE(1011)] = 38846, + [SMALL_STATE(1012)] = 38904, + [SMALL_STATE(1013)] = 38966, + [SMALL_STATE(1014)] = 39030, + [SMALL_STATE(1015)] = 39096, + [SMALL_STATE(1016)] = 39164, + [SMALL_STATE(1017)] = 39218, + [SMALL_STATE(1018)] = 39286, + [SMALL_STATE(1019)] = 39349, + [SMALL_STATE(1020)] = 39412, + [SMALL_STATE(1021)] = 39475, + [SMALL_STATE(1022)] = 39538, + [SMALL_STATE(1023)] = 39601, + [SMALL_STATE(1024)] = 39664, + [SMALL_STATE(1025)] = 39727, + [SMALL_STATE(1026)] = 39790, + [SMALL_STATE(1027)] = 39853, + [SMALL_STATE(1028)] = 39916, + [SMALL_STATE(1029)] = 39979, + [SMALL_STATE(1030)] = 40042, + [SMALL_STATE(1031)] = 40105, + [SMALL_STATE(1032)] = 40165, + [SMALL_STATE(1033)] = 40225, + [SMALL_STATE(1034)] = 40263, + [SMALL_STATE(1035)] = 40323, + [SMALL_STATE(1036)] = 40361, + [SMALL_STATE(1037)] = 40399, + [SMALL_STATE(1038)] = 40459, + [SMALL_STATE(1039)] = 40533, + [SMALL_STATE(1040)] = 40579, + [SMALL_STATE(1041)] = 40639, + [SMALL_STATE(1042)] = 40677, + [SMALL_STATE(1043)] = 40737, + [SMALL_STATE(1044)] = 40812, + [SMALL_STATE(1045)] = 40887, + [SMALL_STATE(1046)] = 40962, + [SMALL_STATE(1047)] = 41033, + [SMALL_STATE(1048)] = 41108, + [SMALL_STATE(1049)] = 41145, + [SMALL_STATE(1050)] = 41220, + [SMALL_STATE(1051)] = 41295, + [SMALL_STATE(1052)] = 41332, + [SMALL_STATE(1053)] = 41404, + [SMALL_STATE(1054)] = 41448, + [SMALL_STATE(1055)] = 41520, + [SMALL_STATE(1056)] = 41592, + [SMALL_STATE(1057)] = 41662, + [SMALL_STATE(1058)] = 41734, + [SMALL_STATE(1059)] = 41806, + [SMALL_STATE(1060)] = 41878, + [SMALL_STATE(1061)] = 41950, + [SMALL_STATE(1062)] = 42022, + [SMALL_STATE(1063)] = 42094, + [SMALL_STATE(1064)] = 42146, + [SMALL_STATE(1065)] = 42218, + [SMALL_STATE(1066)] = 42288, + [SMALL_STATE(1067)] = 42356, + [SMALL_STATE(1068)] = 42422, + [SMALL_STATE(1069)] = 42488, + [SMALL_STATE(1070)] = 42552, + [SMALL_STATE(1071)] = 42614, + [SMALL_STATE(1072)] = 42674, + [SMALL_STATE(1073)] = 42730, + [SMALL_STATE(1074)] = 42802, + [SMALL_STATE(1075)] = 42856, + [SMALL_STATE(1076)] = 42928, + [SMALL_STATE(1077)] = 43000, + [SMALL_STATE(1078)] = 43070, + [SMALL_STATE(1079)] = 43142, + [SMALL_STATE(1080)] = 43214, + [SMALL_STATE(1081)] = 43286, + [SMALL_STATE(1082)] = 43332, + [SMALL_STATE(1083)] = 43404, + [SMALL_STATE(1084)] = 43476, + [SMALL_STATE(1085)] = 43548, + [SMALL_STATE(1086)] = 43622, + [SMALL_STATE(1087)] = 43694, + [SMALL_STATE(1088)] = 43764, + [SMALL_STATE(1089)] = 43836, + [SMALL_STATE(1090)] = 43908, + [SMALL_STATE(1091)] = 43980, + [SMALL_STATE(1092)] = 44050, + [SMALL_STATE(1093)] = 44122, + [SMALL_STATE(1094)] = 44192, + [SMALL_STATE(1095)] = 44264, + [SMALL_STATE(1096)] = 44336, + [SMALL_STATE(1097)] = 44408, + [SMALL_STATE(1098)] = 44480, + [SMALL_STATE(1099)] = 44552, + [SMALL_STATE(1100)] = 44622, + [SMALL_STATE(1101)] = 44692, + [SMALL_STATE(1102)] = 44761, + [SMALL_STATE(1103)] = 44830, + [SMALL_STATE(1104)] = 44899, + [SMALL_STATE(1105)] = 44968, + [SMALL_STATE(1106)] = 45037, + [SMALL_STATE(1107)] = 45106, + [SMALL_STATE(1108)] = 45175, + [SMALL_STATE(1109)] = 45244, + [SMALL_STATE(1110)] = 45313, + [SMALL_STATE(1111)] = 45382, + [SMALL_STATE(1112)] = 45451, + [SMALL_STATE(1113)] = 45520, + [SMALL_STATE(1114)] = 45589, + [SMALL_STATE(1115)] = 45658, + [SMALL_STATE(1116)] = 45727, + [SMALL_STATE(1117)] = 45796, + [SMALL_STATE(1118)] = 45865, + [SMALL_STATE(1119)] = 45934, + [SMALL_STATE(1120)] = 46003, + [SMALL_STATE(1121)] = 46072, + [SMALL_STATE(1122)] = 46141, + [SMALL_STATE(1123)] = 46210, + [SMALL_STATE(1124)] = 46264, + [SMALL_STATE(1125)] = 46302, + [SMALL_STATE(1126)] = 46340, + [SMALL_STATE(1127)] = 46394, + [SMALL_STATE(1128)] = 46448, + [SMALL_STATE(1129)] = 46484, + [SMALL_STATE(1130)] = 46538, + [SMALL_STATE(1131)] = 46604, + [SMALL_STATE(1132)] = 46642, + [SMALL_STATE(1133)] = 46696, + [SMALL_STATE(1134)] = 46750, + [SMALL_STATE(1135)] = 46801, + [SMALL_STATE(1136)] = 46852, + [SMALL_STATE(1137)] = 46903, + [SMALL_STATE(1138)] = 46954, + [SMALL_STATE(1139)] = 47005, + [SMALL_STATE(1140)] = 47056, + [SMALL_STATE(1141)] = 47094, + [SMALL_STATE(1142)] = 47134, + [SMALL_STATE(1143)] = 47173, + [SMALL_STATE(1144)] = 47212, + [SMALL_STATE(1145)] = 47261, + [SMALL_STATE(1146)] = 47300, + [SMALL_STATE(1147)] = 47339, + [SMALL_STATE(1148)] = 47393, + [SMALL_STATE(1149)] = 47427, + [SMALL_STATE(1150)] = 47481, + [SMALL_STATE(1151)] = 47535, + [SMALL_STATE(1152)] = 47589, + [SMALL_STATE(1153)] = 47632, + [SMALL_STATE(1154)] = 47665, + [SMALL_STATE(1155)] = 47698, + [SMALL_STATE(1156)] = 47749, + [SMALL_STATE(1157)] = 47800, + [SMALL_STATE(1158)] = 47833, + [SMALL_STATE(1159)] = 47888, + [SMALL_STATE(1160)] = 47921, + [SMALL_STATE(1161)] = 47954, + [SMALL_STATE(1162)] = 47987, + [SMALL_STATE(1163)] = 48022, + [SMALL_STATE(1164)] = 48073, + [SMALL_STATE(1165)] = 48124, + [SMALL_STATE(1166)] = 48167, + [SMALL_STATE(1167)] = 48218, + [SMALL_STATE(1168)] = 48251, + [SMALL_STATE(1169)] = 48302, + [SMALL_STATE(1170)] = 48353, + [SMALL_STATE(1171)] = 48408, + [SMALL_STATE(1172)] = 48445, + [SMALL_STATE(1173)] = 48488, + [SMALL_STATE(1174)] = 48539, + [SMALL_STATE(1175)] = 48572, + [SMALL_STATE(1176)] = 48623, + [SMALL_STATE(1177)] = 48678, + [SMALL_STATE(1178)] = 48729, + [SMALL_STATE(1179)] = 48780, + [SMALL_STATE(1180)] = 48813, + [SMALL_STATE(1181)] = 48853, + [SMALL_STATE(1182)] = 48893, + [SMALL_STATE(1183)] = 48941, + [SMALL_STATE(1184)] = 48981, + [SMALL_STATE(1185)] = 49009, + [SMALL_STATE(1186)] = 49049, + [SMALL_STATE(1187)] = 49089, + [SMALL_STATE(1188)] = 49129, + [SMALL_STATE(1189)] = 49169, + [SMALL_STATE(1190)] = 49219, + [SMALL_STATE(1191)] = 49259, + [SMALL_STATE(1192)] = 49299, + [SMALL_STATE(1193)] = 49339, + [SMALL_STATE(1194)] = 49367, + [SMALL_STATE(1195)] = 49407, + [SMALL_STATE(1196)] = 49447, + [SMALL_STATE(1197)] = 49487, + [SMALL_STATE(1198)] = 49519, + [SMALL_STATE(1199)] = 49559, + [SMALL_STATE(1200)] = 49599, + [SMALL_STATE(1201)] = 49639, + [SMALL_STATE(1202)] = 49679, + [SMALL_STATE(1203)] = 49719, + [SMALL_STATE(1204)] = 49747, + [SMALL_STATE(1205)] = 49787, + [SMALL_STATE(1206)] = 49835, + [SMALL_STATE(1207)] = 49881, + [SMALL_STATE(1208)] = 49909, + [SMALL_STATE(1209)] = 49949, + [SMALL_STATE(1210)] = 49989, + [SMALL_STATE(1211)] = 50035, + [SMALL_STATE(1212)] = 50075, + [SMALL_STATE(1213)] = 50103, + [SMALL_STATE(1214)] = 50143, + [SMALL_STATE(1215)] = 50187, + [SMALL_STATE(1216)] = 50229, + [SMALL_STATE(1217)] = 50257, + [SMALL_STATE(1218)] = 50297, + [SMALL_STATE(1219)] = 50337, + [SMALL_STATE(1220)] = 50373, + [SMALL_STATE(1221)] = 50413, + [SMALL_STATE(1222)] = 50453, + [SMALL_STATE(1223)] = 50493, + [SMALL_STATE(1224)] = 50533, + [SMALL_STATE(1225)] = 50573, + [SMALL_STATE(1226)] = 50613, + [SMALL_STATE(1227)] = 50653, + [SMALL_STATE(1228)] = 50693, + [SMALL_STATE(1229)] = 50733, + [SMALL_STATE(1230)] = 50773, + [SMALL_STATE(1231)] = 50813, + [SMALL_STATE(1232)] = 50847, + [SMALL_STATE(1233)] = 50887, + [SMALL_STATE(1234)] = 50927, + [SMALL_STATE(1235)] = 50967, + [SMALL_STATE(1236)] = 51007, + [SMALL_STATE(1237)] = 51052, + [SMALL_STATE(1238)] = 51079, + [SMALL_STATE(1239)] = 51122, + [SMALL_STATE(1240)] = 51171, + [SMALL_STATE(1241)] = 51216, + [SMALL_STATE(1242)] = 51265, + [SMALL_STATE(1243)] = 51308, + [SMALL_STATE(1244)] = 51353, + [SMALL_STATE(1245)] = 51380, + [SMALL_STATE(1246)] = 51425, + [SMALL_STATE(1247)] = 51468, + [SMALL_STATE(1248)] = 51513, + [SMALL_STATE(1249)] = 51558, + [SMALL_STATE(1250)] = 51603, + [SMALL_STATE(1251)] = 51630, + [SMALL_STATE(1252)] = 51657, + [SMALL_STATE(1253)] = 51684, + [SMALL_STATE(1254)] = 51711, + [SMALL_STATE(1255)] = 51756, + [SMALL_STATE(1256)] = 51801, + [SMALL_STATE(1257)] = 51838, + [SMALL_STATE(1258)] = 51881, + [SMALL_STATE(1259)] = 51908, + [SMALL_STATE(1260)] = 51939, + [SMALL_STATE(1261)] = 51966, + [SMALL_STATE(1262)] = 52011, + [SMALL_STATE(1263)] = 52038, + [SMALL_STATE(1264)] = 52083, + [SMALL_STATE(1265)] = 52128, + [SMALL_STATE(1266)] = 52161, + [SMALL_STATE(1267)] = 52202, + [SMALL_STATE(1268)] = 52245, + [SMALL_STATE(1269)] = 52280, + [SMALL_STATE(1270)] = 52325, + [SMALL_STATE(1271)] = 52370, + [SMALL_STATE(1272)] = 52397, + [SMALL_STATE(1273)] = 52436, + [SMALL_STATE(1274)] = 52481, + [SMALL_STATE(1275)] = 52518, + [SMALL_STATE(1276)] = 52547, + [SMALL_STATE(1277)] = 52587, + [SMALL_STATE(1278)] = 52627, + [SMALL_STATE(1279)] = 52667, + [SMALL_STATE(1280)] = 52711, + [SMALL_STATE(1281)] = 52751, + [SMALL_STATE(1282)] = 52791, + [SMALL_STATE(1283)] = 52831, + [SMALL_STATE(1284)] = 52872, + [SMALL_STATE(1285)] = 52913, + [SMALL_STATE(1286)] = 52954, + [SMALL_STATE(1287)] = 52995, + [SMALL_STATE(1288)] = 53036, + [SMALL_STATE(1289)] = 53077, + [SMALL_STATE(1290)] = 53118, + [SMALL_STATE(1291)] = 53159, + [SMALL_STATE(1292)] = 53193, + [SMALL_STATE(1293)] = 53233, + [SMALL_STATE(1294)] = 53271, + [SMALL_STATE(1295)] = 53309, + [SMALL_STATE(1296)] = 53350, + [SMALL_STATE(1297)] = 53379, + [SMALL_STATE(1298)] = 53418, + [SMALL_STATE(1299)] = 53457, + [SMALL_STATE(1300)] = 53496, + [SMALL_STATE(1301)] = 53535, + [SMALL_STATE(1302)] = 53576, + [SMALL_STATE(1303)] = 53605, + [SMALL_STATE(1304)] = 53642, + [SMALL_STATE(1305)] = 53671, + [SMALL_STATE(1306)] = 53700, + [SMALL_STATE(1307)] = 53741, + [SMALL_STATE(1308)] = 53767, + [SMALL_STATE(1309)] = 53804, + [SMALL_STATE(1310)] = 53841, + [SMALL_STATE(1311)] = 53870, + [SMALL_STATE(1312)] = 53899, + [SMALL_STATE(1313)] = 53928, + [SMALL_STATE(1314)] = 53965, + [SMALL_STATE(1315)] = 54002, + [SMALL_STATE(1316)] = 54039, + [SMALL_STATE(1317)] = 54060, + [SMALL_STATE(1318)] = 54085, + [SMALL_STATE(1319)] = 54122, + [SMALL_STATE(1320)] = 54151, + [SMALL_STATE(1321)] = 54188, + [SMALL_STATE(1322)] = 54225, + [SMALL_STATE(1323)] = 54262, + [SMALL_STATE(1324)] = 54283, + [SMALL_STATE(1325)] = 54304, + [SMALL_STATE(1326)] = 54337, + [SMALL_STATE(1327)] = 54370, + [SMALL_STATE(1328)] = 54407, + [SMALL_STATE(1329)] = 54444, + [SMALL_STATE(1330)] = 54480, + [SMALL_STATE(1331)] = 54504, + [SMALL_STATE(1332)] = 54529, + [SMALL_STATE(1333)] = 54558, + [SMALL_STATE(1334)] = 54589, + [SMALL_STATE(1335)] = 54620, + [SMALL_STATE(1336)] = 54649, + [SMALL_STATE(1337)] = 54680, + [SMALL_STATE(1338)] = 54709, + [SMALL_STATE(1339)] = 54738, + [SMALL_STATE(1340)] = 54765, + [SMALL_STATE(1341)] = 54796, + [SMALL_STATE(1342)] = 54827, + [SMALL_STATE(1343)] = 54856, + [SMALL_STATE(1344)] = 54887, + [SMALL_STATE(1345)] = 54916, + [SMALL_STATE(1346)] = 54945, + [SMALL_STATE(1347)] = 54974, + [SMALL_STATE(1348)] = 55003, + [SMALL_STATE(1349)] = 55032, + [SMALL_STATE(1350)] = 55061, + [SMALL_STATE(1351)] = 55090, + [SMALL_STATE(1352)] = 55121, + [SMALL_STATE(1353)] = 55146, + [SMALL_STATE(1354)] = 55173, + [SMALL_STATE(1355)] = 55200, + [SMALL_STATE(1356)] = 55227, + [SMALL_STATE(1357)] = 55256, + [SMALL_STATE(1358)] = 55287, + [SMALL_STATE(1359)] = 55318, + [SMALL_STATE(1360)] = 55347, + [SMALL_STATE(1361)] = 55365, + [SMALL_STATE(1362)] = 55383, + [SMALL_STATE(1363)] = 55401, + [SMALL_STATE(1364)] = 55427, + [SMALL_STATE(1365)] = 55453, + [SMALL_STATE(1366)] = 55483, + [SMALL_STATE(1367)] = 55501, + [SMALL_STATE(1368)] = 55527, + [SMALL_STATE(1369)] = 55559, + [SMALL_STATE(1370)] = 55577, + [SMALL_STATE(1371)] = 55601, + [SMALL_STATE(1372)] = 55619, + [SMALL_STATE(1373)] = 55645, + [SMALL_STATE(1374)] = 55677, + [SMALL_STATE(1375)] = 55709, + [SMALL_STATE(1376)] = 55733, + [SMALL_STATE(1377)] = 55765, + [SMALL_STATE(1378)] = 55783, + [SMALL_STATE(1379)] = 55805, + [SMALL_STATE(1380)] = 55826, + [SMALL_STATE(1381)] = 55855, + [SMALL_STATE(1382)] = 55884, + [SMALL_STATE(1383)] = 55913, + [SMALL_STATE(1384)] = 55942, + [SMALL_STATE(1385)] = 55967, + [SMALL_STATE(1386)] = 55988, + [SMALL_STATE(1387)] = 56017, + [SMALL_STATE(1388)] = 56038, + [SMALL_STATE(1389)] = 56057, + [SMALL_STATE(1390)] = 56078, + [SMALL_STATE(1391)] = 56107, + [SMALL_STATE(1392)] = 56128, + [SMALL_STATE(1393)] = 56157, + [SMALL_STATE(1394)] = 56182, + [SMALL_STATE(1395)] = 56203, + [SMALL_STATE(1396)] = 56232, + [SMALL_STATE(1397)] = 56253, + [SMALL_STATE(1398)] = 56274, + [SMALL_STATE(1399)] = 56300, + [SMALL_STATE(1400)] = 56322, + [SMALL_STATE(1401)] = 56348, + [SMALL_STATE(1402)] = 56368, + [SMALL_STATE(1403)] = 56388, + [SMALL_STATE(1404)] = 56404, + [SMALL_STATE(1405)] = 56430, + [SMALL_STATE(1406)] = 56454, + [SMALL_STATE(1407)] = 56480, + [SMALL_STATE(1408)] = 56506, + [SMALL_STATE(1409)] = 56522, + [SMALL_STATE(1410)] = 56548, + [SMALL_STATE(1411)] = 56564, + [SMALL_STATE(1412)] = 56580, + [SMALL_STATE(1413)] = 56606, + [SMALL_STATE(1414)] = 56632, + [SMALL_STATE(1415)] = 56648, + [SMALL_STATE(1416)] = 56664, + [SMALL_STATE(1417)] = 56690, + [SMALL_STATE(1418)] = 56706, + [SMALL_STATE(1419)] = 56732, + [SMALL_STATE(1420)] = 56748, + [SMALL_STATE(1421)] = 56764, + [SMALL_STATE(1422)] = 56782, + [SMALL_STATE(1423)] = 56808, + [SMALL_STATE(1424)] = 56834, + [SMALL_STATE(1425)] = 56854, + [SMALL_STATE(1426)] = 56879, + [SMALL_STATE(1427)] = 56898, + [SMALL_STATE(1428)] = 56921, + [SMALL_STATE(1429)] = 56944, + [SMALL_STATE(1430)] = 56967, + [SMALL_STATE(1431)] = 56990, + [SMALL_STATE(1432)] = 57007, + [SMALL_STATE(1433)] = 57022, + [SMALL_STATE(1434)] = 57045, + [SMALL_STATE(1435)] = 57068, + [SMALL_STATE(1436)] = 57083, + [SMALL_STATE(1437)] = 57098, + [SMALL_STATE(1438)] = 57113, + [SMALL_STATE(1439)] = 57136, + [SMALL_STATE(1440)] = 57151, + [SMALL_STATE(1441)] = 57170, + [SMALL_STATE(1442)] = 57187, + [SMALL_STATE(1443)] = 57202, + [SMALL_STATE(1444)] = 57219, + [SMALL_STATE(1445)] = 57234, + [SMALL_STATE(1446)] = 57249, + [SMALL_STATE(1447)] = 57264, + [SMALL_STATE(1448)] = 57279, + [SMALL_STATE(1449)] = 57296, + [SMALL_STATE(1450)] = 57314, + [SMALL_STATE(1451)] = 57328, + [SMALL_STATE(1452)] = 57342, + [SMALL_STATE(1453)] = 57356, + [SMALL_STATE(1454)] = 57370, + [SMALL_STATE(1455)] = 57384, + [SMALL_STATE(1456)] = 57398, + [SMALL_STATE(1457)] = 57412, + [SMALL_STATE(1458)] = 57426, + [SMALL_STATE(1459)] = 57446, + [SMALL_STATE(1460)] = 57460, + [SMALL_STATE(1461)] = 57476, + [SMALL_STATE(1462)] = 57490, + [SMALL_STATE(1463)] = 57506, + [SMALL_STATE(1464)] = 57520, + [SMALL_STATE(1465)] = 57540, + [SMALL_STATE(1466)] = 57558, + [SMALL_STATE(1467)] = 57572, + [SMALL_STATE(1468)] = 57586, + [SMALL_STATE(1469)] = 57600, + [SMALL_STATE(1470)] = 57618, + [SMALL_STATE(1471)] = 57638, + [SMALL_STATE(1472)] = 57658, + [SMALL_STATE(1473)] = 57672, + [SMALL_STATE(1474)] = 57690, + [SMALL_STATE(1475)] = 57710, + [SMALL_STATE(1476)] = 57728, + [SMALL_STATE(1477)] = 57748, + [SMALL_STATE(1478)] = 57764, + [SMALL_STATE(1479)] = 57784, + [SMALL_STATE(1480)] = 57804, + [SMALL_STATE(1481)] = 57822, + [SMALL_STATE(1482)] = 57842, + [SMALL_STATE(1483)] = 57862, + [SMALL_STATE(1484)] = 57882, + [SMALL_STATE(1485)] = 57902, + [SMALL_STATE(1486)] = 57922, + [SMALL_STATE(1487)] = 57940, + [SMALL_STATE(1488)] = 57959, + [SMALL_STATE(1489)] = 57974, + [SMALL_STATE(1490)] = 57993, + [SMALL_STATE(1491)] = 58004, + [SMALL_STATE(1492)] = 58015, + [SMALL_STATE(1493)] = 58034, + [SMALL_STATE(1494)] = 58051, + [SMALL_STATE(1495)] = 58062, + [SMALL_STATE(1496)] = 58073, + [SMALL_STATE(1497)] = 58084, + [SMALL_STATE(1498)] = 58095, + [SMALL_STATE(1499)] = 58106, + [SMALL_STATE(1500)] = 58117, + [SMALL_STATE(1501)] = 58128, + [SMALL_STATE(1502)] = 58139, + [SMALL_STATE(1503)] = 58156, + [SMALL_STATE(1504)] = 58167, + [SMALL_STATE(1505)] = 58182, + [SMALL_STATE(1506)] = 58193, + [SMALL_STATE(1507)] = 58204, + [SMALL_STATE(1508)] = 58220, + [SMALL_STATE(1509)] = 58234, + [SMALL_STATE(1510)] = 58250, + [SMALL_STATE(1511)] = 58266, + [SMALL_STATE(1512)] = 58280, + [SMALL_STATE(1513)] = 58296, + [SMALL_STATE(1514)] = 58310, + [SMALL_STATE(1515)] = 58324, + [SMALL_STATE(1516)] = 58338, + [SMALL_STATE(1517)] = 58352, + [SMALL_STATE(1518)] = 58366, + [SMALL_STATE(1519)] = 58380, + [SMALL_STATE(1520)] = 58394, + [SMALL_STATE(1521)] = 58410, + [SMALL_STATE(1522)] = 58424, + [SMALL_STATE(1523)] = 58440, + [SMALL_STATE(1524)] = 58450, + [SMALL_STATE(1525)] = 58460, + [SMALL_STATE(1526)] = 58474, + [SMALL_STATE(1527)] = 58488, + [SMALL_STATE(1528)] = 58504, + [SMALL_STATE(1529)] = 58518, + [SMALL_STATE(1530)] = 58532, + [SMALL_STATE(1531)] = 58546, + [SMALL_STATE(1532)] = 58560, + [SMALL_STATE(1533)] = 58576, + [SMALL_STATE(1534)] = 58590, + [SMALL_STATE(1535)] = 58606, + [SMALL_STATE(1536)] = 58622, + [SMALL_STATE(1537)] = 58638, + [SMALL_STATE(1538)] = 58652, + [SMALL_STATE(1539)] = 58666, + [SMALL_STATE(1540)] = 58680, + [SMALL_STATE(1541)] = 58694, + [SMALL_STATE(1542)] = 58708, + [SMALL_STATE(1543)] = 58724, + [SMALL_STATE(1544)] = 58738, + [SMALL_STATE(1545)] = 58754, + [SMALL_STATE(1546)] = 58768, + [SMALL_STATE(1547)] = 58782, + [SMALL_STATE(1548)] = 58796, + [SMALL_STATE(1549)] = 58810, + [SMALL_STATE(1550)] = 58824, + [SMALL_STATE(1551)] = 58838, + [SMALL_STATE(1552)] = 58852, + [SMALL_STATE(1553)] = 58868, + [SMALL_STATE(1554)] = 58882, + [SMALL_STATE(1555)] = 58896, + [SMALL_STATE(1556)] = 58910, + [SMALL_STATE(1557)] = 58926, + [SMALL_STATE(1558)] = 58942, + [SMALL_STATE(1559)] = 58958, + [SMALL_STATE(1560)] = 58972, + [SMALL_STATE(1561)] = 58986, + [SMALL_STATE(1562)] = 59000, + [SMALL_STATE(1563)] = 59016, + [SMALL_STATE(1564)] = 59032, + [SMALL_STATE(1565)] = 59046, + [SMALL_STATE(1566)] = 59060, + [SMALL_STATE(1567)] = 59074, + [SMALL_STATE(1568)] = 59088, + [SMALL_STATE(1569)] = 59102, + [SMALL_STATE(1570)] = 59116, + [SMALL_STATE(1571)] = 59130, + [SMALL_STATE(1572)] = 59143, + [SMALL_STATE(1573)] = 59156, + [SMALL_STATE(1574)] = 59169, + [SMALL_STATE(1575)] = 59182, + [SMALL_STATE(1576)] = 59191, + [SMALL_STATE(1577)] = 59200, + [SMALL_STATE(1578)] = 59213, + [SMALL_STATE(1579)] = 59224, + [SMALL_STATE(1580)] = 59237, + [SMALL_STATE(1581)] = 59250, + [SMALL_STATE(1582)] = 59263, + [SMALL_STATE(1583)] = 59276, + [SMALL_STATE(1584)] = 59285, + [SMALL_STATE(1585)] = 59294, + [SMALL_STATE(1586)] = 59307, + [SMALL_STATE(1587)] = 59320, + [SMALL_STATE(1588)] = 59333, + [SMALL_STATE(1589)] = 59342, + [SMALL_STATE(1590)] = 59355, + [SMALL_STATE(1591)] = 59368, + [SMALL_STATE(1592)] = 59377, + [SMALL_STATE(1593)] = 59386, + [SMALL_STATE(1594)] = 59399, + [SMALL_STATE(1595)] = 59412, + [SMALL_STATE(1596)] = 59423, + [SMALL_STATE(1597)] = 59436, + [SMALL_STATE(1598)] = 59447, + [SMALL_STATE(1599)] = 59460, + [SMALL_STATE(1600)] = 59469, + [SMALL_STATE(1601)] = 59482, + [SMALL_STATE(1602)] = 59495, + [SMALL_STATE(1603)] = 59508, + [SMALL_STATE(1604)] = 59517, + [SMALL_STATE(1605)] = 59528, + [SMALL_STATE(1606)] = 59541, + [SMALL_STATE(1607)] = 59554, + [SMALL_STATE(1608)] = 59567, + [SMALL_STATE(1609)] = 59580, + [SMALL_STATE(1610)] = 59589, + [SMALL_STATE(1611)] = 59602, + [SMALL_STATE(1612)] = 59615, + [SMALL_STATE(1613)] = 59628, + [SMALL_STATE(1614)] = 59641, + [SMALL_STATE(1615)] = 59654, + [SMALL_STATE(1616)] = 59667, + [SMALL_STATE(1617)] = 59680, + [SMALL_STATE(1618)] = 59691, + [SMALL_STATE(1619)] = 59704, + [SMALL_STATE(1620)] = 59717, + [SMALL_STATE(1621)] = 59730, + [SMALL_STATE(1622)] = 59743, + [SMALL_STATE(1623)] = 59756, + [SMALL_STATE(1624)] = 59769, + [SMALL_STATE(1625)] = 59782, + [SMALL_STATE(1626)] = 59795, + [SMALL_STATE(1627)] = 59808, + [SMALL_STATE(1628)] = 59821, + [SMALL_STATE(1629)] = 59834, + [SMALL_STATE(1630)] = 59847, + [SMALL_STATE(1631)] = 59860, + [SMALL_STATE(1632)] = 59873, + [SMALL_STATE(1633)] = 59886, + [SMALL_STATE(1634)] = 59899, + [SMALL_STATE(1635)] = 59912, + [SMALL_STATE(1636)] = 59925, + [SMALL_STATE(1637)] = 59938, + [SMALL_STATE(1638)] = 59951, + [SMALL_STATE(1639)] = 59964, + [SMALL_STATE(1640)] = 59977, + [SMALL_STATE(1641)] = 59990, + [SMALL_STATE(1642)] = 60003, + [SMALL_STATE(1643)] = 60016, + [SMALL_STATE(1644)] = 60029, + [SMALL_STATE(1645)] = 60042, + [SMALL_STATE(1646)] = 60055, + [SMALL_STATE(1647)] = 60068, + [SMALL_STATE(1648)] = 60081, + [SMALL_STATE(1649)] = 60094, + [SMALL_STATE(1650)] = 60107, + [SMALL_STATE(1651)] = 60120, + [SMALL_STATE(1652)] = 60133, + [SMALL_STATE(1653)] = 60146, + [SMALL_STATE(1654)] = 60159, + [SMALL_STATE(1655)] = 60172, + [SMALL_STATE(1656)] = 60185, + [SMALL_STATE(1657)] = 60198, + [SMALL_STATE(1658)] = 60211, + [SMALL_STATE(1659)] = 60224, + [SMALL_STATE(1660)] = 60237, + [SMALL_STATE(1661)] = 60250, + [SMALL_STATE(1662)] = 60263, + [SMALL_STATE(1663)] = 60276, + [SMALL_STATE(1664)] = 60289, + [SMALL_STATE(1665)] = 60302, + [SMALL_STATE(1666)] = 60315, + [SMALL_STATE(1667)] = 60328, + [SMALL_STATE(1668)] = 60341, + [SMALL_STATE(1669)] = 60354, + [SMALL_STATE(1670)] = 60367, + [SMALL_STATE(1671)] = 60380, + [SMALL_STATE(1672)] = 60393, + [SMALL_STATE(1673)] = 60406, + [SMALL_STATE(1674)] = 60419, + [SMALL_STATE(1675)] = 60432, + [SMALL_STATE(1676)] = 60445, + [SMALL_STATE(1677)] = 60458, + [SMALL_STATE(1678)] = 60467, + [SMALL_STATE(1679)] = 60480, + [SMALL_STATE(1680)] = 60493, + [SMALL_STATE(1681)] = 60502, + [SMALL_STATE(1682)] = 60515, + [SMALL_STATE(1683)] = 60528, + [SMALL_STATE(1684)] = 60541, + [SMALL_STATE(1685)] = 60554, + [SMALL_STATE(1686)] = 60567, + [SMALL_STATE(1687)] = 60580, + [SMALL_STATE(1688)] = 60593, + [SMALL_STATE(1689)] = 60606, + [SMALL_STATE(1690)] = 60619, + [SMALL_STATE(1691)] = 60632, + [SMALL_STATE(1692)] = 60645, + [SMALL_STATE(1693)] = 60658, + [SMALL_STATE(1694)] = 60668, + [SMALL_STATE(1695)] = 60678, + [SMALL_STATE(1696)] = 60688, + [SMALL_STATE(1697)] = 60698, + [SMALL_STATE(1698)] = 60708, + [SMALL_STATE(1699)] = 60718, + [SMALL_STATE(1700)] = 60728, + [SMALL_STATE(1701)] = 60738, + [SMALL_STATE(1702)] = 60748, + [SMALL_STATE(1703)] = 60756, + [SMALL_STATE(1704)] = 60764, + [SMALL_STATE(1705)] = 60774, + [SMALL_STATE(1706)] = 60782, + [SMALL_STATE(1707)] = 60792, + [SMALL_STATE(1708)] = 60802, + [SMALL_STATE(1709)] = 60812, + [SMALL_STATE(1710)] = 60822, + [SMALL_STATE(1711)] = 60832, + [SMALL_STATE(1712)] = 60842, + [SMALL_STATE(1713)] = 60852, + [SMALL_STATE(1714)] = 60862, + [SMALL_STATE(1715)] = 60872, + [SMALL_STATE(1716)] = 60882, + [SMALL_STATE(1717)] = 60892, + [SMALL_STATE(1718)] = 60902, + [SMALL_STATE(1719)] = 60912, + [SMALL_STATE(1720)] = 60922, + [SMALL_STATE(1721)] = 60932, + [SMALL_STATE(1722)] = 60942, + [SMALL_STATE(1723)] = 60952, + [SMALL_STATE(1724)] = 60960, + [SMALL_STATE(1725)] = 60970, + [SMALL_STATE(1726)] = 60980, + [SMALL_STATE(1727)] = 60990, + [SMALL_STATE(1728)] = 61000, + [SMALL_STATE(1729)] = 61010, + [SMALL_STATE(1730)] = 61020, + [SMALL_STATE(1731)] = 61030, + [SMALL_STATE(1732)] = 61040, + [SMALL_STATE(1733)] = 61050, + [SMALL_STATE(1734)] = 61060, + [SMALL_STATE(1735)] = 61068, + [SMALL_STATE(1736)] = 61078, + [SMALL_STATE(1737)] = 61088, + [SMALL_STATE(1738)] = 61098, + [SMALL_STATE(1739)] = 61108, + [SMALL_STATE(1740)] = 61118, + [SMALL_STATE(1741)] = 61128, + [SMALL_STATE(1742)] = 61138, + [SMALL_STATE(1743)] = 61148, + [SMALL_STATE(1744)] = 61156, + [SMALL_STATE(1745)] = 61166, + [SMALL_STATE(1746)] = 61174, + [SMALL_STATE(1747)] = 61182, + [SMALL_STATE(1748)] = 61190, + [SMALL_STATE(1749)] = 61198, + [SMALL_STATE(1750)] = 61208, + [SMALL_STATE(1751)] = 61218, + [SMALL_STATE(1752)] = 61228, + [SMALL_STATE(1753)] = 61238, + [SMALL_STATE(1754)] = 61248, + [SMALL_STATE(1755)] = 61258, + [SMALL_STATE(1756)] = 61266, + [SMALL_STATE(1757)] = 61276, + [SMALL_STATE(1758)] = 61286, + [SMALL_STATE(1759)] = 61296, + [SMALL_STATE(1760)] = 61306, + [SMALL_STATE(1761)] = 61316, + [SMALL_STATE(1762)] = 61324, + [SMALL_STATE(1763)] = 61332, + [SMALL_STATE(1764)] = 61342, + [SMALL_STATE(1765)] = 61350, + [SMALL_STATE(1766)] = 61360, + [SMALL_STATE(1767)] = 61368, + [SMALL_STATE(1768)] = 61378, + [SMALL_STATE(1769)] = 61388, + [SMALL_STATE(1770)] = 61398, + [SMALL_STATE(1771)] = 61408, + [SMALL_STATE(1772)] = 61418, + [SMALL_STATE(1773)] = 61428, + [SMALL_STATE(1774)] = 61438, + [SMALL_STATE(1775)] = 61446, + [SMALL_STATE(1776)] = 61454, + [SMALL_STATE(1777)] = 61464, + [SMALL_STATE(1778)] = 61472, + [SMALL_STATE(1779)] = 61482, + [SMALL_STATE(1780)] = 61492, + [SMALL_STATE(1781)] = 61502, + [SMALL_STATE(1782)] = 61509, + [SMALL_STATE(1783)] = 61516, + [SMALL_STATE(1784)] = 61523, + [SMALL_STATE(1785)] = 61530, + [SMALL_STATE(1786)] = 61537, + [SMALL_STATE(1787)] = 61544, + [SMALL_STATE(1788)] = 61551, + [SMALL_STATE(1789)] = 61558, + [SMALL_STATE(1790)] = 61565, + [SMALL_STATE(1791)] = 61572, + [SMALL_STATE(1792)] = 61579, + [SMALL_STATE(1793)] = 61586, + [SMALL_STATE(1794)] = 61593, + [SMALL_STATE(1795)] = 61600, + [SMALL_STATE(1796)] = 61607, + [SMALL_STATE(1797)] = 61614, + [SMALL_STATE(1798)] = 61621, + [SMALL_STATE(1799)] = 61628, + [SMALL_STATE(1800)] = 61635, + [SMALL_STATE(1801)] = 61642, + [SMALL_STATE(1802)] = 61649, + [SMALL_STATE(1803)] = 61656, + [SMALL_STATE(1804)] = 61663, + [SMALL_STATE(1805)] = 61670, + [SMALL_STATE(1806)] = 61677, + [SMALL_STATE(1807)] = 61684, + [SMALL_STATE(1808)] = 61691, + [SMALL_STATE(1809)] = 61698, + [SMALL_STATE(1810)] = 61705, + [SMALL_STATE(1811)] = 61712, + [SMALL_STATE(1812)] = 61719, + [SMALL_STATE(1813)] = 61726, + [SMALL_STATE(1814)] = 61733, + [SMALL_STATE(1815)] = 61740, + [SMALL_STATE(1816)] = 61747, + [SMALL_STATE(1817)] = 61754, + [SMALL_STATE(1818)] = 61761, + [SMALL_STATE(1819)] = 61768, + [SMALL_STATE(1820)] = 61775, + [SMALL_STATE(1821)] = 61782, + [SMALL_STATE(1822)] = 61789, + [SMALL_STATE(1823)] = 61796, + [SMALL_STATE(1824)] = 61803, + [SMALL_STATE(1825)] = 61810, + [SMALL_STATE(1826)] = 61817, + [SMALL_STATE(1827)] = 61824, + [SMALL_STATE(1828)] = 61831, + [SMALL_STATE(1829)] = 61838, + [SMALL_STATE(1830)] = 61845, + [SMALL_STATE(1831)] = 61852, + [SMALL_STATE(1832)] = 61859, + [SMALL_STATE(1833)] = 61866, + [SMALL_STATE(1834)] = 61873, + [SMALL_STATE(1835)] = 61880, + [SMALL_STATE(1836)] = 61887, + [SMALL_STATE(1837)] = 61894, + [SMALL_STATE(1838)] = 61901, + [SMALL_STATE(1839)] = 61908, + [SMALL_STATE(1840)] = 61915, + [SMALL_STATE(1841)] = 61922, + [SMALL_STATE(1842)] = 61929, + [SMALL_STATE(1843)] = 61936, + [SMALL_STATE(1844)] = 61943, + [SMALL_STATE(1845)] = 61950, + [SMALL_STATE(1846)] = 61957, + [SMALL_STATE(1847)] = 61964, + [SMALL_STATE(1848)] = 61971, + [SMALL_STATE(1849)] = 61978, + [SMALL_STATE(1850)] = 61985, + [SMALL_STATE(1851)] = 61992, + [SMALL_STATE(1852)] = 61999, + [SMALL_STATE(1853)] = 62006, + [SMALL_STATE(1854)] = 62013, + [SMALL_STATE(1855)] = 62020, + [SMALL_STATE(1856)] = 62027, + [SMALL_STATE(1857)] = 62034, + [SMALL_STATE(1858)] = 62041, + [SMALL_STATE(1859)] = 62048, + [SMALL_STATE(1860)] = 62055, + [SMALL_STATE(1861)] = 62062, + [SMALL_STATE(1862)] = 62069, + [SMALL_STATE(1863)] = 62076, + [SMALL_STATE(1864)] = 62083, + [SMALL_STATE(1865)] = 62090, + [SMALL_STATE(1866)] = 62097, + [SMALL_STATE(1867)] = 62104, + [SMALL_STATE(1868)] = 62111, + [SMALL_STATE(1869)] = 62118, + [SMALL_STATE(1870)] = 62125, + [SMALL_STATE(1871)] = 62132, + [SMALL_STATE(1872)] = 62139, + [SMALL_STATE(1873)] = 62146, + [SMALL_STATE(1874)] = 62153, + [SMALL_STATE(1875)] = 62160, + [SMALL_STATE(1876)] = 62167, + [SMALL_STATE(1877)] = 62174, + [SMALL_STATE(1878)] = 62181, + [SMALL_STATE(1879)] = 62188, + [SMALL_STATE(1880)] = 62195, + [SMALL_STATE(1881)] = 62202, + [SMALL_STATE(1882)] = 62209, + [SMALL_STATE(1883)] = 62216, + [SMALL_STATE(1884)] = 62223, + [SMALL_STATE(1885)] = 62230, + [SMALL_STATE(1886)] = 62237, + [SMALL_STATE(1887)] = 62244, + [SMALL_STATE(1888)] = 62251, + [SMALL_STATE(1889)] = 62258, + [SMALL_STATE(1890)] = 62265, + [SMALL_STATE(1891)] = 62272, + [SMALL_STATE(1892)] = 62279, + [SMALL_STATE(1893)] = 62286, + [SMALL_STATE(1894)] = 62293, + [SMALL_STATE(1895)] = 62300, + [SMALL_STATE(1896)] = 62307, + [SMALL_STATE(1897)] = 62314, + [SMALL_STATE(1898)] = 62321, + [SMALL_STATE(1899)] = 62328, + [SMALL_STATE(1900)] = 62335, + [SMALL_STATE(1901)] = 62342, + [SMALL_STATE(1902)] = 62349, + [SMALL_STATE(1903)] = 62356, + [SMALL_STATE(1904)] = 62363, + [SMALL_STATE(1905)] = 62370, + [SMALL_STATE(1906)] = 62377, + [SMALL_STATE(1907)] = 62384, + [SMALL_STATE(1908)] = 62391, + [SMALL_STATE(1909)] = 62398, + [SMALL_STATE(1910)] = 62405, + [SMALL_STATE(1911)] = 62412, + [SMALL_STATE(1912)] = 62419, + [SMALL_STATE(1913)] = 62426, + [SMALL_STATE(1914)] = 62433, + [SMALL_STATE(1915)] = 62440, + [SMALL_STATE(1916)] = 62447, + [SMALL_STATE(1917)] = 62454, + [SMALL_STATE(1918)] = 62461, + [SMALL_STATE(1919)] = 62468, + [SMALL_STATE(1920)] = 62475, + [SMALL_STATE(1921)] = 62482, + [SMALL_STATE(1922)] = 62489, + [SMALL_STATE(1923)] = 62496, + [SMALL_STATE(1924)] = 62503, + [SMALL_STATE(1925)] = 62510, + [SMALL_STATE(1926)] = 62517, + [SMALL_STATE(1927)] = 62524, + [SMALL_STATE(1928)] = 62531, + [SMALL_STATE(1929)] = 62538, + [SMALL_STATE(1930)] = 62545, + [SMALL_STATE(1931)] = 62552, + [SMALL_STATE(1932)] = 62559, + [SMALL_STATE(1933)] = 62566, + [SMALL_STATE(1934)] = 62573, + [SMALL_STATE(1935)] = 62580, + [SMALL_STATE(1936)] = 62587, + [SMALL_STATE(1937)] = 62594, + [SMALL_STATE(1938)] = 62601, + [SMALL_STATE(1939)] = 62608, + [SMALL_STATE(1940)] = 62615, + [SMALL_STATE(1941)] = 62622, + [SMALL_STATE(1942)] = 62629, + [SMALL_STATE(1943)] = 62636, + [SMALL_STATE(1944)] = 62643, + [SMALL_STATE(1945)] = 62650, + [SMALL_STATE(1946)] = 62657, + [SMALL_STATE(1947)] = 62664, + [SMALL_STATE(1948)] = 62671, + [SMALL_STATE(1949)] = 62678, + [SMALL_STATE(1950)] = 62685, + [SMALL_STATE(1951)] = 62692, + [SMALL_STATE(1952)] = 62699, + [SMALL_STATE(1953)] = 62706, + [SMALL_STATE(1954)] = 62713, + [SMALL_STATE(1955)] = 62720, + [SMALL_STATE(1956)] = 62727, + [SMALL_STATE(1957)] = 62734, + [SMALL_STATE(1958)] = 62741, + [SMALL_STATE(1959)] = 62748, + [SMALL_STATE(1960)] = 62755, + [SMALL_STATE(1961)] = 62762, + [SMALL_STATE(1962)] = 62769, + [SMALL_STATE(1963)] = 62776, + [SMALL_STATE(1964)] = 62783, + [SMALL_STATE(1965)] = 62790, + [SMALL_STATE(1966)] = 62797, + [SMALL_STATE(1967)] = 62804, + [SMALL_STATE(1968)] = 62811, + [SMALL_STATE(1969)] = 62818, + [SMALL_STATE(1970)] = 62825, + [SMALL_STATE(1971)] = 62832, + [SMALL_STATE(1972)] = 62839, + [SMALL_STATE(1973)] = 62846, + [SMALL_STATE(1974)] = 62853, + [SMALL_STATE(1975)] = 62860, + [SMALL_STATE(1976)] = 62867, + [SMALL_STATE(1977)] = 62874, + [SMALL_STATE(1978)] = 62881, + [SMALL_STATE(1979)] = 62888, + [SMALL_STATE(1980)] = 62895, + [SMALL_STATE(1981)] = 62902, + [SMALL_STATE(1982)] = 62909, + [SMALL_STATE(1983)] = 62916, + [SMALL_STATE(1984)] = 62923, + [SMALL_STATE(1985)] = 62930, + [SMALL_STATE(1986)] = 62937, + [SMALL_STATE(1987)] = 62944, + [SMALL_STATE(1988)] = 62951, + [SMALL_STATE(1989)] = 62958, + [SMALL_STATE(1990)] = 62965, + [SMALL_STATE(1991)] = 62972, + [SMALL_STATE(1992)] = 62979, + [SMALL_STATE(1993)] = 62986, + [SMALL_STATE(1994)] = 62993, + [SMALL_STATE(1995)] = 63000, + [SMALL_STATE(1996)] = 63007, + [SMALL_STATE(1997)] = 63014, + [SMALL_STATE(1998)] = 63021, + [SMALL_STATE(1999)] = 63028, + [SMALL_STATE(2000)] = 63035, + [SMALL_STATE(2001)] = 63042, + [SMALL_STATE(2002)] = 63049, + [SMALL_STATE(2003)] = 63056, + [SMALL_STATE(2004)] = 63063, + [SMALL_STATE(2005)] = 63070, + [SMALL_STATE(2006)] = 63077, + [SMALL_STATE(2007)] = 63084, + [SMALL_STATE(2008)] = 63091, + [SMALL_STATE(2009)] = 63098, + [SMALL_STATE(2010)] = 63105, + [SMALL_STATE(2011)] = 63112, + [SMALL_STATE(2012)] = 63119, + [SMALL_STATE(2013)] = 63126, + [SMALL_STATE(2014)] = 63133, + [SMALL_STATE(2015)] = 63140, + [SMALL_STATE(2016)] = 63147, + [SMALL_STATE(2017)] = 63154, + [SMALL_STATE(2018)] = 63161, + [SMALL_STATE(2019)] = 63168, + [SMALL_STATE(2020)] = 63175, + [SMALL_STATE(2021)] = 63182, + [SMALL_STATE(2022)] = 63189, + [SMALL_STATE(2023)] = 63196, + [SMALL_STATE(2024)] = 63203, + [SMALL_STATE(2025)] = 63210, + [SMALL_STATE(2026)] = 63217, + [SMALL_STATE(2027)] = 63224, + [SMALL_STATE(2028)] = 63231, + [SMALL_STATE(2029)] = 63238, + [SMALL_STATE(2030)] = 63245, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -114529,2271 +116868,2288 @@ 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, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 40), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 17), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 40), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 17), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1917), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1200), - [211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1918), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1743), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(445), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(563), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(563), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(569), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(983), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1050), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(928), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(956), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(764), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1499), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1687), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(590), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2015), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(513), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), - [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1934), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1737), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1924), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(660), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(659), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1813), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1823), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1443), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(708), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), - [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(708), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(454), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1386), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1757), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(980), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1033), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(929), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1764), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(587), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(403), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2018), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(504), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1822), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1820), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1954), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1765), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1806), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(453), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1837), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1193), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1838), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1711), - [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(284), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(981), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1079), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(919), - [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1694), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(657), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1842), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(317), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1980), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(521), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1846), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1723), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2000), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), - [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(462), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2020), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1219), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2014), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), - [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(445), - [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(563), - [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(563), - [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(569), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(974), - [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1072), - [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(932), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), - [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(956), - [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(764), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1499), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1706), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(656), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1839), - [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1754), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(338), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(502), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1896), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1792), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(660), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(659), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1813), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1823), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1443), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1115), - [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), - [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1115), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 9), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 9), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(458), - [783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(445), - [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(563), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(563), - [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(569), - [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(983), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1050), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(764), - [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), - [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1499), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), - [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1687), - [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2015), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(513), - [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), - [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1934), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1737), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1924), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(660), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(659), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1813), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1823), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1443), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(708), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(708), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), - [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(284), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(981), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1079), - [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1694), - [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), - [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(317), - [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1980), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(521), - [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1846), - [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1723), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2000), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 9), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(452), - [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(980), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1033), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1764), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(403), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2018), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(504), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1822), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1820), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1954), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1765), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1806), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 9), - [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(234), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(974), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1072), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), - [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1706), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1754), - [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(338), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(502), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1896), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1792), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(460), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1741), - [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1740), - [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1999), - [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 27), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 85), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 85), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 35), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 35), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 47), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 47), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 111), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 111), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 8), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 8), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 100), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 100), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 76), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 76), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 91), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 91), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 90), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 90), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 62), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 62), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 31), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 31), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 29), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 29), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 28), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 28), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 64), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 64), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 76), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 76), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 47), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 47), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 81), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 81), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 61), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 61), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 18), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 18), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 23), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 23), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 40), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 40), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 72), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 72), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 71), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 71), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 68), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 68), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 67), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 67), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 4), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 4), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 38), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 38), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 17), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 17), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 94), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 94), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 16), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 16), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 97), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 97), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 33), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 33), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, 0, 2), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, 0, 2), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 39), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 39), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 40), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 40), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 57), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 57), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(761), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(445), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(563), - [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(563), - [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(569), - [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(229), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1691), - [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(38), - [1410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1734), - [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1764), - [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(587), - [1419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1793), - [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1735), - [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(403), - [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2018), - [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(504), - [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1822), - [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1820), - [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1954), - [1443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1765), - [1446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1806), - [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(660), - [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(659), - [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1811), - [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1813), - [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1823), - [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1443), - [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(708), - [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1650), - [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1525), - [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(708), - [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(702), - [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(753), - [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(234), - [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(33), - [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1709), - [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1706), - [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(656), - [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1839), - [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1754), - [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(338), - [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1778), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(502), - [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1896), - [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1775), - [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1792), - [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1703), - [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2007), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(752), - [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(284), - [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1741), - [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(597), - [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1937), - [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1740), - [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1999), - [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1688), - [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2000), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(751), - [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(40), - [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1695), - [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1694), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(657), - [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1842), - [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1690), - [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(317), - [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1980), - [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(521), - [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1845), - [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1848), - [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1846), - [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1723), - [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(757), - [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(79), - [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(41), - [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1689), - [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1687), - [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(590), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1824), - [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1692), - [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(315), - [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2015), - [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(513), - [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1935), - [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1934), - [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1926), - [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1737), - [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1924), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, 0, 2), - [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, 0, 2), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 1), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1, 0, 0), - [1701] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), REDUCE(sym__expression_not_binary, 1, 0, 0), SHIFT(1036), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1, 0, 0), - [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 1), REDUCE(sym__expression_not_binary, 1, 0, 0), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), REDUCE(sym__expression_not_binary, 1, 0, 0), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 40), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 40), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(842), - [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1973), - [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1161), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1884), - [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), - [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(764), - [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), - [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), - [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), - [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), - [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1499), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 56), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 84), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 40), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 56), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 105), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1948), - [2025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1206), - [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), - [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), - [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1201), - [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1938), - [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(668), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(764), - [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [2177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), - [2180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), - [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 69), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 69), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 57), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 57), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 106), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 106), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 17), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 40), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 17), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 40), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1186), + [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1927), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1731), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(441), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(638), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(78), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(978), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1019), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(936), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(949), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(766), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1751), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1727), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(652), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1920), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(369), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(527), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1881), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), + [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(597), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(632), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2005), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2004), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1460), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(725), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(725), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(718), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(459), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1391), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1211), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1846), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1768), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(238), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(964), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1025), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(909), + [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(607), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1799), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(382), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1990), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(514), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1854), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1979), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(454), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1396), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1183), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1958), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(983), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1021), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(922), + [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(664), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1808), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(399), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2028), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(513), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1905), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1904), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1963), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1713), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2030), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1232), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2029), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(441), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(638), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(969), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1027), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(905), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), + [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(949), + [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(766), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), + [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), + [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), + [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(577), + [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2015), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1699), + [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(387), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), + [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2011), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2010), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2008), + [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(597), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(632), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), + [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2005), + [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2004), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1460), + [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(718), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 9), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 9), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(453), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(441), + [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(638), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(78), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(978), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1019), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(766), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), + [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), + [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1751), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1727), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(369), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(527), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1881), + [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), + [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(597), + [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(632), + [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2005), + [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2004), + [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1460), + [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(725), + [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), + [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), + [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(725), + [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(718), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(457), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(983), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1021), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), + [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), + [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), + [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(399), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2028), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(513), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1905), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1904), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1963), + [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1713), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), + [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 9), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 9), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(461), + [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(163), + [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(969), + [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1027), + [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1699), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(387), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2011), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2010), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2008), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(238), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(964), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1025), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(382), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1990), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(514), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1854), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1979), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(460), + [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1739), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2009), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 27), + [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 85), + [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 85), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 28), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 28), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 35), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 35), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 91), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 91), + [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 90), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 90), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 76), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 76), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 76), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 76), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 100), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 100), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 47), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 47), + [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 31), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 31), + [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 29), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 29), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 47), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 47), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 81), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 81), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 111), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 111), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 8), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 8), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 62), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 62), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 64), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 64), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 40), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 40), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 68), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 68), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 61), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 61), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 71), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 71), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, 0, 2), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, 0, 2), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 23), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 23), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 18), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 18), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 67), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 67), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 33), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 33), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 40), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 40), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 17), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 17), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 16), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 16), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 39), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 39), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 72), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 72), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 38), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 38), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 97), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 97), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 4), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 4), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 94), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 94), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 57), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 57), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(781), + [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(441), + [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(641), + [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(641), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(638), + [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(163), + [1415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1754), + [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(32), + [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1697), + [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1698), + [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(577), + [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2015), + [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1699), + [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(387), + [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2013), + [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(531), + [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2011), + [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2010), + [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2008), + [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1744), + [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1864), + [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(597), + [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(632), + [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2007), + [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2005), + [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2004), + [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1460), + [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(725), + [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1578), + [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1558), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(725), + [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(718), + [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(780), + [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(238), + [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1735), + [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(590), + [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1790), + [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1739), + [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2009), + [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1701), + [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1979), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(771), + [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(78), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(34), + [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1751), + [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1727), + [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(652), + [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1920), + [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1749), + [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(369), + [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2025), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(527), + [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1889), + [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1881), + [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1935), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1724), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1848), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(778), + [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(275), + [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(24), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1728), + [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1715), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(664), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1808), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1725), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(399), + [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2028), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(513), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1905), + [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1904), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1963), + [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1713), + [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1859), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(773), + [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(33), + [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1778), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1750), + [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(607), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1799), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1769), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(382), + [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1990), + [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(514), + [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1797), + [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1793), + [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1854), + [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1709), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, 0, 2), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, 0, 2), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 1), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1, 0, 0), + [1704] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), REDUCE(sym__expression_not_binary, 1, 0, 0), SHIFT(1029), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1, 0, 0), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 1), REDUCE(sym__expression_not_binary, 1, 0, 0), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), REDUCE(sym__expression_not_binary, 1, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [1737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 40), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 40), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [1899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1982), + [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1187), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [1907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), + [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(766), + [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), + [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1729), + [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), + [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), + [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [1937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), + [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), + [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1957), + [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1213), + [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1883), + [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1983), + [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1185), + [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1947), + [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1757), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 56), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 56), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 105), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 84), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 40), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(669), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(766), + [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1729), + [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), + [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), + [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), + [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), + [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), + [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), + [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), + [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(766), + [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), + [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1729), + [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), + [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), + [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), + [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), + [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(751), + [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(706), + [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1989), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 45), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 45), - [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(842), - [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(764), - [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), - [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), - [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), - [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1499), - [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 30), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 30), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(746), - [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(739), - [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), - [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 53), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 53), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 96), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 96), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 70), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 70), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 52), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 52), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 80), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 80), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 52), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 52), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 24), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 24), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), - [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 24), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 24), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), - [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 0), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 0), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 80), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 80), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 52), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 52), - [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 78), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 78), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), - [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 53), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 53), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 52), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 52), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 50), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 50), - [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1036), - [2672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(833), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 42), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 42), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 79), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 79), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), - [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 79), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 79), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), - [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 42), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 42), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1971), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(1971), - [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [2825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(1971), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(1971), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 78), - [2841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(1971), - [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1648), - [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(977), - [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym__type_specifier, 1, 0, 1), - [2867] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1036), - [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym__type_specifier, 1, 0, 1), - [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 77), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 77), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [2963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1108), - [2966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1107), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 44), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 102), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 63), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 83), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 116), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 82), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), - [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 103), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 115), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3, 0, 0), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 114), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [3155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), - [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), - [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), - [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 42), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 14), - [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 14), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [3386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1260), - [3389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1261), - [3392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1263), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1249), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(781), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(781), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(781), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(781), - [3444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1253), - [3447] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(781), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1258), - [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 0), SHIFT(1239), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1967), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, 0, 34), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 34), - [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 34), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 40), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 34), - [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 34), - [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [3494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1316), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [3499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 34), - [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 34), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), - [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 32), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 110), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 89), - [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 60), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), - [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 40), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 60), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 89), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [3601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 40), - [3618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), - [3621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1167), - [3624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1890), - [3627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 110), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 40), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 22), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 22), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 89), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 110), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 22), - [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 22), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 92), - [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 92), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 60), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 112), - [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 112), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 51), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 51), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 35), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), - [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), - [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 92), - [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 92), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [3752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), - [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [3757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [3759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), - [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), - [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 112), - [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 112), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 112), - [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 112), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 21), - [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 21), - [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), - [3796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), - [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), - [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [3826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 92), - [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 92), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [3841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(589), - [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), - [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), - [3871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 19), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 43), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), - [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), - [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), - [3898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 89), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), - [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), - [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 46), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 75), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 60), - [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), - [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 92), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 74), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 98), - [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 112), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 32), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), - [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), - [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 93), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 118), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), SHIFT_REPEAT(1337), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 107), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 101), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [4049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1418), - [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 107), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 86), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 86), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1416), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), - [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 122), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 48), - [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [4109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), SHIFT_REPEAT(1385), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 48), - [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), SHIFT_REPEAT(1287), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), - [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [4161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [4164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), - [4177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1560), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 49), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), - [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), SHIFT_REPEAT(1149), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1731), - [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(477), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 99), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 131), - [4348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(734), - [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 131), - [4355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), SHIFT_REPEAT(1877), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 86), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 128), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 118), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 121), - [4404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1043), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1205), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 126), - [4429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(498), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 123), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 86), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 121), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), - [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 123), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 49), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), - [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), - [4554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 113), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [4570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 72), - [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 97), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 73), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 72), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 73), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 72), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 73), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 41), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4677] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 73), - [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 97), - [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 97), - [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 97), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 72), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 73), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 41), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 41), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 40), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 72), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 41), - [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 97), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 41), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 106), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 106), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 69), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 69), + [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 57), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 57), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 30), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 30), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 45), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 45), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 53), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 53), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 52), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 52), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 24), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 24), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 80), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 80), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 52), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 52), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(776), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 24), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 24), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), + [2488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(829), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 70), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 70), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1029), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 78), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 78), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 52), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 52), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 96), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 96), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 30), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 30), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 24), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 24), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 53), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 53), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 80), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 80), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 0), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 0), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 50), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 50), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 24), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 24), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 24), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 24), + [2674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 52), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 52), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 79), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 79), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 42), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 42), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 79), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 79), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 42), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 42), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(2026), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(2026), + [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 24), + [2850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(2026), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(2026), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 78), + [2870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(2026), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1649), + [2890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(966), + [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym__type_specifier, 1, 0, 1), + [2899] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1029), + [2903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym__type_specifier, 1, 0, 1), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 77), + [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 77), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [3004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1051), + [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1048), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 44), + [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [3038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [3041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 102), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 103), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), + [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3, 0, 0), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 83), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 116), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 114), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 63), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 82), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 115), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), + [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), + [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 14), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 14), + [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [3252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1161), + [3255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 0), SHIFT(1157), + [3258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(776), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(776), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(776), + [3299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1179), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1159), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [3311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1153), + [3314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1174), + [3317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1167), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3324] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(776), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(776), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 42), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), + [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [3489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(2014), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 34), + [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 34), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, 0, 34), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 34), + [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 34), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 40), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1317), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), + [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 34), + [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 34), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), + [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 89), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 110), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 32), + [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 60), + [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [3607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 40), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1604), + [3635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1235), + [3638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1959), + [3641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 110), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 40), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 40), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 89), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 60), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 22), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 22), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 92), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 92), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 22), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 22), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 60), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 89), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 112), + [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 112), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 110), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1604), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 22), + [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 22), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 35), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 22), + [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 22), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 51), + [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 51), + [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 92), + [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 92), + [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), + [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), + [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 34), + [3795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 34), + [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 112), + [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 112), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), + [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(1421), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), + [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 112), + [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 112), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), + [3842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), + [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [3846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 22), + [3850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 22), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 22), + [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 22), + [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(588), + [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), + [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1942), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 92), + [3874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 92), + [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), + [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 21), + [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 21), + [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 34), + [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 34), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 19), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), + [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), + [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), + [3925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), + [3933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), + [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), + [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 75), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), + [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), + [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), + [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 60), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 89), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 46), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 43), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 32), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), + [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), + [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 74), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 92), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 112), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 93), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 98), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 101), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 107), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 86), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 122), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 118), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1401), + [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1535), + [4116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1535), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 86), + [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), SHIFT_REPEAT(1350), + [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), + [4156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1546), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 49), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 48), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), + [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), SHIFT_REPEAT(1387), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 48), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [4206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), SHIFT_REPEAT(1293), + [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1402), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), + [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 107), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 131), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 131), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [4244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), SHIFT_REPEAT(1974), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 128), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 118), + [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 121), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1023), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 126), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 123), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 86), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 121), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 86), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), + [4325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), SHIFT_REPEAT(1177), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(506), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 99), + [4473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1740), + [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), + [4478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1762), + [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 49), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 123), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), + [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 113), + [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), + [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), + [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), + [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 41), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 97), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), + [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 72), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 40), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 41), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 41), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 73), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 41), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 72), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 97), + [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 72), + [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 72), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 73), + [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 73), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 41), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 72), + [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 73), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 97), + [4893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 97), + [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 97), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [4969] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 73), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), }; #ifdef __cplusplus diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 7d1b32d..07bb50c 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -720,6 +720,8 @@ restrict int y = 6; volatile int z = 7; constexpr int a = 8; __thread int c = 9; +alignas(16) int i; +_Alignas(int) int j; noreturn void b() {} __extension__ extern int ffsll (long long int __ll) __attribute__ ((__nothrow__ )) __attribute__ ((__const__)); @@ -759,6 +761,19 @@ noreturn void b() {} (init_declarator (identifier) (number_literal))) + (declaration + (type_qualifier + (alignas_qualifier + (number_literal))) + (primitive_type) + (identifier)) + (declaration + (type_qualifier + (alignas_qualifier + (type_descriptor + (primitive_type)))) + (primitive_type) + (identifier)) (function_definition (type_qualifier) (primitive_type)